Master Scripts

<< Click to Display Table of Contents >>

Navigation:  Explain™ Control Language  > Auto Scripts >

Master Scripts

Description

 

Gamry tip bulb

With the advent of the Sequence Wizard, creating Auto scripts is unnecessary. We include the discussion pages concerning auto scripts for the sake of completeness, and instead recommend you use the Sequence Wizard for automated experiments.

 

Master scripts are Explain™ scripts which call other scripts using the LaunchWait() function. The Master script is always a custom script. The simple script below just runs a series of different experiments, one after another:

 

include "explain.exp"

include "Auto Utilities.exp"

 

 

function Main()

 

 if (LaunchWait("Auto Corrosion Potential.exp","auto.SET","CPOT","autocpot.DTA",1,NIL) eq FALSE)

         return

 

 if (LaunchWait("Auto Polarization Resistance.exp","auto.SET","RP","autorp.DTA",1,NIL) eq FALSE)

         return

 

 if (LaunchWait("Auto Potentiostatic EIS.exp","auto.SET","EIS","autoeis.DTA",1,NIL) eq FALSE)

         return

 

Notify("All Experiments Done")

 

Dawdle()