GRINS-0.6.0
parsed_velocity_source.h
Go to the documentation of this file.
1 //-----------------------------------------------------------------------bl-
2 //--------------------------------------------------------------------------
3 //
4 // GRINS - General Reacting Incompressible Navier-Stokes
5 //
6 // Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner
7 // Copyright (C) 2010-2013 The PECOS Development Team
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the Version 2.1 GNU Lesser General
11 // Public License as published by the Free Software Foundation.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Lesser General Public License for more details.
17 //
18 // You should have received a copy of the GNU Lesser General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc. 51 Franklin Street, Fifth Floor,
21 // Boston, MA 02110-1301 USA
22 //
23 //-----------------------------------------------------------------------el-
24 
25 
26 #ifndef GRINS_PARSED_VELOCITY_SOURCE_H
27 #define GRINS_PARSED_VELOCITY_SOURCE_H
28 
29 // GRINS
30 #include "grins_config.h"
31 #include "grins/assembly_context.h"
32 #include "grins/cached_values.h"
34 
35 // libMesh
36 #include "libmesh/getpot.h"
37 
38 // C++
39 #include <string>
40 
41 namespace GRINS
42 {
43 
45  /*
46  This physics class imposes a penalty on any velocity component in
47  the direction of (and proportional to) a specified vector field.
48  */
49  template<class Viscosity>
51  {
52  public:
53 
54  ParsedVelocitySource( const std::string& physics_name, const GetPot& input );
55 
57 
58  virtual void init_context( AssemblyContext& context );
59 
61  virtual void register_postprocessing_vars( const GetPot& input,
63 
64  // residual and jacobian calculations
65  // element_*, side_* as *time_derivative, *constraint, *mass_residual
66 
67  // Constraint part(s)
68  virtual void element_time_derivative( bool compute_jacobian,
69  AssemblyContext& context,
70  CachedValues& cache );
71 
72  virtual void compute_postprocessed_quantity( unsigned int quantity_index,
73  const AssemblyContext& context,
74  const libMesh::Point& point,
75  libMesh::Real& value );
76 
77  private:
78 
81 
84 
87 
89  };
90 
91 } // end namespace block
92 
93 #endif // GRINS_PARSED_VELOCITY_SOURCE_H
virtual void register_postprocessing_vars(const GetPot &input, PostProcessedQuantities< libMesh::Real > &postprocessing)
Register postprocessing variables for ParsedVelocitySource.
unsigned int _parsed_velocity_source_y_index
Index from registering this quantity.
virtual void init_context(AssemblyContext &context)
Initialize context for added physics variables.
virtual void element_time_derivative(bool compute_jacobian, AssemblyContext &context, CachedValues &cache)
Time dependent part(s) of physics for element interiors.
unsigned int _parsed_velocity_source_x_index
Index from registering this quantity.
unsigned int _parsed_velocity_source_z_index
Index from registering this quantity.
virtual void compute_postprocessed_quantity(unsigned int quantity_index, const AssemblyContext &context, const libMesh::Point &point, libMesh::Real &value)
GRINS namespace.
Physics class for Velocity Penalty.

Generated on Mon Jun 22 2015 21:32:20 for GRINS-0.6.0 by  doxygen 1.8.9.1