Fix json parameter file syntax error

This commit is contained in:
jonjenssen 2021-05-20 11:29:42 +02:00 committed by jonjenssen
parent 9ccc650513
commit 9c74e58510

View File

@ -41,7 +41,7 @@ bool RifFaultRAJSonWriter::writeToPreprocFile( RimFaultRAPreprocSettings& settin
stream << "{" << endl;
stream << "\"odb_path\": \"" + settings.geomechCaseFilename() + "\"," << endl;
stream << "\"time_start\": \"" + settings.startTimeStepGeoMech() + "\"," << endl;
stream << "\"time_end\": \"" + settings.endTimeStepGeoMech() + "\"" << endl;
stream << "\"time_end\": \"" + settings.endTimeStepGeoMech() + "\"," << endl;
stream << "\"out_path\": \"" + settings.outputAbaqusDirectory() + "\"" << endl;
stream << "}" << endl;