# create the parametric study aStudy=ParStudy (par=('CU1','CU2','CU3','CUR1','CUR2','CUR3'), directory=ON) # define the parameter aStudy.define(DISCRETE, par='CU1', domain=(-5.,0.,5.), reference=1) aStudy.define(DISCRETE, par='CU2', domain=(0.,5.), reference=0) aStudy.define(DISCRETE, par='CU3', domain=(0.,5.), reference=0) aStudy.define(DISCRETE, par='CUR1', domain=(0.,0.087), reference=0) aStudy.define(DISCRETE, par='CUR2', domain=(0.,0.087), reference=0) aStudy.define(DISCRETE, par='CUR3', domain=(0.,0.262), reference=0) # sample the parameter aStudy.sample(INTERVAL, par=('CU1','CU2','CU3','CUR1','CUR2','CUR3'), interval=1) # combine the samples to give the designs aStudy.combine(CROSS) # generate analysis data aStudy.generate(template='tpl_fb_uncoupled') # execute all analysis jobs sequentially aStudy.execute(ALL) #for QA purposes aStudy.output(file=ODB) aStudy.gather(results='CU1',step=1,frameValue=LAST,request=HISTORY,variable='CU1',element=1,int=-1); aStudy.gather(results='CRF1',step=1,frameValue=LAST,request=HISTORY,variable='CRF1',element=1,int=-1); aStudy.gather(results='CU2',step=1,frameValue=LAST,request=HISTORY,variable='CU2',element=1,int=-1); aStudy.gather(results='CRF2',step=1,frameValue=LAST,request=HISTORY,variable='CRF2',element=1,int=-1); aStudy.gather(results='CU3',step=1,frameValue=LAST,request=HISTORY,variable='CU3',element=1,int=-1); aStudy.gather(results='CRF3',step=1,frameValue=LAST,request=HISTORY,variable='CRF3',element=1,int=-1); aStudy.gather(results='CUR1',step=1,frameValue=LAST,request=HISTORY,variable='CUR1',element=1,int=-1); aStudy.gather(results='CRM1',step=1,frameValue=LAST,request=HISTORY,variable='CRM1',element=1,int=-1); aStudy.gather(results='CUR2',step=1,frameValue=LAST,request=HISTORY,variable='CUR2',element=1,int=-1); aStudy.gather(results='CRM2',step=1,frameValue=LAST,request=HISTORY,variable='CRM2',element=1,int=-1); aStudy.gather(results='CUR3',step=1,frameValue=LAST,request=HISTORY,variable='CUR3',element=1,int=-1); aStudy.gather(results='CRM3',step=1,frameValue=LAST,request=HISTORY,variable='CRM3',element=1,int=-1); aStudy.report(FILE,file='tpl_fb_uncoupled.psr',results=('CU1','CRF1','CU2','CRF2','CU3','CRF3','CUR1','CRM1','CUR2','CRM2','CUR3','CRM3'))