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

nit-propagating-skewnormal (609B)


      1 no_seed = 1
      2 out_grid = (200,40,40)
      3 
      4 model = MA
      5 ma_model = {
      6 	acf = {
      7 		func = propagating_wave
      8 		grid = (20,10,10) : (10,5,5)
      9 	}
     10 	order = (20,10,10)
     11 	algorithm = fixed_point_iteration
     12 	max_iterations = 1000
     13 	eps = 1e-5
     14 	min_var_wn = 1e-6
     15 }
     16 verification = manual
     17 velocity_potential_solver = high_amplitude {
     18 	wnmax = from (0,0) to (0,0.25) npoints (2,2)
     19 	depth = 12
     20 	domain = from (10,-12) to (10,3) npoints (1,128)
     21 }
     22 transform = nit {
     23 	distribution = skew_normal {
     24 		mean=0
     25 		stdev=1
     26 		alpha=1
     27 	}
     28 	interpolation_order = 12
     29 	interpolation_nodes = 100
     30 	gram_charlier_order = 20
     31 	nsigma = 5
     32 	acf_interval = 10
     33 }