Skip to content

Commit

Permalink
fmk - changing EE_UQ to PBE in some error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
fmckenna committed Oct 10, 2023
1 parent 956b457 commit 54cbbd1
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions WorkflowAppPBE.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,19 +445,17 @@ WorkflowAppPBE::inputFromJSON(QJsonObject &jsonObject)
return false;
}


if (theUQ_Selection->inputAppDataFromJSON(theApplicationObject) == false)
this->errorMessage("PBE: failed to read UQ application");

if (theSIM_Selection->inputAppDataFromJSON(theApplicationObject) == false)
this->errorMessage("EE_UQ: failed to read SIM application");
this->errorMessage("PBE: failed to read SIM application");

if (theAnalysisSelection->inputAppDataFromJSON(theApplicationObject) == false)
this->errorMessage("EE_UQ: failed to read FEM application");

if (thePrfMethodSelection->inputAppDataFromJSON(theApplicationObject) == false)
this->errorMessage("PBE: failed to read PRF Method data");
this->errorMessage("PBE: failed to read FEM application");

if (thePrfMethodSelection->inputAppDataFromJSON(theApplicationObject) == false)
this->errorMessage("PBE: failed to read PRF application");

} else
return false;
Expand All @@ -479,6 +477,9 @@ WorkflowAppPBE::inputFromJSON(QJsonObject &jsonObject)
if (theAnalysisSelection->inputFromJSON(jsonObject) == false)
this->errorMessage("PBE: failed to read FEM Method data");

if (thePrfMethodSelection->inputFromJSON(jsonObject) == false)
this->errorMessage("PBE: failed to read PRF Method data");

if (jsonObject.contains("DL")) {
QJsonObject jsonObjLossModel = jsonObject["DL"].toObject();
if (theDLModelSelection->inputFromJSON(jsonObjLossModel) == false)
Expand Down

0 comments on commit 54cbbd1

Please sign in to comment.