aboutsummaryrefslogtreecommitdiff
path: root/ML_hydro
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2010-12-08 10:35:56 -0600
committerErik Schnetter <schnetter@cct.lsu.edu>2010-12-08 10:35:56 -0600
commit7923b8e8365adadd407818c0371354a376aede08 (patch)
tree6e91f8cb9be50a45a4867df7d88f2fcdc253e366 /ML_hydro
parent881ce25beb22a920b462da9174cdd471385ec31c (diff)
Regenerate code
Diffstat (limited to 'ML_hydro')
-rw-r--r--ML_hydro/param.ccl6
-rw-r--r--ML_hydro/src/hydro_RHS.c3
-rw-r--r--ML_hydro/src/hydro_con2prim.c3
-rw-r--r--ML_hydro/src/hydro_prim2con.c3
-rw-r--r--ML_hydro/src/hydro_soundWave.c3
-rw-r--r--ML_hydro/src/hydro_vacuum.c3
6 files changed, 18 insertions, 3 deletions
diff --git a/ML_hydro/param.ccl b/ML_hydro/param.ccl
index 90cf838..aab8e84 100644
--- a/ML_hydro/param.ccl
+++ b/ML_hydro/param.ccl
@@ -205,7 +205,7 @@ KEYWORD ene_group_bound "Boundary condition to implement"
"scalar" :: "Dirichlet boundary condition"
"newrad" :: "Improved radiative boundary condition"
"skip" :: "skip boundary condition code"
-} "skip"
+} "none"
private:
KEYWORD mass_group_bound "Boundary condition to implement"
@@ -217,7 +217,7 @@ KEYWORD mass_group_bound "Boundary condition to implement"
"scalar" :: "Dirichlet boundary condition"
"newrad" :: "Improved radiative boundary condition"
"skip" :: "skip boundary condition code"
-} "skip"
+} "none"
private:
KEYWORD mom_group_bound "Boundary condition to implement"
@@ -229,7 +229,7 @@ KEYWORD mom_group_bound "Boundary condition to implement"
"scalar" :: "Dirichlet boundary condition"
"newrad" :: "Improved radiative boundary condition"
"skip" :: "skip boundary condition code"
-} "skip"
+} "none"
private:
CCTK_REAL ene_bound_speed "characteristic speed at boundary"
diff --git a/ML_hydro/src/hydro_RHS.c b/ML_hydro/src/hydro_RHS.c
index 8de4eda..6f165f5 100644
--- a/ML_hydro/src/hydro_RHS.c
+++ b/ML_hydro/src/hydro_RHS.c
@@ -56,6 +56,9 @@ void hydro_RHS_Body(cGH const * restrict const cctkGH, int const dir, int const
return;
}
+ const char *groups[] = {"ML_hydro::eneflux_group","ML_hydro::ene_grouprhs","ML_hydro::massflux_group","ML_hydro::mass_grouprhs","ML_hydro::momflux_group","ML_hydro::mom_grouprhs"};
+ GenericFD_AssertGroupStorage(cctkGH, "hydro_RHS", 6, groups);
+
/* Include user-supplied include files */
/* Initialise finite differencing variables */
diff --git a/ML_hydro/src/hydro_con2prim.c b/ML_hydro/src/hydro_con2prim.c
index 2d8b977..4fa85c3 100644
--- a/ML_hydro/src/hydro_con2prim.c
+++ b/ML_hydro/src/hydro_con2prim.c
@@ -38,6 +38,9 @@ void hydro_con2prim_Body(cGH const * restrict const cctkGH, int const dir, int c
return;
}
+ const char *groups[] = {"ML_hydro::ene_group","ML_hydro::eps_group","ML_hydro::mass_group","ML_hydro::mom_group","ML_hydro::press_group","ML_hydro::rho_group","ML_hydro::vel_group","ML_hydro::vol_group"};
+ GenericFD_AssertGroupStorage(cctkGH, "hydro_con2prim", 8, groups);
+
/* Include user-supplied include files */
/* Initialise finite differencing variables */
diff --git a/ML_hydro/src/hydro_prim2con.c b/ML_hydro/src/hydro_prim2con.c
index abedfb4..4e93790 100644
--- a/ML_hydro/src/hydro_prim2con.c
+++ b/ML_hydro/src/hydro_prim2con.c
@@ -38,6 +38,9 @@ void hydro_prim2con_Body(cGH const * restrict const cctkGH, int const dir, int c
return;
}
+ const char *groups[] = {"ML_hydro::ene_group","ML_hydro::eps_group","ML_hydro::mass_group","ML_hydro::mom_group","ML_hydro::rho_group","ML_hydro::vel_group","ML_hydro::vol_group"};
+ GenericFD_AssertGroupStorage(cctkGH, "hydro_prim2con", 7, groups);
+
/* Include user-supplied include files */
/* Initialise finite differencing variables */
diff --git a/ML_hydro/src/hydro_soundWave.c b/ML_hydro/src/hydro_soundWave.c
index 672c918..76ef075 100644
--- a/ML_hydro/src/hydro_soundWave.c
+++ b/ML_hydro/src/hydro_soundWave.c
@@ -38,6 +38,9 @@ void hydro_soundWave_Body(cGH const * restrict const cctkGH, int const dir, int
return;
}
+ const char *groups[] = {"ML_hydro::eps_group","grid::coordinates","ML_hydro::rho_group","ML_hydro::vel_group"};
+ GenericFD_AssertGroupStorage(cctkGH, "hydro_soundWave", 4, groups);
+
/* Include user-supplied include files */
/* Initialise finite differencing variables */
diff --git a/ML_hydro/src/hydro_vacuum.c b/ML_hydro/src/hydro_vacuum.c
index 8d8c519..6a12f80 100644
--- a/ML_hydro/src/hydro_vacuum.c
+++ b/ML_hydro/src/hydro_vacuum.c
@@ -38,6 +38,9 @@ void hydro_vacuum_Body(cGH const * restrict const cctkGH, int const dir, int con
return;
}
+ const char *groups[] = {"ML_hydro::eps_group","ML_hydro::rho_group","ML_hydro::vel_group"};
+ GenericFD_AssertGroupStorage(cctkGH, "hydro_vacuum", 3, groups);
+
/* Include user-supplied include files */
/* Initialise finite differencing variables */