diff options
author | sotech117 <michael_foiani@brown.edu> | 2024-04-09 22:48:26 -0400 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2024-04-09 22:48:26 -0400 |
commit | 10619e114973276f783db40329b436082525dce3 (patch) | |
tree | 5c0cf96da16214dc80f960d9448a0bcd871c097c /src/ocean/ocean.h | |
parent | fd19124693bb32835ad97802ba1950cd5202dbd2 (diff) |
fix small bugs, remove vertices points for demo rendering
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 |