diff options
| author | Sebastian Park <SebPark03@gmail.com> | 2024-04-10 02:45:04 -0400 |
|---|---|---|
| committer | Sebastian Park <SebPark03@gmail.com> | 2024-04-10 02:45:04 -0400 |
| commit | 47cd8a592ecad52c1b01f27d23476c0a5afeb7f1 (patch) | |
| tree | 36b9abaff4e92a4a6df0d5ecb0e43e05c3aefd48 /src/ocean | |
| parent | fd19124693bb32835ad97802ba1950cd5202dbd2 (diff) | |
initial
Diffstat (limited to 'src/ocean')
| -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..b3197f8 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 = 256; // length of grid + const int width = 256; // 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 = 30; // numeric constant for the Phillips spectrum + const double V = 0.5; // wind speed const std::pair<double, double> omega_wind = std::make_pair(1.0, 0.0); // wind direction |
