 | APIchangeSpringNLProperty Method |
Change a non-linear spring property already defined in the model
REST path: /springproperty/nl/change/[name]/[NLdofs(0)]/[NLdofs(1)]/[NLdofs(2)]/[NLdofs(3)]/[NLdofs(4)]/[NLdofs(5)]
REST verb: POST
REST body: NLprops
Namespace: NextFEMapiAssembly: NextFEMapi (in NextFEMapi.dll) Version: 2.6.0.0 (2.6.0.0)
Syntaxpublic bool changeSpringNLProperty(
string name,
int[] NLdofs,
double[][] NLprops
)
Public Function changeSpringNLProperty (
name As String,
NLdofs As Integer(),
NLprops As Double()()
) As Boolean
Dim instance As API
Dim name As String
Dim NLdofs As Integer()
Dim NLprops As Double()()
Dim returnValue As Boolean
returnValue = instance.changeSpringNLProperty(name,
NLdofs, NLprops)
public:
bool changeSpringNLProperty(
String^ name,
array<int>^ NLdofs,
array<array<double>^>^ NLprops
)
member changeSpringNLProperty :
name : string *
NLdofs : int[] *
NLprops : float[][] -> bool
Parameters
- name String
- Name of the property, must be unique
- NLdofs Int32
- Array of integers from 0 to 15 to associate a non-linear behaviour to each DoF. Use -1 to leave the DoF inactive
- NLprops Double
- Array containing 6 arrays of numerical properties for the each selected non-linear behaviour
Return Value
BooleanTrue if successful
See Also