arma-thesis

Simulation modelling of irregular waves for marine object dynamics programmes
git clone https://git.igankevich.com/arma-thesis.git
Log | Files | Refs | LICENSE

propagating_wave.arma (378B)


      1 out_grid = (200,40,40)
      2 
      3 model = MA
      4 ma_model = {
      5 	acf = {
      6 		func = propagating_wave
      7 		grid = (20,10,10) : (10,5,5)
      8 	}
      9 	algorithm = fixed_point_iteration
     10 	order = (20,10,10)
     11     max_iterations = 1000
     12     eps = 1e-5
     13     min_var_wn = 1e-6
     14 }
     15 verification = manual
     16 velocity_potential_solver = linear {
     17 	wnmax = (0,0.25)
     18 	depth = 12
     19 	domain = from (10,-12) to (10,4) npoints (1,128)
     20 }