Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Parameter errors in parametric study

Status
Not open for further replies.

DrBwts

Mechanical
Joined
Nov 4, 2012
Messages
297
Location
GB
I'm using the parametric study scripting interface.

I was planning to do a simple parametric study on the Young's modulus & the Possion' ratio of a model just to get the hang of it all.

But it seems that this is not allowed, I get the following errors...

***ERROR: Parameter 'young' is not an independent parameter in 'bone'

***ERROR: Parameter 'poisson' is not an independent parameter in 'bone'


In the *inp file I have...

** MATERIALS
**
*Material, name=bone
*Elastic
<young>, <poisson>


So is this kind of thing not allowed? I would have thought it was a simple matter of text substitution?

To confound me further if I use the following code (ie just with the 'young' parameter)

boneMat = ParStudy(par='young', name='bone')
boneMat.define(CONTINUOUS, par='young', domain=(15100., 22100.))
boneMat.sample(INTERVAL, par='young', interval=3500.)
boneMat.combine(MESH)
boneMat.generate(template='bone')


I get the following error...

***ERROR: Parameter 'young' is not an independent par

***ERROR: The parameter(s) chosen are not independent
 
Aaahh no I havent. Thanks IBS good catch.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top