-
Notifications
You must be signed in to change notification settings - Fork 239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replaced the material parameters of ThermoHydroMechanics with MPL #2614
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
|
||
// | ||
// temperature equation, pressure part | ||
// | ||
KTp.noalias() += K_over_mu * rho_f * C_f * N_T.transpose() * | ||
(dNdx_T * T).transpose() * dNdx_T * w; | ||
KTp.noalias() += fluid_density * c_f * N_T.transpose() * |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just out of curiosity: Why did you reorder the calculation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because K_over_mu is changed to matrix now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Did you use a script for the project file changes?
⏩
auto const& b = _process_data.specific_body_force; | ||
auto const& identity2 = MathLib::KelvinVector::Invariants< | ||
MathLib::KelvinVector::KelvinVectorDimensions< | ||
DisplacementDim>::value>::identity2; | ||
|
||
//TODO: Change dT to time step wise increment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
//TODO: Change dT to time step wise increment | |
// TODO (wenqing): Change dT to time step wise increment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added.
@TomFischer I did the changes manually. |
OpenGeoSys development has been moved to GitLab. |
as titled.