DamBreak++ Wave Simulator 0.3
DamBreak++ Simulation Framework
Loading...
Searching...
No Matches
Testvs19_ValidateAlgo.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5// SfxBase19 package include
6#include "include/Sfx_IPhysicalAlgorithm.h"
7// DamBreak++ include package
9
10 // forward declaration
11 namespace Sfx { class PhysicalSystem; }
12
13 namespace Testvs19
14 {
21 class ValidateAlgo final : public Sfx::IPhysicalAlgorithm
22 {
23 public:
28 void calculate( Sfx::PhysicalSystem* aPsys) override final;
29
30 private:
31 // Swe::LDeltaOperator* m_Hop;
33 };
34 } // End of namespace
Implement the physical algorithm that we use to validate our prototype within the Dam-Break simulatio...
Definition Testvs19_ValidateAlgo.h:22
void calculate(Sfx::PhysicalSystem *aPsys) override final
Physical algorithm (conservative explicit model)
Definition Testvs19_ValidateAlgo.cpp:16
Sfx::LDeltaOperator::SWE_RHS * m_rhs
Definition Testvs19_ValidateAlgo.h:32
Definition HydUtils.h:15
Definition Testvs19_BaseRhsPhysicsAlgorithm.cpp:19
Data structure RHS terms.
Definition Sfx_LDeltaOperator.h:55