# create the parametric study aStudy=ParStudy (par=('CUR2','CUR3'), directory=ON) # define the parameter aStudy.define(DISCRETE, par='CUR2', domain=(0.087)) aStudy.define(DISCRETE, par='CUR3', domain=(0.,0.131,0.262)) # sample the parameter aStudy.sample(INTERVAL, par=('CUR2','CUR3'), interval=1) # combine the samples to give the designs aStudy.combine(MESH) # generate analysis data aStudy.generate(template='tpl_fb_CRM2vsCUR2') # execute all analysis jobs sequentially aStudy.execute(ALL) #for QA purposes aStudy.output(file=ODB) aStudy.gather(results='CUR2',step=2,frameValue=LAST,request=HISTORY,variable='CUR2',element=1,int=-1); aStudy.gather(results='CRM2',step=2,frameValue=LAST,request=HISTORY,variable='CRM2',element=1,int=-1); aStudy.report(FILE,file='tpl_fb_CRM2vsCUR2.psr',results=('CUR2','CRM2'))