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.
archimedes_buoyancy_law.h
Go to the documentation of this file.
1 // Author: Guillermo Casas (gcasas@cimne.upc.edu)
2 // Date: February 2019
3 
4 #if !defined(SDEM_STANDARD_BUOYANCY_FORCE_LAW_H_INCLUDED)
5 #define SDEM_STANDARD_BUOYANCY_FORCE_LAW_H_INCLUDED
6 
7 #include "buoyancy_law.h"
8 
9 namespace Kratos {
10 
11  class KRATOS_API(SWIMMING_DEM_APPLICATION) ArchimedesBuoyancyLaw : public BuoyancyLaw {
12 
13  public:
14  typedef Node NodeType;
16 
17  // TODO: make mDoApplyFaxenCorrections an option
19 
20  ArchimedesBuoyancyLaw(Parameters r_hydrodynamic_parameters){}
21 
23 
24  BuoyancyLaw::Pointer Clone() const override;
25 
26  void Initialize(const ProcessInfo& r_process_info) override;
27 
28  std::string GetTypeOfLaw() override;
29 
30  void ComputeForce(Geometry<Node >& r_geometry,
31  const double fluid_density,
32  const double displaced_volume,
34  array_1d<double, 3>& buoyancy,
35  const ProcessInfo& r_current_process_info) override;
36 
37  private:
38 
39  friend class Serializer;
40 
41  virtual void save(Serializer& rSerializer) const override {
43  }
44 
45  virtual void load(Serializer& rSerializer) override {
47  }
48 
49  }; //class ArchimedesBuoyancyLaw
50 
51 } // Namespace Kratos
52 
53 #endif /* SDEM_STANDARD_BUOYANCY_FORCE_LAW_H_INCLUDED defined */
Definition: archimedes_buoyancy_law.h:11
Node NodeType
Definition: archimedes_buoyancy_law.h:14
KRATOS_CLASS_POINTER_DEFINITION(ArchimedesBuoyancyLaw)
ArchimedesBuoyancyLaw(Parameters r_hydrodynamic_parameters)
Definition: archimedes_buoyancy_law.h:20
ArchimedesBuoyancyLaw()
Definition: archimedes_buoyancy_law.h:18
~ArchimedesBuoyancyLaw()
Definition: archimedes_buoyancy_law.h:22
Definition: buoyancy_law.h:16
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
The serialization consists in storing the state of an object into a storage format like data file or ...
Definition: serializer.h:123
#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
body_force
Definition: script_ELASTIC.py:102