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

Merge branch 'bugfix_fluidexpansivity' into 'master'

[PL/TRM] Fix sign in FluidThermalExpansion

See merge request !4394
parents a0a63e87 3fab6740
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ void FluidThermalExpansionModel<DisplacementDim>::eval( ...@@ -30,7 +30,7 @@ void FluidThermalExpansionModel<DisplacementDim>::eval(
namespace MPL = MaterialPropertyLib; namespace MPL = MaterialPropertyLib;
MPL::VariableArray variables; MPL::VariableArray variables;
variables.phase_pressure = -p_cap_data.p_cap; variables.phase_pressure = -p_cap_data.p_cap;
variables.temperature = -T_data.T; variables.temperature = T_data.T;
double const phi = poro_data.phi; double const phi = poro_data.phi;
double const alpha = biot_data.alpha; double const alpha = biot_data.alpha;
......
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