@@ -105,6 +105,16 @@ void InputReadFromFile_Old(int id, std::string InputFile, std::string &Simulatio
105
105
else {
106
106
// Simulation does not including remelting logic
107
107
RemeltingYN = false ;
108
+ if (id == 0 ) {
109
+ if (SimulationType == " S" )
110
+ std::cout << " Note: simulations of spot melt arrays without remelting will not be allowed in a future "
111
+ " release, problem type will default to using remelting"
112
+ << std::endl;
113
+ else if (SimulationType == " R" )
114
+ std::cout << " Note: simulations using input temperature data from files without remelting will not be "
115
+ " allowed in a future release, problem type will default to using remelting"
116
+ << std::endl;
117
+ }
108
118
}
109
119
if (SimulationType == " C" ) {
110
120
RequiredInputs_ProblemSpecific.resize (7 );
@@ -511,6 +521,16 @@ void InputReadFromFile(int id, std::string InputFile, std::string &SimulationTyp
511
521
else {
512
522
// Simulation does not including remelting logic
513
523
RemeltingYN = false ;
524
+ if (id == 0 ) {
525
+ if (SimulationType == " S" )
526
+ std::cout << " Note: simulations of spot melt arrays without remelting will not be allowed in a future "
527
+ " release, problem type will default to using remelting"
528
+ << std::endl;
529
+ else if (SimulationType == " R" )
530
+ std::cout << " Note: simulations using input temperature data from files without remelting will not be "
531
+ " allowed in a future release, problem type will default to using remelting"
532
+ << std::endl;
533
+ }
514
534
}
515
535
// Input files that should be present for all problem types
516
536
std::string MaterialFileName_Read = inputdata[" MaterialFileName" ];
0 commit comments