diff options
Diffstat (limited to 'src/main/Simulator/Flowsheet_15syn.c')
-rw-r--r-- | src/main/Simulator/Flowsheet_15syn.c | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/src/main/Simulator/Flowsheet_15syn.c b/src/main/Simulator/Flowsheet_15syn.c deleted file mode 100644 index 7a92e41..0000000 --- a/src/main/Simulator/Flowsheet_15syn.c +++ /dev/null @@ -1,59 +0,0 @@ -/* Synchronous systems */ -#include "Flowsheet_model.h" -#if defined(__cplusplus) -extern "C" { -#endif - -/* Initializes the clocks of model. */ -void Flowsheet_function_initSynchronous(DATA *data, threadData_t *threadData) -{ - TRACE_PUSH - long i=0, j=0; - TRACE_POP -} - -/* Update the base clock. */ -void Flowsheet_function_updateSynchronous(DATA *data, threadData_t *threadData, long i) -{ - TRACE_PUSH - modelica_boolean ret; - switch (i) { - default: - throwStreamPrint(NULL, "Internal Error: unknown base partition %ld", i); - break; - } - TRACE_POP -} - - - -/*Clocked systems equations */ -int Flowsheet_function_equationsSynchronous(DATA *data, threadData_t *threadData, long i) -{ - TRACE_PUSH - int ret; - - switch (i) { - default: - throwStreamPrint(NULL, "Internal Error: unknown sub partition %ld", i); - ret = 1; - break; - } - - TRACE_POP - return ret; -} - -/* pre(%v%) = %v% */ -void Flowsheet_function_savePreSynchronous(DATA *data, threadData_t *threadData) -{ - TRACE_PUSH - - - TRACE_POP -} - -#if defined(__cplusplus) -} -#endif - |