Click or drag to resize

APIaddMeshedWall Method

Add a wall to the model meshed with quad elements
REST path: /op/mesh/addmeshedwall/[ID]/[origX]/[origY]/[origZ]/[div1]/[div2]/[plan]/[leng]/[hei]/[angle]/[tilt]/[nodeOffset]/[isHorizontal]
REST verb: GET

Namespace: NextFEMapi
Assembly: NextFEMapi (in NextFEMapi.dll) Version: 2.6.0.0 (2.6.0.0)
Syntax
public string[] addMeshedWall(
	int ID,
	double origX,
	double origY,
	double origZ,
	int div1,
	int div2,
	string plan,
	double leng,
	double hei,
	double angle = 0,
	string tilt = "0",
	int nodeOffset = 10000,
	bool isHorizontal = false
)

Parameters

ID  Int32
ID of the wall
origX  Double
X origin coordinate
origY  Double
Y origin coordinate
origZ  Double
Z origin coordinate
div1  Int32
Number of division along 1st direction
div2  Int32
Number of division along 2st direction
plan  String
Plane of the wall, use "XY", "XZ" or "YZ"
leng  Double
Lenght of the wall
hei  Double
Height of the wall
angle  Double  (Optional)
Optional. Angle with respect to the normal of XY plane, or angle with respect to the horizontal for YZ and YZ planes
tilt  String  (Optional)
Optional, default "0". Use "x" or "y" for YZ and YZ planes
nodeOffset  Int32  (Optional)
Optional, default 10000. Offset for node numbering
isHorizontal  Boolean  (Optional)
Set to true to create vertical section cuts. If omitted or set to false, vertical wall is assumed.

Return Value

String
A list of nodes for the wall
See Also