System paramter list?
System paramter list?
(OP)
Where can I find a list of the system paramters that come within Wildfire2. example: "model_name" etc. For some reason I can't remember where the standard list of system paramters is. I'd like to add a peramteric note to my drawing with the weight of the part in it.





RE: System paramter list?
mass = mp_mass("")
and then use &mass[.3] in your relations. The [.3] specifies the decimals.
-Hora
RE: System paramter list?
RE: System paramter list?
ad1 = dimension horizontal
ad2 = dimension vertical
144 = converts sq in to sq ft
2.133 = a weight factor for sheet metal (ryerson cataloge)
RE: System paramter list?
mass = (d1 x d2)/144*2.133
where d1 and d2 are the two dimensions used to define the area.
Then in drawing just write Weight = &mass[.3].
-Hora
RE: System paramter list?
RE: System paramter list?
mass = area:analysis1/144*2.133
where area is the parameter from the analysis1 (for example).
The analysis feature must be the last feature on your part in order to achieve the correct results (I mean if you put the analysis before creating the holes, you will not have the right area).
-Hora
RE: System paramter list?