|
| 1 | +model_type = "KWCcomplex" |
| 2 | + |
| 3 | +end_time = 1500. // required |
| 4 | +max_timesteps = 1600 // optional, default is INT_MAX |
| 5 | + |
| 6 | +Verbosity { // optional, block |
| 7 | + level = 1 // optional, default=1 |
| 8 | +} |
| 9 | + |
| 10 | +Visit { |
| 11 | + interval = 15. |
| 12 | + interval_type = "time" |
| 13 | +} |
| 14 | + |
| 15 | +TimerManager { |
| 16 | + timer_list = "solv::*::*","xfer::*::*","AMPE::*::*" |
| 17 | + print_threshold = 0.0 |
| 18 | +} |
| 19 | + |
| 20 | +ModelParameters { |
| 21 | + |
| 22 | + epsilon_anisotropy = 0.05 |
| 23 | + |
| 24 | + H_parameter = 0.0 // we need quaternions to define anisotropy |
| 25 | + |
| 26 | + epsilon_phi = 2. |
| 27 | + |
| 28 | + phi_mobility = 0.25 |
| 29 | + |
| 30 | + orient_mobility = 1. |
| 31 | + epsilon_orient = 1. |
| 32 | + |
| 33 | + Temperature{ |
| 34 | + type = "heat" |
| 35 | + equation_type = "unsteady" |
| 36 | + meltingT = 1. |
| 37 | + cp{ |
| 38 | + SpeciesA{ |
| 39 | + a = 17.020371256848037 // to get L/cp =1. |
| 40 | + } |
| 41 | + } |
| 42 | + thermal_diffusivity = 10.e-8 // cm^2/s |
| 43 | + latent_heat = 17.020371256848037 // 32*lambda/30. |
| 44 | + } |
| 45 | + |
| 46 | + // free energy parameters: |
| 47 | + // f(phi) = scale_energy_well*g(phi) |
| 48 | + // where g is a double well potential |
| 49 | + phi_well_scale = 0.25 |
| 50 | + phi_well_func_type = "double" |
| 51 | + |
| 52 | + phi_interp_func_type ="p" |
| 53 | + |
| 54 | + FreeEnergyModel{ |
| 55 | + type = "linear" |
| 56 | + } |
| 57 | + |
| 58 | + molar_volume = 1.e-6 // used to convert cp and latent heat into (pJ/(mu m)^3*K) |
| 59 | + |
| 60 | + BoundaryConditions { |
| 61 | + Phase{ |
| 62 | + boundary_0 = "slope", "0" |
| 63 | + boundary_1 = "slope", "0" |
| 64 | + boundary_2 = "slope", "0" |
| 65 | + boundary_3 = "slope", "0" |
| 66 | + } |
| 67 | + Temperature{ |
| 68 | + boundary_0 = "slope", "0" |
| 69 | + boundary_1 = "slope", "0" |
| 70 | + boundary_2 = "slope", "0" |
| 71 | + boundary_3 = "slope", "0" |
| 72 | + } |
| 73 | + Quat{ |
| 74 | + boundary_0 = "slope", "0" |
| 75 | + boundary_1 = "slope", "0" |
| 76 | + boundary_2 = "slope", "0" |
| 77 | + boundary_3 = "slope", "0" |
| 78 | + } |
| 79 | + } |
| 80 | +} |
| 81 | + |
| 82 | +ScalarDiagnostics { |
| 83 | + interval = 15. |
| 84 | + interval_type = "time" |
| 85 | +} |
| 86 | + |
| 87 | +Integrator { |
| 88 | + atol = 1.e-4 |
| 89 | +} |
| 90 | + |
| 91 | +InitialConditions { // required block |
| 92 | + filename = "1440.nc" |
| 93 | + init_t = 0.7 // initial temperature |
| 94 | + init_q = 1., 0. |
| 95 | +} |
| 96 | + |
| 97 | +Geometry{ |
| 98 | + periodic_dimension = 0, 0 |
| 99 | + coarsest_level_resolution = 1440, 1440 |
| 100 | + x_lo = 0., 0. // lower end of computational domain. |
| 101 | + x_up = 960., 960. // upper end of computational domain. |
| 102 | +} |
0 commit comments