From 35352a6460c89a1b2c69c045acb91a1e4e744c7f Mon Sep 17 00:00:00 2001 From: Ian Jauslin Date: Sun, 14 Dec 2025 10:29:47 -0500 Subject: [PATCH] Remove init_enstrophy and init_energy from savefile --- src/io.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/io.c b/src/io.c index 0acb358..40af127 100644 --- a/src/io.c +++ b/src/io.c @@ -337,6 +337,8 @@ int save_state( strcpy(params, params_string); remove_entry(params, "starting_time"); remove_entry(params, "init"); + remove_entry(params, "init_enstrophy"); + remove_entry(params, "init_energy"); if(algorithm>ALGORITHM_ADAPTIVE_THRESHOLD){ remove_entry(params, "delta"); }