show: name:Benthic foraminifera info:~ There are two species of Foraminiera: longitudal and coiled. The first chamber of the longitudal species has orange marks. Haploid and diploid generations alternate in both species. All chambers of the haploid generation have the same size. In the diploid generation, subsequent chambers are bigger than their predecessors. Nutrients are shown as tiny green cylinders. Foraminifers move towards nearest nutrients and this way they can accumulate enough energy to reproduce. When the "Enhance visualization" option is enabled, reticulopodia are shown as large disks and positions of nutrients are indicated by cuboids. More information at www.framsticks.com/foraminifera ~ expdef:foraminifera code:~ global Params; //to easily transfer changes in identical properties from this show to expdef global last_simspeed; //to display time scale when it changes significantly function onLoad() { Simulator.init(); last_simspeed=0; GLDisplay.desiredsimspeed = 50; GLDisplay.minfps = 10; TrackingCam.cam_h = 15; //more side view Params = { "foodperiod" : [43200,25920,10800], "feedtrans" : [0.0005,0.001,0.002],"energy_nut" :[144.54,544.54,944.54], "stress" : [0,1], "visualize" : [0,1]}; ShowProperties.visualize=1; } function timeScale() { //just a draft, this function and all constants in expdef need serious review var localDriveMicronsPerStep=framsToMicrons(getMovePerStep()); var foramSpeedMmPerSec=ExpProperties.foramSpeedMmPerMin/60; var localDriveMmPerStep=localDriveMicronsPerStep/1000; var localDriveMmPerSec=localDriveMmPerStep*Simulator.simspeed; return localDriveMmPerSec/foramSpeedMmPerSec; } function updateBanner() { GLDisplay.banner="World size is %g mm." % (framsToMicrons(World.wrldsiz)/1000); GLDisplay.banner+="\nShowing real-time x %g." % timeScale(); } function onShowStep() { if (Simulator.simspeedlast_simspeed*1.1) //significant change { updateBanner(); last_simspeed=Simulator.simspeed; } } function setShowParam(param_id) { ExpProperties.[param_id] = Params[param_id][ShowProperties.[param_id]]; } function ShowProperties_foodperiod_set() { setShowParam("foodperiod"); } function ShowProperties_feedtrans_set() { setShowParam("feedtrans"); } function ShowProperties_energy_nut_set() { setShowParam("energy_nut"); } function ShowProperties_stress_set() { setShowParam("stress"); } function ShowProperties_visualize_set() { setShowParam("visualize"); } ~ property: id:foodperiod name:Feeding period type:d 0 2 1 ~Low~Medium~High property: id:feedtrans name:Energy transfer type:d 0 2 1 ~0.05~0.125~0.25 property: id:energy_nut name:Nutrient energy type:d 0 2 1 ~0.5~1.5~3 property: id:stress name:Stress type:d 0 1 1 property: id:visualize name:Enhance visualization type:d 0 1 0