Skip to content
Snippets Groups Projects
Commit e3121290 authored by Christoph Lehmann's avatar Christoph Lehmann Committed by Dmitri Naumov
Browse files

[PL] Added warning messages

The additional warning messages tell that only the Picard non-linear
solver will use additional optimization settings.
parent 9185116c
No related branches found
No related tags found
No related merge requests found
......@@ -78,6 +78,14 @@ ComponentTransportProcess::ComponentTransportProcess(
"the conditions for the correct use of this feature are met! "
"Otherwise OGS might compute garbage without being recognized. "
"There is no safety net!");
WARN(
"You specified that the ComponentTransport linear solver will do "
"the compute() step only upon timestep change. This option will "
"only be used by the Picard non-linear solver. The Newton-Raphson "
"non-linear solver will silently ignore this setting, i.e., it "
"won't do any harm, there, but you won't observe the speedup you "
"probably expect.");
}
_residua.push_back(MeshLib::getOrCreateMeshProperty<double>(
......
......@@ -60,6 +60,14 @@ HeatConductionProcess::HeatConductionProcess(
"the conditions for the correct use of this feature are met! "
"Otherwise OGS might compute garbage without being recognized. "
"There is no safety net!");
WARN(
"You specified that the HeatConduction linear solver will do "
"the compute() step only upon timestep change. This option will "
"only be used by the Picard non-linear solver. The Newton-Raphson "
"non-linear solver will silently ignore this setting, i.e., it "
"won't do any harm, there, but you won't observe the speedup you "
"probably expect.");
}
_heat_flux = MeshLib::getOrCreateMeshProperty<double>(
......
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