Gets or sets the equation describing this pressure of nonuniform distribution.
.NET Syntax
Visual Basic (Declaration) | |
---|
Property Equation As System.String |
Visual Basic (Usage) | |
---|
Dim instance As ICWPressure
Dim value As System.String
instance.Equation = value
value = instance.Equation |
CSolidWorks.Interop.cosworks~SolidWorks.Interop.cosworks.ICWPressure~Equation.html# | |
---|
System.string Equation {get; set;} |
C++/CLI | |
---|
property System.String^ Equation {
System.String^ get();
void set ( & System.String^ value);
} |
Property Value
Nonuniform pressure distribution equation
Example
For VBA:
CWPressureObj.CoordSystemType = swsCoordinateTypeCylindrical
CWPressureObj.Equation = ".4*""r"" +.8* ""t"" +.6* ""z"""
For VB.NET:
CWPressureObj.CoordSystemType = swsCoordinateType_e.swsCoordinateTypeCylindrical
CWPressureObj.Equation = ".4*""r"" +.8* ""t"" +.6* ""z"""
For CSolidWorks.Interop.cosworks~SolidWorks.Interop.cosworks.ICWPressure~Equation.html#:
CWPressureObj.CoordSystemType = (int)swsCoordinateType_e.swsCoordinateTypeCylindrical;
CWPressureObj.Equation = ".4*\"r\" +.8* \"t\" +.6* \"z\"";
See the ICWPressure examples.
Remarks
See Also
Availability
SOLIDWORKS Simulation API 2017 SP0