diff options
author | jjesswan <jessica_wan@brown.edu> | 2024-05-06 04:30:32 -0400 |
---|---|---|
committer | jjesswan <jessica_wan@brown.edu> | 2024-05-06 04:30:32 -0400 |
commit | d87077e403f5070ad5419a6c4ec7fd9ff0890788 (patch) | |
tree | 11f69507478f0664adfa6d563375ce784fa39a05 /src/ocean/ocean_alt.h | |
parent | 7a6ceadedc20f58b7be76654eb8357e3ca0b026d (diff) |
saving with good res
Diffstat (limited to 'src/ocean/ocean_alt.h')
-rw-r--r-- | src/ocean/ocean_alt.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ocean/ocean_alt.h b/src/ocean/ocean_alt.h index 41c99ba..31f53ca 100644 --- a/src/ocean/ocean_alt.h +++ b/src/ocean/ocean_alt.h @@ -75,14 +75,14 @@ private: - const double Lx = 512.0; - const double Lz = 512.0; + const double Lx = 1024.0; + const double Lz = 1024.0; - const int num_rows = 64; - const int num_cols = 64; + const int num_rows = 256; + const int num_cols = 256; const int N = num_rows*num_cols; // total number of grid points - const double lambda = 0.4; // how much displacement matters - const double spacing = 35.0; // spacing between grid points + const double lambda = 0.8; // how much displacement matters + const double spacing = 75.0; // spacing between grid points const double A = 100; // numeric constant for the Phillips spectrum const double V = 50; // wind speed |