コード例 #1
0
ファイル: Elastic.C プロジェクト: AhmedAly83/moose
Elastic::Elastic( const InputParameters & parameters)
  :SolidModel(parameters)
{

  createConstitutiveModel("ElasticModel");

}
コード例 #2
0
ファイル: CLSHPlasticMaterial.C プロジェクト: laizy/moose
CLSHPlasticMaterial::CLSHPlasticMaterial(const InputParameters & parameters)
    :SolidModel(parameters)
{

    createConstitutiveModel("CLSHPlasticModel");

}
コード例 #3
0
ファイル: PowerLawCreep.C プロジェクト: AhmedAly83/moose
PowerLawCreep::PowerLawCreep( const InputParameters & parameters)
  :SolidModel(parameters)
{

  createConstitutiveModel("PowerLawCreepModel");

}
コード例 #4
0
ファイル: Elastic.C プロジェクト: ChaliZhg/moose
Elastic::Elastic( const std::string & name,
                  InputParameters parameters )
  :SolidModel( name, parameters )
{

  createConstitutiveModel("ElasticModel", parameters);

}