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