Skip to content
Snippets Groups Projects
Commit 860e11d4 authored by Simon Emmert's avatar Simon Emmert
Browse files

[2pncmin][next]add vtkoutputfields.hh do first changes, unclear about permeability

parent 14acffd8
No related branches found
No related tags found
2 merge requests!632Merge feature/2pncmin into next,!617[WIP] Next
...@@ -41,7 +41,7 @@ class TwoPNCMinVtkOutputFields ...@@ -41,7 +41,7 @@ class TwoPNCMinVtkOutputFields
using GridView = typename GET_PROP_TYPE(TypeTag, GridView); using GridView = typename GET_PROP_TYPE(TypeTag, GridView);
static constexpr int numPhases = GET_PROP_VALUE(TypeTag, NumPhases); static constexpr int numPhases = GET_PROP_VALUE(TypeTag, NumPhases);
static constexpr int numSPhases = GET_PROP_VALUE(TypeTag, NumSPhases); static constexpr int numSPhases = GET_PROP_VALE(TypteTag, NumSPhases);
static constexpr int numComponents = GET_PROP_VALUE(TypeTag, NumComponents); static constexpr int numComponents = GET_PROP_VALUE(TypeTag, NumComponents);
static constexpr int dim = GridView::dimension; static constexpr int dim = GridView::dimension;
...@@ -52,11 +52,14 @@ public: ...@@ -52,11 +52,14 @@ public:
// use default fields from the 2pnc model // use default fields from the 2pnc model
TwoPNCVtkOutputFields<TypeTag>::init(vtk); TwoPNCVtkOutputFields<TypeTag>::init(vtk);
//output additional to TwoPNCMin output: //output additional to TwoPNC output:
for (int i = 0; i < numSPhases; ++i) for (int i = 0; i < numSPhases; ++i)
{
vtk.addVolumeVariable([i](const VolumeVariables& v){ return v.precipitateVolumeFraction(numPhases + i); },"precipVolFrac_"+ FluidSystem::phaseName(numPhases + i)); vtk.addVolumeVariable([i](const VolumeVariables& v){ return v.precipitateVolumeFraction(numPhases + i); },"precipVolFrac_"+ FluidSystem::phaseName(numPhases + i));
} vtk.addVolumeVariable([](const VolumeVariables& v){ return this->perm_(v.permeability())[0][0]; }, "Kxx"); //TODO: get correct permeability from where? add perm_ function in private?
if (dim >= 2)
vtk.addVolumeVariable([](const VolumeVariables& v){ return this->perm_(v.permeability())[1][1]; }, "Kyy"); //TODO: get correct permeability from where? add perm_ function in private?
if (dim >= 3)
vtk.addVolumeVariable([](const VolumeVariables& v){ return this->perm_(v.permeability())[2][2]; }, "Kzz"); //TODO: get correct permeability from where? add perm_ function in private?
} }
}; };
......
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