Changeset 26840 for issm/trunk-jpl/src/m/classes/fourierlove.m
- Timestamp:
- 01/30/22 15:46:47 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/fourierlove.m
r26800 r26840 6 6 classdef fourierlove 7 7 properties (SetAccess=public) 8 nfreq 9 frequencies 10 sh_nmax 11 sh_nmin 12 g0 13 r0 14 mu0 15 Gravitational_Constant 16 chandler_wobble 17 allow_layer_deletion 18 underflow_tol 19 pw_threshold 20 integration_steps_per_layer 21 istemporal 22 n_temporal_iterations 23 time 24 love_kernels 25 forcing_type 26 inner_core_boundary 27 core_mantle_boundary 28 complex_computation 8 nfreq = 0; 9 frequencies = 0; 10 sh_nmax = 0; 11 sh_nmin = 0; 12 g0 = 0; 13 r0 = 0; 14 mu0 = 0; 15 Gravitational_Constant = 0; 16 chandler_wobble = 0; 17 allow_layer_deletion = 0; 18 underflow_tol = 0; 19 pw_threshold = 0; 20 integration_steps_per_layer = 0; 21 istemporal = 0; 22 n_temporal_iterations = 0; 23 time = 0; 24 love_kernels = 0; 25 forcing_type = 0; 26 inner_core_boundary = 0; 27 core_mantle_boundary = 0; 28 complex_computation = 0; 29 29 30 30 end … … 180 180 if self.time(i)==0 181 181 self.frequencies((i-1)*2*self.n_temporal_iterations +j) =0; % convention to avoid marshalling infinite numbers 182 else 182 else 183 183 self.frequencies((i-1)*2*self.n_temporal_iterations +j) = j*log(2)/self.time(i)/2/pi; 184 184 end
Note:
See TracChangeset
for help on using the changeset viewer.