KratosMultiphysics
KRATOS Multiphysics (Kratos) is a framework for building parallel, multi-disciplinary simulation software, aiming at modularity, extensibility, and high performance. Kratos is written in C++, and counts with an extensive Python interface.
saffman_lift_law.h
Go to the documentation of this file.
1 // Author: Guillermo Casas (gcasas@cimne.upc.edu)
2 // Date: February 2019
3 // Saffman (1965, 1968)
4 
5 #if !defined(SDEM_SAFFMAN_LIFT_LAW_H_INCLUDED)
6 #define SDEM_SAFFMAN_LIFT_LAW_H_INCLUDED
7 
9 
10 namespace Kratos {
11 
12  class KRATOS_API(SWIMMING_DEM_APPLICATION) SaffmanLiftLaw : public VorticityInducedLiftLaw {
13 
14  public:
15  typedef Node NodeType;
17 
18  // TODO: make mDoApplyFaxenCorrections an option
20 
21  SaffmanLiftLaw(Parameters r_parameters);
22 
24 
25  VorticityInducedLiftLaw::Pointer Clone() const override;
26 
27  void Initialize(const ProcessInfo& r_process_info) override;
28 
29  std::string GetTypeOfLaw() override;
30 
31  void ComputeForce(Geometry<Node >& r_geometry,
32  const double reynolds_number,
33  double particle_radius,
34  double fluid_density,
35  double fluid_kinematic_viscosity,
36  array_1d<double, 3>& minus_slip_velocity,
37  array_1d<double, 3>& vorticity_induced_lift,
38  const ProcessInfo& r_current_process_info) override;
39 
40  private:
41 
42  friend class Serializer;
43  double ComputeSaffmanLiftCoefficient(const double fluid_density,
44  const double fluid_kinematic_viscosity,
45  const double particle_radius,
46  const double norm_of_vorticity);
47 
48  virtual void save(Serializer& rSerializer) const override {
50  }
51 
52  virtual void load(Serializer& rSerializer) override {
54  }
55 
56  }; //class SaffmanLiftLaw
57 
58 } // Namespace Kratos
59 
60 #endif /* SDEM_SAFFMAN_LIFT_LAW_H_INCLUDED defined */
Geometry base class.
Definition: geometry.h:71
This class defines the node.
Definition: node.h:65
This class provides to Kratos a data structure for I/O based on the standard of JSON.
Definition: kratos_parameters.h:59
ProcessInfo holds the current value of different solution parameters.
Definition: process_info.h:59
Definition: saffman_lift_law.h:12
Node NodeType
Definition: saffman_lift_law.h:15
SaffmanLiftLaw()
Definition: saffman_lift_law.h:19
~SaffmanLiftLaw()
Definition: saffman_lift_law.h:23
KRATOS_CLASS_POINTER_DEFINITION(SaffmanLiftLaw)
The serialization consists in storing the state of an object into a storage format like data file or ...
Definition: serializer.h:123
Definition: vorticity_induced_lift_law.h:16
#define KRATOS_SERIALIZE_SAVE_BASE_CLASS(Serializer, BaseType)
Definition: define.h:812
#define KRATOS_SERIALIZE_LOAD_BASE_CLASS(Serializer, BaseType)
Definition: define.h:815
REF: G. R. Cowper, GAUSSIAN QUADRATURE FORMULAS FOR TRIANGLES.
Definition: mesh_condition.cpp:21
def load(f)
Definition: ode_solve.py:307