#include <catalycity_factories_old_style.h>
 | 
| static void  | set_reactant (const std::string &reactant) | 
|   | 
| static void  | set_bc_id (const std::string &bc_id) | 
|   | 
| static void  | set_section (const std::string §ion) | 
|   | 
| static void  | set_getpot (const GetPot &input) | 
|   | 
| static std::string  | _reactant_str = std::string("DIE!") | 
|   | 
| static std::string  | _bc_id_str = std::string("DIE!") | 
|   | 
| static std::string  | _section = std::string("DIE!") | 
|   | 
| static const GetPot *  | _input | 
|   | We store only a raw pointer here because we can't make a copy.  More...
  | 
|   | 
  
  
      
        
          | GRINS::ConstantCatalycityFactoryOldStyle::ConstantCatalycityFactoryOldStyle  | 
          ( | 
          const std::string &  | 
          physics_name | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
 
  
  
      
        
          | GRINS::ConstantCatalycityFactoryOldStyle::~ConstantCatalycityFactoryOldStyle  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
 
  
  
      
        
          | virtual libMesh::UniquePtr<CatalycityBase> GRINS::ConstantCatalycityFactoryOldStyle::build_catalycity_old_style  | 
          ( | 
          const GetPot &  | 
          input,  | 
         
        
           | 
           | 
          const std::string &  | 
          section,  | 
         
        
           | 
           | 
          const std::string &  | 
          reactant_str,  | 
         
        
           | 
           | 
          const std::string &  | 
          bc_id_string  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
inlineprotectedvirtual   | 
  
 
Implements GRINS::CatalycityFactoryOldStyleBase.
Definition at line 51 of file catalycity_factories_old_style.h.
   56       std::string gamma_str = section+
"/gamma_"+reactant_str+
"_"+bc_id_string;
 
   57       if( !input.have_variable(gamma_str) )
 
   58         libmesh_error_msg(
"ERROR: Could not find input "+gamma_str+
" for ConstantCatalycity!\n");
 
   60       libMesh::Real gamma = input(gamma_str, std::numeric_limits<libMesh::Real>::max());
 
   61       return libMesh::UniquePtr<CatalycityBase>( 
new ConstantCatalycity( gamma ) );
 
 
 
 
The documentation for this class was generated from the following file: