A EosShear object specifies a suboption of the Eos object. The EosShear object defines either isotropic linear elastic shear or linear viscous shear behavior for a hydrodynamic material.
materialApi.materials()[name].eos().eosShear()
This method creates a EosShear object.
materialApi.materials()[name].eos().EosShear
odb_EosShear& EosShear(const odb_SequenceSequenceDouble& table, bool temperatureDependency, int dependencies, const odb_String& type);
Required argument
An odb_SequenceSequenceDouble specifying the items described below.
Optional arguments
A Boolean specifying whether contact area data depend on temperature. The default value is false.
An Int specifying the number of field variable dependencies included in the definition of the contact area data, in addition to temperature. The default value is 0.
An odb_String specifying the type of shear behavior. Possible values are "ELASTIC" and "VISCOUS". The default value is "ELASTIC".
Table data
If type=ELASTIC, the table data specify the following:
Shear modulus.
Temperature, if the data depend on temperature.
Value of the first field variable, if the data depend on field variables.
Value of the second field variable.
Etc.
Viscosity.
Temperature, if the data depend on temperature.
Value of the first field variable, if the data depend on field variables.
Value of the second field variable.
Etc.
Return value
An EosShear object.
Exceptions