Quantcast
Channel: RAM | STAAD Forum - Recent Threads
Viewing all articles
Browse latest Browse all 16762

OpenStaad - How to get BeamEndForces Envelope Values

$
0
0

Happy new year to all.

I am able to get BeamEndForces per loadcase by using Output.GetMemberEndForces. See my C# code below (still in progress).

But how can I get the envelope values?

Any idea?

Thanks and greating from Stuttgart, Germany

publicstaticHashtable GetBeamEndForces(OSOutputUI _osOut, int MemberNo, int LoadCase, int End)

{

double[] endForces = newdouble[6];

int flag = 0;

Object omemberNo = MemberNo asObject;

Object oloadCase = LoadCase asObject;

Object oend = End asObject;

Object oendForces = endForces asObject;

Object oflag = flag asObject;

_osOut.GetMemberEndForces(omemberNo, oend, oloadCase, ref oendForces, oflag);

endForces = oendForces asdouble[];

Hashtable EndForcesTable = newHashtable();

EndForcesTable.Add("Fx", endForces[0]);

EndForcesTable.Add("Fy", endForces[1]);

EndForcesTable.Add("Fz", endForces[2]);

EndForcesTable.Add("Mx", endForces[3]);

EndForcesTable.Add("My", endForces[4]);

EndForcesTable.Add("Mz", endForces[5]);

return EndForcesTable;

}


Viewing all articles
Browse latest Browse all 16762

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>