Skip to content
Snippets Groups Projects
Commit 8c30cdaf authored by clovis schoeck's avatar clovis schoeck
Browse files

New versions of GKS : 1. In GKS2.cpp, parallel version of the "First

order scheme", 2. Creation of the file GKSNavier.cpp, where the GKS expected
to solve Navier-Stokes equations will be written
parent 3eaf95a1
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ add_library(
HyperelasticSolver.cpp
GKS.cpp
GKS2.cpp
GKSNavier.cpp
)
target_link_libraries(
......
#include <scheme/GKS.hpp>
#include <scheme/GKS2.hpp>
#include <mesh/Mesh.hpp>
#include <mesh/MeshData.hpp>
......
#include <scheme/GKS.hpp>
#include <scheme/GKSNavier.hpp>
#include <mesh/Mesh.hpp>
#include <mesh/MeshData.hpp>
......@@ -243,7 +242,7 @@ class GKSNAVIER
std::tuple<std::shared_ptr<const DiscreteFunctionVariant>, // rho
std::shared_ptr<const DiscreteFunctionVariant>, // U
std::shared_ptr<const DiscreteFunctionVariant>> // E
gks2(std::shared_ptr<const DiscreteFunctionVariant> rho_v,
gksNavier(std::shared_ptr<const DiscreteFunctionVariant> rho_v,
std::shared_ptr<const DiscreteFunctionVariant> rho_U_v,
std::shared_ptr<const DiscreteFunctionVariant> rho_E_v,
std::shared_ptr<const DiscreteFunctionVariant> tau,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment