Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
giozu committed Sep 23, 2024
1 parent e3dc00e commit 387203a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 16 deletions.
27 changes: 12 additions & 15 deletions include/file_manager/InputReading.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,18 @@
*
*/
void InputReading(
int Sciantix_options[],
double Sciantix_variables[],
double Sciantix_scaling_factors[],
int &Input_history_points,
std::vector<double> &Time_input,
std::vector<double> &Temperature_input,
std::vector<double> &Fissionrate_input,
std::vector<double> &Hydrostaticstress_input,
std::vector<double> &Steampressure_input,
double &Time_end_h,
double &Time_end_s
);

void readSettings(std::ifstream &input, std::ofstream &output, int Sciantix_options[]);
void readParameters(std::ifstream &input, std::ofstream &output, double Sciantix_Array[]);
int Sciantix_options[],
double Sciantix_variables[],
double Sciantix_scaling_factors[],
int &Input_history_points,
std::vector<double> &Time_input,
std::vector<double> &Temperature_input,
std::vector<double> &Fissionrate_input,
std::vector<double> &Hydrostaticstress_input,
std::vector<double> &Steampressure_input,
double &Time_end_h,
double &Time_end_s
);

unsigned short int ReadOneSetting(std::string variable_name, std::ifstream& input_file, std::ofstream& output_file);
double ReadOneParameter(std::string variable_name, std::ifstream& input_file, std::ofstream& output_file);
Expand Down
1 change: 0 additions & 1 deletion src/operations/SetVariables.C
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ void Simulation::setVariables(
// Physics variable
physics_variable.push(SciantixVariable("Time step", "(s)", Sciantix_history[6], Sciantix_history[6], 0));


// History variable
std::vector<SciantixVariable> values = initializeHistoryVariable(
Sciantix_history,
Expand Down

0 comments on commit 387203a

Please sign in to comment.