# This demo script shows how to set the temperature control system. # This is a sample script that illustrates how zanscript can be written to run an experiment and deliver some example data. Zantiks Ltd cannot guarantee # this is how you want to run your experiments, this script is offered only to demonstrate the capabilities of the system and assist you in learning how # to script for your research. DEFINE NUMBER_OF_BINS 30000000 DEFINE BIN_TIME_SECS 10 SET(TCS_MODE,PELTIER) SET(THERMOSTAT,1) ACTION MAIN WAIT(1) LOGCREATE("TEXT:TIME|TEXT:INLET_TEMP") LOGRUN() INVOKE(MTEMP,NUMBER_OF_BINS) COMPLETE ACTION MTEMP WAIT(BIN_TIME_SECS) LOGCREATE("RUNTIME|TEMPERATURE1") LOGAPPEND("TEMPERATURE2|TEMPERATURE3|TEMPERATURE4") LOGRUN() COMPLETE