diff options
Diffstat (limited to 'src/ocean/ocean.h')
-rw-r--r-- | src/ocean/ocean.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ocean/ocean.h b/src/ocean/ocean.h index a576c44..2387d2a 100644 --- a/src/ocean/ocean.h +++ b/src/ocean/ocean.h @@ -23,12 +23,12 @@ public: private: - const int length = 32; // length of grid - const int width = 32; // width of grid + const int length = 81; // length of grid + const int width = 81; // width of grid const int N = length * width; // total number of grid points - const double A = 10; // numeric constant for the Phillips spectrum - const double V = 5.0; // wind speed + const double A = 10.0; // numeric constant for the Phillips spectrum + const double V = .25; // wind speed const std::pair<double, double> omega_wind = std::make_pair(1.0, 0.0); // wind direction |