Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
TurTLE
TurTLE
Commits
7b9b787c
Commit
7b9b787c
authored
Jan 11, 2016
by
Cristian Lalescu
Browse files
remove debug messages
parent
3823da66
Changes
2
Hide whitespace changes
Inline
Side-by-side
bfps/NavierStokes.py
View file @
7b9b787c
...
...
@@ -59,7 +59,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base):
hid_t group;
hid_t Cspace, Cdset;
int ndims;
DEBUG_MSG("about to grow datasets
\\
n");
// store kspace information
Cdset = H5Dopen(stat_file, "/kspace/kshell", H5P_DEFAULT);
Cspace = H5Dget_space(Cdset);
...
...
@@ -86,7 +85,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base):
group = H5Gopen(stat_file, "/statistics", H5P_DEFAULT);
H5Ovisit(group, H5_INDEX_NAME, H5_ITER_NATIVE, grow_statistics_dataset, NULL);
H5Gclose(group);
DEBUG_MSG("finished growing datasets
\\
n");
//endcpp
"""
self
.
style
=
{}
...
...
@@ -335,7 +333,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base):
self
.
fluid_start
+=
"""
//begincpp
char fname[512];
DEBUG_MSG("about to allocate fluid_solver
\\
n");
fs = new fluid_solver<{0}>(
simname,
nx, ny, nz,
...
...
@@ -350,7 +347,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base):
strncpy(fs->forcing_type, forcing_type, 128);
fs->iteration = iteration;
fs->read('v', 'c');
DEBUG_MSG("finished reading initial condition
\\
n");
if (fs->cd->myrank == 0)
{{
H5T_field_complex = H5Tcreate(H5T_COMPOUND, sizeof(tmp_complex_type));
...
...
bfps/cpp/fluid_solver_base.cpp
View file @
7b9b787c
...
...
@@ -24,7 +24,7 @@
//
#define NDEBUG
#define NDEBUG
#include
<cassert>
#include
<cmath>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment