00001 #include "nvector_serial.h" 00002 #include "sundials_types.h" 00003 #include "ihm.h" 00004 #include "cvode.h" 00005 #include "cvode_dense.h" 00006 00007 void PrintModelData(Model_Data DS); 00008 void PrintEle(Model_Data DS); 00009 void PrintEleAtt(Model_Data DS); 00010 void PrintNode(Model_Data DS); 00011 void PrintSoil(Model_Data DS); 00012 void PrintTS(TSD *Data, int NumTS); 00013 void PrintRiv(Model_Data DS); 00014 void PrintForcing(Model_Data DS); 00015 void PrintDY(Model_Data DS, N_Vector CV_Y, N_Vector CV_Ydot); 00016 void PrintY(Model_Data DS, N_Vector CV_Y, realtype t); 00017 void FPrintYheader(FILE *res_file, Model_Data mData); 00018 void FPrintY(Model_Data DS, N_Vector CV_Y, realtype t, FILE *res_file); 00019 void FPrintFlux(Model_Data DS, realtype t, FILE *res_file); 00020 void FPrintETISheader(FILE *res_file, Model_Data DS); 00021 void FPrintETIS(Model_Data DS, realtype t, FILE *res_file); 00022 void FPrintQ(Model_Data DS, realtype t, FILE *res_file); 00023