Skip to content

Commit e9d872e

Browse files
committed
Switched to default settings
1 parent 882d4f5 commit e9d872e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

simulation/app/src/main/cpp/src/native-lib.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,15 @@ void init(std::string packageName) {
104104
globalAppState->reader = new NetCDFReader(packageName);
105105

106106
//////////////////////// Double gyre regular scaling ////////////////////////
107-
// one_day_simulation_period = 50.0f;
108-
// globalAppState->vectorFieldHandler = new VectorFieldHandler(15, 15, 5);
109-
// globalAppState->physics = new Physics(*(globalAppState->vectorFieldHandler), Physics::Model::particles_advection, 0.1f);
107+
one_day_simulation_period = 50.0f;
108+
globalAppState->vectorFieldHandler = new VectorFieldHandler(15, 15, 5);
109+
globalAppState->physics = new Physics(*(globalAppState->vectorFieldHandler), Physics::Model::particles_advection, 0.1f);
110110
/////////////////////////////////////////////////////////////
111111

112112
//////////////////////// Double gyre alternative scaling ////////////////////////
113-
one_day_simulation_period = 10.0f;
114-
globalAppState->vectorFieldHandler = new VectorFieldHandler(15, 15, 5, true);
115-
globalAppState->physics = new Physics(*(globalAppState->vectorFieldHandler), Physics::Model::particles_advection, 0.02f);
113+
// one_day_simulation_period = 10.0f;
114+
// globalAppState->vectorFieldHandler = new VectorFieldHandler(15, 15, 5, true);
115+
// globalAppState->physics = new Physics(*(globalAppState->vectorFieldHandler), Physics::Model::particles_advection, 0.02f);
116116
/////////////////////////////////////////////////////////////
117117

118118
//////////////////////// Perlin noise ////////////////////////

0 commit comments

Comments
 (0)