.. _program_listing_file_include_MainVariables.h: Program Listing for File MainVariables.h ======================================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/MainVariables.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp // _______. ______ __ ___ .__ __. .___________. __ ___ ___ // // / | / || | / \ | \ | | | || | \ \ / / // // | (----`| ,----'| | / ^ \ | \| | `---| |----`| | \ V / // // \ \ | | | | / /_\ \ | . ` | | | | | > < // // .----) | | `----.| | / _____ \ | |\ | | | | | / . \ // // |_______/ \______||__| /__/ \__\ |__| \__| |__| |__| /__/ \__\ // // // // Originally developed by D. Pizzocri & T. Barani // // // // Version: 2.2.1 // // Year: 2025 // // Authors: D. Pizzocri, G. Zullo. // // // #ifndef MAIN_VARIABLES_H #define MAIN_VARIABLES_H #include #include extern int Sciantix_options[40]; extern double Sciantix_history[20]; extern double Sciantix_variables[300]; extern double Sciantix_scaling_factors[20]; extern double Sciantix_diffusion_modes[720]; extern long long int Time_step_number; extern double Time_h, dTime_h, Time_end_h; extern double Time_s, Time_end_s; extern double Number_of_time_steps_per_interval; extern std::ofstream Output_file; extern std::ofstream Execution_file; extern std::string TestPath; extern int Input_history_points; extern int Temperature_input_points; extern int Fissionrate_input_points; extern int Hydrostaticstress_input_points; extern int Stempressure_input_points; extern std::vector Time_temperature_input; extern std::vector Time_fissionrate_input; extern std::vector Time_hydrostaticstress_input; extern std::vector Time_steampressure_input; extern std::vector Time_input; extern std::vector Temperature_input; extern std::vector Fissionrate_input; extern std::vector Hydrostaticstress_input; extern std::vector Steampressure_input; #endif