 | APIsetLoadCasePhaseInCombination Method |
Set the phase to a loadcase in an already existing combination, for analysis. Useful in buckling analysis to distinguish constant from variable loading cases
REST path: /loadcase/combo/setphase/[name]/[loadcase]/[phase]
REST verb: GET
Namespace: NextFEMapiAssembly: NextFEMapi (in NextFEMapi.dll) Version: 2.7.2.0 (2.7.2.0)
Syntaxpublic bool setLoadCasePhaseInCombination(
string name,
string loadcase,
int phase
)
Public Function setLoadCasePhaseInCombination (
name As String,
loadcase As String,
phase As Integer
) As Boolean
Dim instance As API
Dim name As String
Dim loadcase As String
Dim phase As Integer
Dim returnValue As Boolean
returnValue = instance.setLoadCasePhaseInCombination(name,
loadcase, phase)
public:
bool setLoadCasePhaseInCombination(
String^ name,
String^ loadcase,
int phase
)
member setLoadCasePhaseInCombination :
name : string *
loadcase : string *
phase : int -> bool Parameters
- name String
- Name of the combination or buckling analysis
- loadcase String
- Name of the loadcase to add to the combination
- phase Int32
- Set phase as integer for the selected loadcase in the combination. 0 for variable load, 1 for constant load
Return Value
BooleanTrue if successful
See Also