GRINS-0.8.0
List of all members | Public Member Functions | Protected Member Functions
GRINS::PhysicsFactoryPlaneStressSolids< DerivedPhysics > Class Template Reference

#include <physics_factory_plane_stress_solids.h>

Inheritance diagram for GRINS::PhysicsFactoryPlaneStressSolids< DerivedPhysics >:
Inheritance graph
[legend]
Collaboration diagram for GRINS::PhysicsFactoryPlaneStressSolids< DerivedPhysics >:
Collaboration graph
[legend]

Public Member Functions

 PhysicsFactoryPlaneStressSolids (const std::string &physics_name, const std::string &core_physics_name)
 
 ~PhysicsFactoryPlaneStressSolids ()
 
- Public Member Functions inherited from GRINS::PhysicsFactoryWithCore
 PhysicsFactoryWithCore (const std::string &physics_name, const std::string &core_physics_name)
 
 ~PhysicsFactoryWithCore ()
 
- Public Member Functions inherited from GRINS::PhysicsFactoryBase
 PhysicsFactoryBase (const std::string &physics_name)
 
 ~PhysicsFactoryBase ()
 
- Public Member Functions inherited from GRINS::FactoryWithGetPotPhysicsName< Physics >
 FactoryWithGetPotPhysicsName (const std::string &name)
 
 ~FactoryWithGetPotPhysicsName ()
 
- Public Member Functions inherited from GRINS::FactoryWithGetPot< Physics >
 FactoryWithGetPot (const std::string &name)
 
 ~FactoryWithGetPot ()
 
- Public Member Functions inherited from GRINS::FactoryAbstract< Physics >
virtual ~FactoryAbstract ()
 

Protected Member Functions

virtual libMesh::UniquePtr< Physicsbuild_physics (const GetPot &input, const std::string &physics_name)
 
- Protected Member Functions inherited from GRINS::PhysicsFactoryWithCore
std::string find_core_physics_name (const std::string &physics_name)
 
- Protected Member Functions inherited from GRINS::FactoryAbstract< Physics >
 FactoryAbstract (const std::string &name)
 Constructor is protected. Use the build() method to construct Base objects. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from GRINS::FactoryWithGetPotPhysicsName< Physics >
static void set_physics_name (const std::string &physics_name)
 Setter for physics name. More...
 
- Static Public Member Functions inherited from GRINS::FactoryWithGetPot< Physics >
static void set_getpot (const GetPot &input)
 
- Static Public Member Functions inherited from GRINS::FactoryAbstract< Physics >
static libMesh::UniquePtr< Physicsbuild (const std::string &name)
 Use this method to build objects of type Base. More...
 
- Static Protected Member Functions inherited from GRINS::PhysicsFactoryWithCore
static std::map< std::string, std::string > & core_physics_names ()
 Cache for "core" physics names. More...
 
- Static Protected Member Functions inherited from GRINS::FactoryAbstract< Physics >
static FactoryAbstract< Physics > & get_factory (const std::string &name)
 Helper method that looks up the factory and returns it if present, or error if it's not. More...
 
static DerivedType & get_factory_subclass (const std::string &name)
 Like get_factory, but will downcast to DerivedType. More...
 
static std::map< std::string, FactoryAbstract< Physics > * > & factory_map ()
 
- Static Protected Attributes inherited from GRINS::FactoryWithGetPotPhysicsName< Physics >
static std::string _physics_name
 
- Static Protected Attributes inherited from GRINS::FactoryWithGetPot< Physics >
static const GetPot * _input
 We store only a raw pointer here because we can't make a copy. More...
 

Detailed Description

template<template< typename > class DerivedPhysics>
class GRINS::PhysicsFactoryPlaneStressSolids< DerivedPhysics >

Definition at line 39 of file physics_factory_plane_stress_solids.h.

Constructor & Destructor Documentation

template<template< typename > class DerivedPhysics>
GRINS::PhysicsFactoryPlaneStressSolids< DerivedPhysics >::PhysicsFactoryPlaneStressSolids ( const std::string &  physics_name,
const std::string &  core_physics_name 
)
inline

Definition at line 42 of file physics_factory_plane_stress_solids.h.

44  : PhysicsFactoryWithCore(physics_name,core_physics_name)
45  {}
PhysicsFactoryWithCore(const std::string &physics_name, const std::string &core_physics_name)
template<template< typename > class DerivedPhysics>
GRINS::PhysicsFactoryPlaneStressSolids< DerivedPhysics >::~PhysicsFactoryPlaneStressSolids ( )
inline

Definition at line 47 of file physics_factory_plane_stress_solids.h.

47 {};

Member Function Documentation

template<template< typename > class DerivedPhysics>
libMesh::UniquePtr< Physics > GRINS::PhysicsFactoryPlaneStressSolids< DerivedPhysics >::build_physics ( const GetPot &  input,
const std::string &  physics_name 
)
inlineprotectedvirtual

Implements GRINS::PhysicsFactoryBase.

Definition at line 60 of file physics_factory_plane_stress_solids.h.

References GRINS::PhysicsFactoryHelper::parse_stress_strain_model().

61  {
62  std::string core_physics = this->find_core_physics_name(physics_name);
63 
64  std::string model = "none";
65  std::string strain_energy = "none";
66 
68  core_physics,
69  model,
70  strain_energy );
71 
72  libMesh::UniquePtr<Physics> new_physics;
73 
74  if( model == std::string("hookes_law") )
75  new_physics.reset( new DerivedPhysics<HookesLaw>
76  (physics_name,input, false /*is_compressible*/) );
77 
78  else if( model == std::string("incompressible_hyperelasticity") )
79  {
80  if( strain_energy == std::string("mooney_rivlin") )
81  {
82  new_physics.reset( new DerivedPhysics<IncompressiblePlaneStressHyperelasticity<MooneyRivlin> >(physics_name,input,false /*is_compressible*/) );
83  }
84  else
85  {
86  std::string error = "ERROR: Invalid strain_energy "+strain_energy+"!\n";
87  error += " Valid values are: mooney_rivlin\n";
88  libmesh_error_msg(error);
89  }
90 
91  }
92  else
93  {
94  std::string error = "Error: Invalid stress-strain model: "+model+"!\n";
95  error += " Valid values are: hookes_law\n";
96  error += " incompressible_hyperelasticity\n";
97  libmesh_error_msg(error);
98  }
99 
100  libmesh_assert(new_physics);
101 
102  return new_physics;
103  }
std::string find_core_physics_name(const std::string &physics_name)
static void parse_stress_strain_model(const GetPot &input, const std::string &physics, std::string &model, std::string &strain_energy)
Determine stress-strain law used by solid mechanics classes.

The documentation for this class was generated from the following file:

Generated on Tue Dec 19 2017 12:47:31 for GRINS-0.8.0 by  doxygen 1.8.9.1