Skip to content
Snippets Groups Projects
Commit 69903439 authored by wenqing's avatar wenqing
Browse files

[HT] Use the forward delaration of HTMaterialProperties

parent 2ffa66cf
No related branches found
No related tags found
No related merge requests found
...@@ -50,8 +50,8 @@ std::unique_ptr<Process> createHTProcess( ...@@ -50,8 +50,8 @@ std::unique_ptr<Process> createHTProcess(
"pressure"}); "pressure"});
MaterialLib::PorousMedium::PorousMediaProperties porous_media_properties{ MaterialLib::PorousMedium::PorousMediaProperties porous_media_properties{
MaterialLib::PorousMedium::createPorousMediaProperties(mesh, config, MaterialLib::PorousMedium::createPorousMediaProperties(
parameters)}; mesh, config, parameters)};
//! \ogs_file_param{prj__processes__process__HT__fluid} //! \ogs_file_param{prj__processes__process__HT__fluid}
auto const& fluid_config = config.getConfigSubtree("fluid"); auto const& fluid_config = config.getConfigSubtree("fluid");
......
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
#include <Eigen/Dense> #include <Eigen/Dense>
#include <vector> #include <vector>
#include "HTMaterialProperties.h" #include "HTMaterialProperties.h"
#include "NumLib/DOF/DOFTableUtil.h" #include "NumLib/DOF/DOFTableUtil.h"
......
...@@ -13,6 +13,8 @@ ...@@ -13,6 +13,8 @@
#include "ProcessLib/Utils/CreateLocalAssemblers.h" #include "ProcessLib/Utils/CreateLocalAssemblers.h"
#include "HTMaterialProperties.h"
#include "MonolithicHTFEM.h" #include "MonolithicHTFEM.h"
#include "StaggeredHTFEM.h" #include "StaggeredHTFEM.h"
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#pragma once #pragma once
#include "HTMaterialProperties.h"
#include "NumLib/Extrapolation/LocalLinearLeastSquaresExtrapolator.h" #include "NumLib/Extrapolation/LocalLinearLeastSquaresExtrapolator.h"
#include "ProcessLib/Process.h" #include "ProcessLib/Process.h"
...@@ -18,6 +17,7 @@ namespace ProcessLib ...@@ -18,6 +17,7 @@ namespace ProcessLib
namespace HT namespace HT
{ {
class HTLocalAssemblerInterface; class HTLocalAssemblerInterface;
struct HTMaterialProperties;
/** /**
* # HT process * # HT process
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#include <Eigen/Dense> #include <Eigen/Dense>
#include <vector> #include <vector>
#include "HTProcessData.h" #include "HTMaterialProperties.h"
#include "NumLib/DOF/DOFTableUtil.h" #include "NumLib/DOF/DOFTableUtil.h"
#include "NumLib/Extrapolation/ExtrapolatableElement.h" #include "NumLib/Extrapolation/ExtrapolatableElement.h"
#include "NumLib/Fem/FiniteElement/TemplateIsoparametric.h" #include "NumLib/Fem/FiniteElement/TemplateIsoparametric.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment