1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
//! This module makes it easier to use the Rk4 ray tracing by encapsulating it
//! with the SingleRay struct
use std::fs::OpenOptions;
use std::io::{BufWriter, Write};
use std::path::Path;
use derive_builder::Builder;
use ode_solvers::dop_shared::SolverResult;
use rayon::prelude::*;
use ode_solvers::Rk4;
use crate::bathymetry::DEFAULT_BATHYMETRY;
use crate::current::{CurrentData, DEFAULT_CURRENT};
use crate::datatype::RayState;
use crate::{
bathymetry::BathymetryData, error::Result, wave_ray_path::State, wave_ray_path::Time,
wave_ray_path::WaveRayPath,
};
#[derive(Builder)]
/// a struct that creates many rays
pub(crate) struct ManyRays<'a> {
#[builder(default = "&DEFAULT_BATHYMETRY")]
/// a reference to the bathymetry dataset. Default is 2000 m.
bathymetry_data: &'a dyn BathymetryData,
#[builder(default = "&DEFAULT_CURRENT")]
/// a reference to the current dataset. Default is (u, v) = (0, 0) m/s
current_data: &'a dyn CurrentData,
/// a vector of initial x, y, kx, and ky values for the many waves
initial_rays: &'a Vec<RayState<f64>>,
}
#[allow(dead_code)]
impl<'a> ManyRays<'a> {
/// construct a new `ManyRays` from bathymetry and initial rays
///
/// # Arguments
/// `bathymetry_data`: `&'a dyn BathymetryData`
/// - the data on depth that implements the `depth` and
/// `depth_gradient` methods.
///
/// `current_data`: `Option<&'a dyn CurrentData>`
/// - the data on current that implements the `get_current` and
/// `get_current_gradient` methods. If `None`, then the current is assumed
/// to be zero.
///
/// `init_rays`: `&'a Vec<(f64, f64, f64, f64)>`
/// - a vector of initial x, y, kx, and ky values for the many waves
///
/// # Returns
/// `Self`: a constructed `ManyRays` struct
pub(crate) fn new(
bathymetry_data: &'a dyn BathymetryData,
current_data: &'a dyn CurrentData,
initial_rays: &'a Vec<RayState<f64>>,
) -> Self {
ManyRays {
bathymetry_data,
current_data,
initial_rays,
}
}
/// create a new `ManyRays` using the builder method
///
/// Used to create a builder object and then set each argument individually.
/// For example,
/// `ManyRays::builder().init_rays(&init_rays).build().unwrap()`
///
/// Note: There are default bathymetry and current, but no default initial
/// rays, so it will panic if not supplied initial rays.
pub(crate) fn builder() -> ManyRaysBuilder<'a> {
ManyRaysBuilder::default()
}
/// Trace many rays given start time, stop time, and step size (delta t)
///
/// Given the arguments, `trace_many` creates a vector of SingleRays,
/// integrates each ray, and returns the results.
///
/// Arguments:
///
/// `start_time`: `f64`
/// - the time the ray tracing begins.
///
/// `end_time`: `f64`
/// - the time the ray tracing is stopped.
///
/// `step_size`: `f64`
/// - the change in time between integration steps. Smaller step size
/// produces more accurate result, but takes longer to run.
///
/// Returns: `Vec<Option<(XOut, YOut)>>`: A vector of optional values. Each
/// value in the vector is either `None`, which represents an error during
/// that ray's integration, or they are a tuple of (XOut, YOut).
pub(crate) fn trace_many(
&self,
start_time: f64,
end_time: f64,
step_size: f64,
) -> Vec<Option<SolverResult<Time, State>>> {
// create a vector of SingleRays
let rays: Vec<SingleRay> = self
.initial_rays
.par_iter()
.map(|ray_state| SingleRay::new(self.bathymetry_data, self.current_data, ray_state))
.collect();
// integrate each. I think here is where I would use `par_iter` from rayon in the future.
let results: Vec<Option<SolverResult<Time, State>>> = rays
.par_iter()
.map(
|r| match r.trace_individual(start_time, end_time, step_size) {
Ok(v) => Some(v),
Err(e) => {
println!("ERROR {} during integration", e);
None
}
},
)
.collect();
// return the results
results
}
}
// A struct with methods for tracing an individual wave and returning the result.
pub(crate) struct SingleRay<'a> {
bathymetry_data: &'a dyn BathymetryData,
current_data: &'a dyn CurrentData,
initial_ray: &'a RayState<f64>,
}
#[allow(dead_code)]
impl<'a> SingleRay<'a> {
/// construct a `SingleRay`
///
/// # Arguments
/// `bathymetry_data` : `&'a dyn BathymetryData`
/// - a struct that implements the `depth` function
///
/// `current_data` : `Option<&'a dyn CurrentData>`
/// - a struct that implements the `get_current` function. If `None`, then
/// the current is assumed to be zero.
///
/// `x0` : `f64`
/// - the initial x coordinate
///
/// `y0` : `f64`
/// - the initial y coordinate
///
/// `kx0` : `f64`
/// - the initial kx value
///
/// `ky0` : `f64`
/// - the initial ky value
///
/// # Returns
/// `Self` : the new `SingleRay` struct
pub(crate) fn new(
bathymetry_data: &'a dyn BathymetryData,
current_data: &'a dyn CurrentData,
initial_ray: &'a RayState<f64>,
) -> Self {
SingleRay {
bathymetry_data,
current_data,
initial_ray,
}
}
/// computes ode_solvers Rk4 tracing and returns result
///
/// # Arguments
///
/// `start_time` : `f64`
/// - time to start the Rk4
///
/// `end_time` : `f64`
/// - time to end the Rk4
///
/// `step_size` : `f64`
/// - delta t
///
/// # Returns
/// `Result<SolverResult<Time, State>, Error>`
/// - `SolverResult<Time, State>` : The result of the `ode_solvers`
/// integration.
/// - `Err(Error::IntegrationError)` : there was an error during Rk4
/// integrate method.
///
/// # Note
/// This struct still copies the data when it returns, which could be an
/// inefficiency, but the arguments are now less.
pub(crate) fn trace_individual(
&self,
start_time: f64,
end_time: f64,
step_size: f64,
) -> Result<SolverResult<Time, State>> {
// do the calculations
let system = WaveRayPath::new(self.bathymetry_data, self.current_data);
let s0 = State::from(self.initial_ray.clone());
let mut stepper = Box::new(Rk4::new(system, start_time, s0, end_time, step_size));
stepper.integrate()?;
// return the stepper results
let results: &SolverResult<Time, State> = stepper.results();
Ok(results.clone())
}
}
#[allow(dead_code)]
/// Appends the result to the given file path or creates new file if it does not
/// exist.
pub(crate) fn output_or_append_to_tsv_file(
file_path: &Path,
result: &SolverResult<Time, State>,
) -> Result<()> {
let (x_out, y_out) = result.get();
let file = OpenOptions::new()
.create(true)
.append(true)
.open(file_path)?;
let mut writer = BufWriter::new(file);
writeln!(&mut writer, "t x y kx ky")?;
for (i, x) in x_out.iter().enumerate() {
if y_out[i][0].is_nan() {
break;
}
write!(&mut writer, "{} ", x)?;
for elem in y_out[i].iter() {
write!(&mut writer, "{} ", elem)?;
}
writeln!(&mut writer, " ")?;
}
writeln!(&mut writer, "END")?;
writer.flush()?;
Ok(())
}
#[cfg(test)]
mod test_single_wave {
use tempfile::NamedTempFile;
use crate::{
bathymetry::{BathymetryData, CartesianNetcdf3, ConstantDepth, ConstantSlope},
current::{CartesianCurrent, ConstantCurrent},
datatype::{Point, RayState, WaveNumber},
io::utility::{create_netcdf3_bathymetry, create_netcdf3_current},
};
use super::SingleRay;
/// Create a test file with depths split down the middle
fn two_depth_fn(x: f32, _y: f32) -> f64 {
if x >= 50.0 {
20.0
} else {
50.0
}
}
#[test]
/// ray tracing on a constant depth shallow wave propagating in the x
/// direction. k stays the same.
fn test_constant_wave_shallow_x() {
let bathymetry_data = &ConstantDepth::new(10.0);
let current_data = &ConstantCurrent::new(0.0, 0.0);
let initial_ray = RayState::new(Point::new(10.0, 50.0), WaveNumber::new(0.01, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// make sure the starting point is at least 2 steps away from the edge.
let res = wave.trace_individual(0.0, 8.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify each y, kx, ky value stays the same
data.iter().for_each(|r| assert_eq!(r[1], 50.0));
data.iter().for_each(|r| assert_eq!(r[2], 0.01));
data.iter().for_each(|r| assert_eq!(r[3], 0.0));
// verify the x values are increasing
let mut last_x = data[0][0];
for r in data.iter() {
assert!(r[0] >= last_x);
last_x = r[0];
}
}
#[test]
/// ray tracing on a constant depth shallow wave propagating at an angle in
/// the x=y direction. k stays the same.
fn test_constant_wave_shallow_xy() {
let bathymetry_data = &ConstantDepth::new(10.0);
let current_data = &ConstantCurrent::new(0.0, 0.0);
// test wave 2 starting in the corner
let initial_ray = RayState::new(Point::new(10.0, 10.0), WaveNumber::new(0.007, 0.007));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
let res = wave.trace_individual(0.0, 8.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify that kx and ky stay the same
data.iter().for_each(|r| assert_eq!(r[2], 0.007));
data.iter().for_each(|r| assert_eq!(r[3], 0.007));
// check to verify x and y are the same value and always increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
let x = r[0];
let y = r[1];
// FIXME: the test below fails due to floating point errors
// assert!(
// (x - y).abs() <= f64::EPSILON,
// "expected {} to be equal to {}",
// x,
// y
// );
assert!(x >= last_x);
assert!(y >= last_y);
last_x = x;
last_y = y;
}
}
#[test]
/// ray tracing on a constant depth deep wave propagating in the x
/// direction. k stay the same.
fn test_constant_wave_deep_x() {
let bathymetry_data = &ConstantDepth::new(10.0);
let current_data = &ConstantCurrent::new(0.0, 0.0);
// test wave 1
let initial_ray = RayState::new(Point::new(10.0, 50.0), WaveNumber::new(1.0, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// make sure the starting point is at least 2 steps away from the edge.
let res = wave.trace_individual(0.0, 18.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify each y, kx, ky value stays the same
data.iter().for_each(|r| assert_eq!(r[1], 50.0));
data.iter().for_each(|r| assert_eq!(r[2], 1.0));
data.iter().for_each(|r| assert_eq!(r[3], 0.0));
// verify the x values are increasing
let mut last_x = data[0][0];
for r in data.iter() {
assert!(r[0] >= last_x);
last_x = r[0];
}
}
#[test]
/// ray tracing on a constant depth deep wave propagating at an angle in the
/// x=y direction. k stays the same.
fn test_constant_wave_deep_xy() {
let bathymetry_data = &ConstantDepth::new(10.0);
let current_data = &ConstantCurrent::new(0.0, 0.0);
let initial_ray = RayState::new(Point::new(10.0, 10.0), WaveNumber::new(0.7, 0.7));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
let res = wave.trace_individual(0.0, 18.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify that kx and ky stay the same
data.iter().for_each(|r| assert_eq!(r[2], 0.7));
data.iter().for_each(|r| assert_eq!(r[3], 0.7));
// check to verify x and y are the same value and always increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
let x = r[0];
let y = r[1];
// FIXME: the test below fails due to floating point errors
// assert!(
// (x - y).abs() <= f64::EPSILON,
// "expected {} to be equal to {}",
// x,
// y
// );
assert!(x >= last_x);
assert!(y >= last_y);
last_x = x;
last_y = y;
}
}
#[test]
/// ray tracing on a two-depth (half 50m and half 20m) shallow wave
/// propagating in the x direction. The kx increases slightly.
fn test_two_depth_wave_shallow_x() {
let tmp_file = NamedTempFile::new().unwrap();
let tmp_path = tmp_file.into_temp_path();
create_netcdf3_bathymetry(&tmp_path, 100, 100, 1.0, 1.0, two_depth_fn);
let bathymetry_data = &CartesianNetcdf3::open(&tmp_path, "x", "y", "depth").unwrap();
let initial_ray = RayState::new(Point::new(10.0, 50.0), WaveNumber::new(0.01, 0.0));
let current_data = &ConstantCurrent::new(0.0, 0.0);
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// make sure the starting point is at least 2 steps away from the edge.
let res = wave.trace_individual(0.0, 5.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify each y and ky value stays the same
data.iter().for_each(|r| assert_eq!(r[1], 50.0));
data.iter().for_each(|r| assert_eq!(r[3], 0.0));
// verify the x values are increasing
// verify that the kx value either increases or stays the same.
let mut last_x = data[0][0];
let mut last_kx = data[0][2];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[2] >= last_kx);
last_x = r[0];
last_kx = r[2];
}
// finally, make the the final kx is greater then the initial
assert!(data.iter().last().unwrap()[2] > data.iter().next().unwrap()[2])
}
#[test]
/// ray tracing on a two-depth shallow wave propagating at an angle in the
/// x=y direction. This shows a change in the kx and ky.
fn test_two_depth_wave_shallow_xy() {
let tmp_file = NamedTempFile::new().unwrap();
let tmp_path = tmp_file.into_temp_path();
create_netcdf3_bathymetry(&tmp_path, 100, 100, 1.0, 1.0, two_depth_fn);
let bathymetry_data = &CartesianNetcdf3::open(&tmp_path, "x", "y", "depth").unwrap();
let current_data = &ConstantCurrent::new(0.0, 0.0);
let initial_ray = RayState::new(Point::new(10.0, 10.0), WaveNumber::new(0.007, 0.007));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
let res = wave.trace_individual(0.0, 6.8, 0.1).unwrap();
let (_, data) = &res.get();
// verify each ky value stays the same
data.iter().for_each(|r| assert_eq!(r[3], 0.007));
// verify the x and y values are increasing
// verify that the kx value either increases or stays the same.
// verify that the x values are greater than or equal to y values
let mut last_x = data[0][0];
let mut last_y = data[0][1];
let mut last_kx = data[0][2];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[1] >= last_y);
assert!(r[2] >= last_kx);
assert!(r[0] >= r[1]);
last_x = r[0];
last_y = r[1];
last_kx = r[2];
}
// finally, make the the final kx is greater then the initial
assert!(data.iter().last().unwrap()[2] > data.iter().next().unwrap()[2]);
}
#[test]
/// ray tracing on a two-depth deep wave propagating in the x direction.
/// This correctly shows no change in kx or ky.
fn test_two_depth_wave_deep_x() {
let tmp_file = NamedTempFile::new().unwrap();
let tmp_path = tmp_file.into_temp_path();
create_netcdf3_bathymetry(&tmp_path, 100, 100, 1.0, 1.0, two_depth_fn);
let bathymetry_data = &CartesianNetcdf3::open(&tmp_path, "x", "y", "depth").unwrap();
let current_data = &ConstantCurrent::new(0.0, 0.0);
let initial_ray = RayState::new(Point::new(10.0, 50.0), WaveNumber::new(1.0, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// make sure the starting point is at least 2 steps away from the edge.
let res = wave.trace_individual(0.0, 30.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify each y, kx, ky value stays the same
data.iter().for_each(|r| assert_eq!(r[3], 0.0));
data.iter().for_each(|r| assert_eq!(r[1], 50.0));
data.iter().for_each(|r| assert_eq!(r[2], 1.0));
// verify the x values are increasing
let mut last_x = data[0][0];
for r in data.iter() {
assert!(r[0] >= last_x);
last_x = r[0];
}
}
#[test]
/// ray tracing on a two-depth deep wave propagating at an angle in the x=y
/// direction. This correctly shows no change in kx or ky.
fn test_two_depth_wave_deep_xy() {
let tmp_file = NamedTempFile::new().unwrap();
let tmp_path = tmp_file.into_temp_path();
create_netcdf3_bathymetry(&tmp_path, 100, 100, 1.0, 1.0, two_depth_fn);
let bathymetry_data = &CartesianNetcdf3::open(&tmp_path, "x", "y", "depth").unwrap();
let current_data = &ConstantCurrent::new(0.0, 0.0);
let initial_ray = RayState::new(Point::new(10.0, 10.0), WaveNumber::new(0.7, 0.7));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
let res = wave.trace_individual(0.0, 40.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify each y, kx, ky value stays the same
data.iter().for_each(|r| assert_eq!(r[2], 0.7));
data.iter().for_each(|r| assert_eq!(r[3], 0.7));
// verify the x values are increasing
// verify that y values equal the x values
let mut last_x = data[0][0];
for r in data.iter() {
assert!(r[0] >= last_x);
// FIXME: the test below fails due to floating point errors
// assert!(
// (r[0] - r[1]).abs() <= f64::EPSILON,
// "expected {} to be equal to {}",
// r[0],
// r[1]
// );
last_x = r[0];
}
}
#[test]
/// shallow water wave propagating through a constant slope from deeper to
/// shallower water.
fn test_slope_depth_wave_x() {
let bathymetry_data = &ConstantSlope::builder().build().unwrap();
let current_data = &ConstantCurrent::new(0.0, 0.0);
let initial_ray = RayState::new(Point::new(10.0, 1000.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
let res = wave.trace_individual(0.0, 100.0, 1.0).unwrap();
// this wave will propagate from deep to shallow water.
assert_eq!(bathymetry_data.depth(&Point::new(10.0, 1000.0)).unwrap(), 49.5);
assert_eq!(bathymetry_data.depth(&Point::new(300.0, 1000.0)).unwrap(), 35.0);
let (_, data) = &res.get();
// verify each y and ky value stays the same
//data.iter().for_each(|r| assert_eq!(r[1], 1000.0));
//data.iter().for_each(|r| assert_eq!(r[3], 0.0));
// verify the x values are increasing
let mut last_x = data[0][0];
for r in data.iter().filter(|v| !v[0].is_nan()) {
assert!(r[0] >= last_x);
last_x = r[0];
}
// verify that the last kx value is greater than the first. this is because
// the wave is getting more and more shallow.
assert!(
data.iter().filter(|v| !v[0].is_nan()).last().unwrap()[2]
> data.iter().filter(|v| !v[0].is_nan()).next().unwrap()[2]
);
}
#[test]
/// tests one wave with constant depth and zero current
///
/// Since there is no current, the y and kx and ky values will not change.
/// The x values will increase because kx = 0.1. Because the depth is not
/// constant, the speed should not change either.
fn constant_depth_zero_current() {
let bathymetry_data = &ConstantDepth::new(10.0);
let current_data = &ConstantCurrent::new(0.0, 0.0);
let initial_ray = RayState::new(Point::new(0.0, 0.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
let res = wave.trace_individual(100.0, 102.0, 1.0).unwrap();
let (_, data) = &res.get();
// check to make sure all y values are zero
data.iter().for_each(|r| assert_eq!(r[1], 0.0));
data.iter().for_each(|r| assert_eq!(r[2], 0.1));
data.iter().for_each(|r| assert_eq!(r[3], 0.0));
// check to make sure the x values are increasing
let mut last_x = data[0][0];
for r in data.iter() {
assert!(r[0] >= last_x);
last_x = r[0];
}
}
#[test]
/// test one wave with constant depth and current.
///
/// This test sets u to 0.5 and kx to 0.1. The wave should move in the x
/// direction and the y value should stay the same. The kx value should stay
/// the same and the ky value should stay the same.
fn constant_depth_and_current() {
let bathymetry_data = &ConstantDepth::new(10.0);
// current is 0.5 m/s in the x direction
let current_data = &ConstantCurrent::new(0.5, 0.0);
// wave starts at (x,y,kx,ky) = (0,0,0.1,0.0)
let initial_ray = RayState::new(Point::new(0.0, 0.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all y values are zero, kx values are 0.1, ky values are 0.0
data.iter().for_each(|r| assert_eq!(r[1], 0.0));
data.iter().for_each(|r| assert_eq!(r[2], 0.1));
data.iter().for_each(|r| assert_eq!(r[3], 0.0));
// check to make sure the x values are increasing
let mut last_x = data[0][0];
for r in data.iter() {
assert!(r[0] >= last_x);
last_x = r[0];
}
}
#[test]
// test with a constant current of 0.5 m/s in the y direction. The kx and ky
// values should stay the same and the x and y values will increase.
fn test_positive_v() {
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// the current is 0.5 m/s in the y direction
let current_data = &ConstantCurrent::new(0.0, 0.5);
// wave starts at (x,y,kx,ky) = (0,0,0.1,0.0)
let initial_ray = RayState::new(Point::new(0.0, 0.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all kx and ky values are the same
data.iter().for_each(|r| assert_eq!(r[2], 0.1));
data.iter().for_each(|r| assert_eq!(r[3], 0.0));
// verify that the x and y values are increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[1] >= last_y);
last_x = r[0];
last_y = r[1];
}
// verify that the last x and y value is greater than the first. this is
// because above only checked greater than or equal to
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
}
#[test]
// test a wave with a constant current of -0.5 m/s in the y direction. since
// the direction initially of the wave is (0, 0, 0.1, 0.0) in the x direction, the x values
// will increase and the y values will decrease. the kx and ky values will
// stay the same.
fn test_negative_v() {
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// the current is -0.5 m/s in the y direction
let current_data = &ConstantCurrent::new(0.0, -0.5);
// wave starts at (x,y,kx,ky) = (0,0,0.1,0.0)
let initial_ray = RayState::new(Point::new(0.0, 0.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all kx and ky values are the same
data.iter().for_each(|r| assert_eq!(r[2], 0.1));
data.iter().for_each(|r| assert_eq!(r[3], 0.0));
// verify that the x values are increasing and y values are decreasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[1] <= last_y);
last_x = r[0];
last_y = r[1];
}
// verify that the last x value is greater than the first and the last y value is less than the first. this is
// because above only checked greater than or equal to or less than or equal to
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] < data.iter().next().unwrap()[1]);
}
#[test]
// test a wave with a constant current of 0.5 m/s in the x direction. since
// the initially travels in the y direction, the x and y values are
// increasing. The kx and ky values will stay the same.
fn test_positive_u() {
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// the current is 0.5 m/s in the x direction
let current_data = &ConstantCurrent::new(0.5, 0.0);
// wave starts at (x,y,kx,ky) = (0,0,0.0,0.1)
let initial_ray = RayState::new(Point::new(0.0, 0.0), WaveNumber::new(0.0, 0.1));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all kx and ky values are the same
data.iter().for_each(|r| assert_eq!(r[2], 0.0));
data.iter().for_each(|r| assert_eq!(r[3], 0.1));
// verify that the x and y values are increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[1] >= last_y);
last_x = r[0];
last_y = r[1];
}
// verify that the last x and y value is greater than the first. this is
// because above only checked greater than or equal to
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
}
#[test]
// test a wave with a constant current of -0.5 m/s in the x direction since
// the wave starts initially at (0,0,0.0,0.1), the x values are decreasing
// and the y values are increasing. the kx and ky values will stay the same.
fn test_negative_u() {
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// the current is -0.5 m/s in the x direction
let current_data = &ConstantCurrent::new(-0.5, 0.0);
// wave starts at (x,y,kx,ky) = (0,0,0.0,0.1)
let initial_ray = RayState::new(Point::new(0.0, 0.0), WaveNumber::new(0.0, 0.1));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all kx and ky values are the same
data.iter().for_each(|r| assert_eq!(r[2], 0.0));
data.iter().for_each(|r| assert_eq!(r[3], 0.1));
// verify that the x values are decreasing and y values are increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] <= last_x);
assert!(r[1] >= last_y);
last_x = r[0];
last_y = r[1];
}
// verify that the last x value is less than the first and the last y value is greater than the first. this is
// because above only checked greater than or equal to or less than or equal to
assert!(data.iter().last().unwrap()[0] < data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
}
#[test]
// test a wave with a constant current of 0.5 m/s in the x and y direction
// since the wave starts initially at (0,0,0.1,0.0), the x and y values
// will increase and the kx and ky values will stay the same.
fn test_positive_u_and_v() {
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// the current is 0.5 m/s in the x direction and 0.5 m/s in the y direction
let current_data = &ConstantCurrent::new(0.5, 0.5);
// wave starts at (x,y,kx,ky) = (0,0,0.1,0.0)
let initial_ray = RayState::new(Point::new(0.0, 0.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all kx and ky values are the same
data.iter().for_each(|r| assert_eq!(r[2], 0.1));
data.iter().for_each(|r| assert_eq!(r[3], 0.0));
// verify that the x and y values are increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[1] >= last_y);
last_x = r[0];
last_y = r[1];
}
// verify that the last x and y value is greater than the first. this is
// because above only checked greater than or equal to
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
}
#[test]
/// test a wave with a constant current of -0.5 m/s in the x and y direction
/// since the wave starts initially at (0,0,-0.1,0.0), the x and y values
/// will decrease and the kx and ky values will stay the same.
fn test_negative_u_and_v() {
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// the current is -0.5 m/s in the x direction and -0.5 m/s in the y direction
let current_data = &ConstantCurrent::new(-0.5, -0.5);
// wave starts at (x,y,kx,ky) = (0,0,-0.1,0.0)
let initial_ray = RayState::new(Point::new(0.0, 0.0), WaveNumber::new(-0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all kx and ky values are the same
data.iter().for_each(|r| assert_eq!(r[2], -0.1));
data.iter().for_each(|r| assert_eq!(r[3], 0.0));
// verify that the x values are decreasing and y values are decreasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] <= last_x);
assert!(r[1] <= last_y);
last_x = r[0];
last_y = r[1];
}
// verify that the last x value is less than the first and the last y value is less than the first. this is
// because above only checked greater than or equal to or less than or equal to
assert!(data.iter().last().unwrap()[0] < data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] < data.iter().next().unwrap()[1]);
}
#[test]
/// test a wave with a nonzero dudx where u = x/100.0 and v = 0.0 this
/// test first creates the gradient file and then tests the wave
/// propagation. It verifies two cases:
/// 1) a wave starting at (1,1,0.1,0.0) will propagate in the x direction
/// and the kx value will decrease, but y and ky values will stay the
/// same
/// 2) a wave starting at (1,1,0.0,0.1) will propagate in the y direction
/// with slight positive x direction, but both kx and ky will remain the
/// same.
fn test_simple_dudx_gradient() {
// function that takes in x and y as f32 and returns u and v as f64.
// this only will create a gradient in the u direction
fn u_gradient_fn(x: f32, _y: f32) -> (f64, f64) {
((x / 100.0) as f64, 0.0)
}
// create the current file
let tmp_file = NamedTempFile::new().unwrap();
let tmp_path = tmp_file.into_temp_path();
create_netcdf3_current(&tmp_path, 100, 100, 1.0, 1.0, u_gradient_fn);
// open the current data
let current_data = &CartesianCurrent::open(&tmp_path, "x", "y", "u", "v");
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// wave starts at (x,y,kx,ky) = (1,1,0.1,0.0)
let initial_ray = RayState::new(Point::new(1.0, 1.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all ky and y values are the same
data.iter().for_each(|r| assert_eq!(r[3], 0.0)); // ky
data.iter().for_each(|r| assert_eq!(r[1], 1.0)); // y
// verify that the x values are increasing
let mut last_x = data[0][0];
for r in data.iter() {
assert!(r[0] >= last_x);
last_x = r[0];
}
// verify that the kx value is decreasing
let mut last_kx = data[0][2];
for r in data.iter() {
assert!(r[2] <= last_kx);
last_kx = r[2];
}
// verify that the last kx value is less than the first. this is
// because above only checked less than or equal to
assert!(data.iter().last().unwrap()[2] < data.iter().next().unwrap()[2]);
// verify that the last x value is greater than the first. this is
// because above only checked greater than or equal to
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
// new wave (x, y, kx, ky) = (1, 1, 0.0, 0.1)
let initial_ray = RayState::new(Point::new(1.0, 1.0), WaveNumber::new(0.0, 0.1));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all ky and kx values are the same
data.iter().for_each(|r| assert_eq!(r[3], 0.1)); // ky
data.iter().for_each(|r| assert_eq!(r[2], 0.0)); // kx
// verify that the x and y values are increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[1] >= last_y);
last_x = r[0];
last_y = r[1];
}
// verify that the last x and y value is greater than the first. this is
// because above only checked greater than or equal to
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
}
#[test]
/// This test will create a current file with a nonzero du/dy. The tests
/// will verify two cases:
/// 1) a wave starting at (1,1,0.1,0.0) will propagate in the x direction,
/// the kx values will stay the same, x will increase, and y and ky will
/// decrease
/// 2) a wave starting at (1,1,0.0,0.1) will propagate in the y direction,
/// the kx and ky values stay the same, and the x and y values increase
fn test_simple_dudy_gradient() {
// function that takes in x and y as f32 and returns u and v as f64.
// this will only create the dudy gradient
fn u_gradient_fn(_x: f32, y: f32) -> (f64, f64) {
((y / 100.0) as f64, 0.0)
}
// create the current file
let tmp_file = NamedTempFile::new().unwrap();
let tmp_path = tmp_file.into_temp_path();
create_netcdf3_current(&tmp_path, 100, 100, 1.0, 1.0, u_gradient_fn);
// open the current data
let current_data = &CartesianCurrent::open(&tmp_path, "x", "y", "u", "v");
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// wave starts at (x,y,kx,ky) = (1,1,0.1,0.0)
let initial_ray = RayState::new(Point::new(1.0, 50.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify that all kx values are the same.
data.iter().for_each(|r| assert_eq!(r[2], 0.1)); // kx
// verify that the x values are increasing
let mut last_x = data[0][0];
for r in data.iter() {
assert!(r[0] >= last_x);
last_x = r[0];
}
// verify last x value is greater than the first. this is
// because above only checked greater than or equal to
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
// verify that the y and ky values are decreasing
let mut last_y = data[0][1];
let mut last_ky = data[0][3];
for r in data.iter() {
assert!(r[1] <= last_y);
assert!(r[3] <= last_ky);
last_ky = r[3];
last_y = r[1];
}
// check that the last y and ky value is less than the first. this is
// because above only checked less than or equal to
assert!(data.iter().last().unwrap()[1] < data.iter().next().unwrap()[1]);
assert!(data.iter().last().unwrap()[3] < data.iter().next().unwrap()[3]);
// new wave (x, y, kx, ky) = (1, 1, 0.0, 0.1)
let initial_ray = RayState::new(Point::new(1.0, 1.0), WaveNumber::new(0.0, 0.1));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify that kx and ky values are the same
data.iter().for_each(|r| assert_eq!(r[2], 0.0)); // kx
data.iter().for_each(|r| assert_eq!(r[3], 0.1)); // ky
// verify that x and y values are increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[1] >= last_y);
last_x = r[0];
last_y = r[1];
}
// verify that the last x and y value is greater than the first. this is
// because above only checked greater than or equal to
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
}
#[test]
/// This test will create a current file with a gradient in the v direction
/// where v = (x / 100.0) and u = 0.0. This will create a gradient of dv/dy
/// The tests will verify two cases:
/// 1) a wave starting at (1,1,0.1,0.0) will propagate in the x direction,
/// all the kx and ky values will stay the same, but x and y values are
/// increasing
/// 2) a wave starting at (1,1,0.0,0.1) will propagate in the y direction
/// and the x and kx values will stay the same, but the y values will be
/// increasing and the ky values decreasing
fn test_simple_dvdy_gradient() {
// function that takes in x and y as f32 and returns u and v as f64.
// this only will create a gradient in the v direction
fn v_gradient_fn(_x: f32, y: f32) -> (f64, f64) {
(0.0, (y / 100.0) as f64)
}
// create the current file
let tmp_file = NamedTempFile::new().unwrap();
let tmp_path = tmp_file.into_temp_path();
create_netcdf3_current(&tmp_path, 100, 100, 1.0, 1.0, v_gradient_fn);
// open the current data
let current_data = &CartesianCurrent::open(&tmp_path, "x", "y", "u", "v");
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// wave starts at (x,y,kx,ky) = (1,1,0.1,0.0)
let initial_ray = RayState::new(Point::new(1.0, 1.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all kx and ky values are the same
data.iter().for_each(|r| assert_eq!(r[2], 0.1)); // kx
data.iter().for_each(|r| assert_eq!(r[3], 0.0)); // ky
// verify that the x and y values are increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[1] >= last_y);
last_x = r[0];
last_y = r[1];
}
// check that the last x and y value is greater than the first. this is
// because above only checked greater than or equal to (if they were
// always equal, it would have passed too)
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
// new wave (x, y, kx, ky) = (1, 1, 0.0, 0.1)
let initial_ray = RayState::new(Point::new(1.0, 1.0), WaveNumber::new(0.0, 0.1));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify that the x and kx values are the same
data.iter().for_each(|r| assert_eq!(r[2], 0.0)); // kx
// FIXME: why is the x value slowing increasing by almost f64::EPSILON each iteration?
data.iter().for_each(|r| {
assert!(
(r[0] - 1.0).abs() < 10.0 * f64::EPSILON,
"expected: 1.0, got: {}",
r[0]
)
}); // x
// verify that the y values are increasing
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[1] >= last_y);
last_y = r[1];
}
// check that the last y value is greater than the first. this is
// because above only checked greater than or equal to (if they were
// always equal, it would have passed too)
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
// verify that the ky values are decreasing
let mut last_ky = data[0][3];
for r in data.iter() {
assert!(r[3] <= last_ky);
last_ky = r[3];
}
// check that the last ky value is less than the first. this is'
// because above only checked less than or equal to
assert!(data.iter().last().unwrap()[3] < data.iter().next().unwrap()[3]);
}
#[test]
/// This test will create a current file with a gradient in the v direction
/// where v = (x / 100.0) and u = 0.0. This will create a gradient of dv/dx
/// The test will verify that:
/// 1) a wave starting at (1,1,0.1,0.0) will propagate in the x direction
/// and the kx and ky values will stay the same, but x and y values are
/// increasing
/// 2) a wave starting at (1,1,0.0,0.1) will propagate in the y direction
/// and only the ky values will stay the same. The y values will increase
/// and the x and kx values will decrease.
fn test_simple_dvdx_gradient() {
// function that takes in x and y as f32 and returns u and v as f64.
// this only will create a gradient in the v direction
fn v_gradient_fn(x: f32, _y: f32) -> (f64, f64) {
(0.0, (x / 100.0) as f64)
}
// create the current file
let tmp_file = NamedTempFile::new().unwrap();
let tmp_path = tmp_file.into_temp_path();
create_netcdf3_current(&tmp_path, 100, 100, 1.0, 1.0, v_gradient_fn);
// open the current data
let current_data = &CartesianCurrent::open(&tmp_path, "x", "y", "u", "v");
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// wave starts at (x,y,kx,ky) = (1,1,0.1,0.0)
let initial_ray = RayState::new(Point::new(1.0, 1.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify all kx and ky values are the same
data.iter().for_each(|r| assert_eq!(r[2], 0.1)); // kx
data.iter().for_each(|r| assert_eq!(r[3], 0.0)); // ky
// verify that the x and y values are increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[1] >= last_y);
last_x = r[0];
last_y = r[1];
}
// check that the last x and y value is greater than the first. this is
// because above only checked greater than or equal to (if they were
// always equal, it would have passed too)
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
// new wave (x, y, kx, ky) = (1, 1, 0.0, 0.1)
let initial_ray = RayState::new(Point::new(50.0, 1.0), WaveNumber::new(0.0, 0.1));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// verify that the ky values are the same
data.iter().for_each(|r| assert_eq!(r[3], 0.1)); // ky
// verify that the y values are increasing
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[1] >= last_y);
last_y = r[1];
}
// check that the last y value is greater than the first. this is
// because above only checked greater than or equal to (if they were
// always equal, it would have passed too)
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
// verify that the x and kx values are decreasing
let mut last_x = data[0][0];
let mut last_kx = data[0][2];
for r in data.iter() {
assert!(r[0] <= last_x);
assert!(r[2] <= last_kx);
last_kx = r[2];
last_x = r[0];
}
// check that the last x and kx value is less than the first. this is
// because above only checked less than or equal to
assert!(data.iter().last().unwrap()[0] < data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[2] < data.iter().next().unwrap()[2]);
}
#[test]
/// This test will create a current file with a gradient in the u and v
/// direction. The gradient is u = (x + y) / 100.0 and v = (x + y) / 100.0.
/// This will create a gradient in the u and v direction for all du/dx,
/// du/dy, dv/dx, dv/dy. The test will verify that the x and y values are
/// increasing and the kx and ky values are decreasing.
fn test_all_gradients() {
// function that takes in x and y as f32 and returns u and v as f64.
// this will create a gradient in the u and v direction for all du/dx,
// du/dy, dv/dx, dv/dy
fn all_gradient_fn(x: f32, y: f32) -> (f64, f64) {
(((x + y) / 100.0) as f64, ((x + y) / 100.0) as f64)
}
// create the current file
let tmp_file = NamedTempFile::new().unwrap();
let tmp_path = tmp_file.into_temp_path();
create_netcdf3_current(&tmp_path, 100, 100, 1.0, 1.0, all_gradient_fn);
// open the current data
let current_data = &CartesianCurrent::open(&tmp_path, "x", "y", "u", "v");
// deep water
let bathymetry_data = &ConstantDepth::new(1000.0);
// wave starts at (x,y,kx,ky) = (1,1,0.1,0.1)
let initial_ray = RayState::new(Point::new(1.0, 1.0), WaveNumber::new(0.1, 0.0));
let wave = SingleRay::new(bathymetry_data, current_data, &initial_ray);
// trace the wave for 10 seconds
let res = wave.trace_individual(1.0, 10.0, 1.0).unwrap();
let (_, data) = &res.get();
// Note: no values should stay the same
// verify that the x and y values are increasing
let mut last_x = data[0][0];
let mut last_y = data[0][1];
for r in data.iter() {
assert!(r[0] >= last_x);
assert!(r[1] >= last_y);
last_x = r[0];
last_y = r[1];
}
// check that the last x and y value is greater than the first. this is
// because above only checked greater than or equal to (if they were
// always equal, it would have passed too)
assert!(data.iter().last().unwrap()[0] > data.iter().next().unwrap()[0]);
assert!(data.iter().last().unwrap()[1] > data.iter().next().unwrap()[1]);
// verify that the kx and ky values are decreasing
let mut last_kx = data[0][2];
let mut last_ky = data[0][3];
for r in data.iter() {
assert!(r[2] <= last_kx);
assert!(r[3] <= last_ky);
last_kx = r[2];
last_ky = r[3];
}
// check that the last kx and ky value is less than the first. this is
// because above only checked less than or equal to
assert!(data.iter().last().unwrap()[2] < data.iter().next().unwrap()[2]);
assert!(data.iter().last().unwrap()[3] < data.iter().next().unwrap()[3]);
}
}
#[cfg(test)]
mod test_many_waves {
use crate::{
bathymetry::{
BathymetryData, ConstantSlope,
},
current::ConstantCurrent,
};
use crate::datatype::{Point, RayState, WaveNumber};
use super::ManyRays;
#[test]
/// check that output with test values from single wave works
fn test_many_waves_ok() {
let bathymetry_data: &dyn BathymetryData = &ConstantSlope::builder().build().unwrap();
let current_data = &ConstantCurrent::new(0.0, 0.0);
let initial_waves = vec![
// (x, y, kx, ky)
RayState::new(Point::new(10.0, 10.0), WaveNumber::new(1.0, 0.0)),
RayState::new(Point::new(10.0, 20.0), WaveNumber::new(1.0, 0.0)),
RayState::new(Point::new(10.0, 30.0), WaveNumber::new(1.0, 0.0)),
RayState::new(Point::new(10.0, 40.0), WaveNumber::new(1.0, 0.0)),
RayState::new(Point::new(10.0, 50.0), WaveNumber::new(1.0, 0.0)),
RayState::new(Point::new(10.0, 60.0), WaveNumber::new(1.0, 0.0)),
RayState::new(Point::new(10.0, 70.0), WaveNumber::new(1.0, 0.0)),
RayState::new(Point::new(10.0, 80.0), WaveNumber::new(1.0, 0.0)),
RayState::new(Point::new(10.0, 90.0), WaveNumber::new(1.0, 0.0)),
];
let waves = ManyRays::new(bathymetry_data, current_data, &initial_waves);
let results = waves.trace_many(0.0, 100000.0, 1.0);
for res in results {
assert!(res.is_some())
}
// TODO: test to verify size of initial waves and result (number of rays) same
// TODO: test to verify each instance of many ray against single ray
//
}
}