there wont be any changes if you dont save your field....

This commit is contained in:
Vasco C. B. Ferreira
2026-03-18 14:58:56 +01:00
parent 053486d05f
commit 7741f13530
9 changed files with 229 additions and 114 deletions
+3 -3
View File
@@ -15,10 +15,10 @@ namespace Parameters
constexpr double V_DOMAIN_LEFT = -10.0;
constexpr double V_DOMAIN_RIGHT = 10.0;
constexpr unsigned int NV = 512;
constexpr unsigned int NV = 1024;
constexpr unsigned int GLOBAL_REFINEMENT = 8;
constexpr unsigned int FE_DEGREE = 4;
constexpr unsigned int FE_DEGREE = 3;
constexpr double EPS = 0.01;
constexpr double WAVE_NR = 0.5;
@@ -30,7 +30,7 @@ namespace Parameters
//spline options
constexpr int SPLINE_NX = 512;
constexpr int SPLINE_NX = 1024;
constexpr double SPLINE_DX = LX/SPLINE_NX;
constexpr size_t SPLINE_ORDER = 4;