From e8afa72158d296fb5eccdf362fafd053c0a725f3 Mon Sep 17 00:00:00 2001 From: Silas Oettinghaus Date: Wed, 17 Sep 2025 14:39:56 +0200 Subject: [PATCH] cluster changes pt. 2 --- projects/WDM/WDM_settings.m | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 projects/WDM/WDM_settings.m diff --git a/projects/WDM/WDM_settings.m b/projects/WDM/WDM_settings.m new file mode 100644 index 0000000..ce45432 --- /dev/null +++ b/projects/WDM/WDM_settings.m @@ -0,0 +1,10 @@ +% Add the imdd_simulation framework to the path +if ispc + addpath(genpath('C:\Users\Silas\Documents\MATLAB\imdd_simulation')); +else + % Linux path on the cluster + addpath(genpath('/work_beegfs/sutef391/imdd_simulation')); +end + +% Define where results should be written (used by WDM_model.m) +output_root = '/work_beegfs/sutef391/results_WDM'; \ No newline at end of file