We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A user running a full field thermal model, got the following exception:
Program threw an exception: EclProblem::updateCompositionChangeLimits_()) failed:Invalid thermal conductivity approach: 0
This was because the THCONR keyword in the GRID section was missing, adding the following fixed the problem:
THCONR
-- -- DEFINE GRID BLOCK ROCK-FLUID THERMAL CONDUCTIVITY FOR ALL CELLS -- THCONR 3060*25.0 /
Rather than an exception, we should catch this with an error message of the form:
Error: Missing Thermal Model Keywords: Thermal Conductivity not defined, see THCONR, THCGAS, THCOIL, etc. keywords in the GRID section
or something similar.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A user running a full field thermal model, got the following exception:
Program threw an exception: EclProblem::updateCompositionChangeLimits_()) failed:Invalid thermal conductivity approach: 0
This was because the
THCONR
keyword in the GRID section was missing, adding the following fixed the problem:Rather than an exception, we should catch this with an error message of the form:
or something similar.
The text was updated successfully, but these errors were encountered: