diff --git a/examples/2D_mibm_shock_cylinder/case.py b/examples/2D_mibm_shock_cylinder/case.py index 0ca5cbb635..69aca0cc9b 100644 --- a/examples/2D_mibm_shock_cylinder/case.py +++ b/examples/2D_mibm_shock_cylinder/case.py @@ -87,6 +87,7 @@ "precision": 2, "prim_vars_wrt": "T", "E_wrt": "T", + "ib_state_wrt": "T", "parallel_io": "T", # Patch: Constant Tube filled with air # Specify the cylindrical air tube grid geometry @@ -128,7 +129,7 @@ "patch_ib(1)%angular_vel(1)": 0.0, # x-axis rotational velocity in radians per second "patch_ib(1)%angular_vel(2)": 0.0, # y-axis rotation "patch_ib(1)%angular_vel(3)": 0.0, # z-axis rotation - "patch_ib(1)%mass": 0.5, # z-axis rotation + "patch_ib(1)%mass": 0.25, # z-axis rotation # Fluids Physical Parameters "fluid_pp(1)%gamma": 1.0e00 / (gam_a - 1.0e00), # 2.50(Not 1.40) "fluid_pp(1)%pi_inf": 0, diff --git a/src/post_process/m_data_output.fpp b/src/post_process/m_data_output.fpp index 3e7057ea09..aece31ff8d 100644 --- a/src/post_process/m_data_output.fpp +++ b/src/post_process/m_data_output.fpp @@ -19,8 +19,8 @@ module m_data_output & s_open_intf_data_file, s_open_energy_data_file, s_write_grid_to_formatted_database_file, & & s_write_variable_to_formatted_database_file, s_write_lag_bubbles_results_to_text, & & s_write_lag_bubbles_to_formatted_database_file, s_write_ib_state_files, s_write_intf_data_file, & - & s_write_energy_data_file, s_close_formatted_database_file, s_close_intf_data_file, s_close_energy_data_file, & - & s_finalize_data_output_module + & s_write_energy_data_file, s_write_ib_bodies_to_formatted_database_file, s_close_formatted_database_file, & + & s_close_intf_data_file, s_close_energy_data_file, s_finalize_data_output_module ! Include Silo-HDF5 interface library include 'silo_f9x.inc' @@ -1341,6 +1341,137 @@ contains end subroutine s_write_energy_data_file + !> Read IB state and write a Silo point mesh with per-body scalar fields. + impure subroutine s_write_ib_bodies_to_formatted_database_file(t_step) + + integer, intent(in) :: t_step + character(len=len_trim(case_dir) + 3*name_len) :: file_loc + +#ifdef MFC_MPI + integer, parameter :: NFIELDS_PER_IB = 20 + real(wp) :: ib_buf(NFIELDS_PER_IB) + real(wp), dimension(:,:), allocatable :: ib_data + logical :: file_exist + character(LEN=4*name_len), dimension(num_procs) :: meshnames + integer, dimension(num_procs) :: meshtypes + integer :: i, ios, file_unit + integer :: ierr, nBodies + real(wp), dimension(:), allocatable :: px, py, pz + real(wp), dimension(:), allocatable :: force_x, force_y, force_z + real(wp), dimension(:), allocatable :: torque_x, torque_y, torque_z + real(wp), dimension(:), allocatable :: vel_x, vel_y, vel_z + real(wp), dimension(:), allocatable :: omega_x, omega_y, omega_z + real(wp), dimension(:), allocatable :: angle_x, angle_y, angle_z + real(wp), dimension(:), allocatable :: ib_diameter + + ! Build path to per-timestep IB state file + write (file_loc, '(A,I0,A)') '/restart_data/ib_state_', t_step, '.dat' + file_loc = trim(case_dir) // trim(file_loc) + + inquire (FILE=trim(file_loc), EXIST=file_exist) + if (.not. file_exist) then + call s_mpi_abort('Restart file ' // trim(file_loc) // ' does not exist!') + end if + + nBodies = num_ibs + + if (nBodies > 0) then + allocate (ib_data(nBodies, NFIELDS_PER_IB)) + allocate (px(nBodies), py(nBodies), pz(nBodies)) + allocate (force_x(nBodies), force_y(nBodies), force_z(nBodies)) + allocate (torque_x(nBodies), torque_y(nBodies), torque_z(nBodies)) + allocate (vel_x(nBodies), vel_y(nBodies), vel_z(nBodies)) + allocate (omega_x(nBodies), omega_y(nBodies), omega_z(nBodies)) + allocate (angle_x(nBodies), angle_y(nBodies), angle_z(nBodies)) + allocate (ib_diameter(nBodies)) + + if (proc_rank == 0) then + open (newunit=file_unit, file=trim(file_loc), form='unformatted', access='stream', status='old', iostat=ios) + if (ios /= 0) call s_mpi_abort('Cannot open IB state file: ' // trim(file_loc)) + + do i = 1, nBodies + read (file_unit, iostat=ios) ib_buf + if (ios /= 0) call s_mpi_abort('Error reading IB state file') + ib_data(i,:) = ib_buf(:) + end do + + close (file_unit) + end if + + call MPI_BCAST(ib_data, nBodies*NFIELDS_PER_IB, mpi_p, 0, MPI_COMM_WORLD, ierr) + + do i = 1, nBodies + force_x(i) = ib_data(i, 2); force_y(i) = ib_data(i, 3); force_z(i) = ib_data(i, 4) + torque_x(i) = ib_data(i, 5); torque_y(i) = ib_data(i, 6); torque_z(i) = ib_data(i, 7) + vel_x(i) = ib_data(i, 8); vel_y(i) = ib_data(i, 9); vel_z(i) = ib_data(i, 10) + omega_x(i) = ib_data(i, 11); omega_y(i) = ib_data(i, 12); omega_z(i) = ib_data(i, 13) + angle_x(i) = ib_data(i, 14); angle_y(i) = ib_data(i, 15); angle_z(i) = ib_data(i, 16) + px(i) = ib_data(i, 17); py(i) = ib_data(i, 18); pz(i) = ib_data(i, 19) + ib_diameter(i) = ib_data(i, 20)*2.0_wp + end do + + if (proc_rank == 0) then + do i = 1, num_procs + write (meshnames(i), '(A,I0,A,I0,A)') '../p', i - 1, '/', t_step, '.silo:ib_bodies' + meshtypes(i) = DB_POINTMESH + end do + err = DBSET2DSTRLEN(len(meshnames(1))) + err = DBPUTMMESH(dbroot, 'ib_bodies', 16, num_procs, meshnames, len_trim(meshnames), meshtypes, DB_F77NULL, ierr) + end if + + err = DBPUTPM(dbfile, 'ib_bodies', 9, 3, px, py, pz, nBodies, DB_DOUBLE, DB_F77NULL, ierr) + + call s_write_ib_variable('ib_force_x', t_step, force_x, nBodies) + call s_write_ib_variable('ib_force_y', t_step, force_y, nBodies) + call s_write_ib_variable('ib_force_z', t_step, force_z, nBodies) + call s_write_ib_variable('ib_torque_x', t_step, torque_x, nBodies) + call s_write_ib_variable('ib_torque_y', t_step, torque_y, nBodies) + call s_write_ib_variable('ib_torque_z', t_step, torque_z, nBodies) + call s_write_ib_variable('ib_vel_x', t_step, vel_x, nBodies) + call s_write_ib_variable('ib_vel_y', t_step, vel_y, nBodies) + call s_write_ib_variable('ib_vel_z', t_step, vel_z, nBodies) + call s_write_ib_variable('ib_omega_x', t_step, omega_x, nBodies) + call s_write_ib_variable('ib_omega_y', t_step, omega_y, nBodies) + call s_write_ib_variable('ib_omega_z', t_step, omega_z, nBodies) + call s_write_ib_variable('ib_angle_x', t_step, angle_x, nBodies) + call s_write_ib_variable('ib_angle_y', t_step, angle_y, nBodies) + call s_write_ib_variable('ib_angle_z', t_step, angle_z, nBodies) + call s_write_ib_variable('ib_diameter', t_step, ib_diameter, nBodies) + + deallocate (ib_data, px, py, pz, force_x, force_y, force_z) + deallocate (torque_x, torque_y, torque_z, vel_x, vel_y, vel_z) + deallocate (omega_x, omega_y, omega_z, angle_x, angle_y, angle_z) + deallocate (ib_diameter) + end if +#endif + + end subroutine s_write_ib_bodies_to_formatted_database_file + + !> Write a single IB point-variable to the Silo database slave and master files. + subroutine s_write_ib_variable(varname, t_step, data, nBodies) + + character(len=*), intent(in) :: varname + integer, intent(in) :: t_step + real(wp), dimension(:), intent(in) :: data + integer, intent(in) :: nBodies + character(len=4*name_len), dimension(num_procs) :: var_names + integer, dimension(num_procs) :: var_types + integer :: ierr, i + + if (proc_rank == 0) then + do i = 1, num_procs + write (var_names(i), '(A,I0,A,I0,A)') '../p', i - 1, '/', t_step, '.silo:' // trim(varname) + var_types(i) = DB_POINTVAR + end do + err = DBSET2DSTRLEN(len(var_names(1))) + err = DBPUTMVAR(dbroot, trim(varname), len_trim(varname), num_procs, var_names, len_trim(var_names), var_types, & + & DB_F77NULL, ierr) + end if + + err = DBPUTPV1(dbfile, trim(varname), len_trim(varname), 'ib_bodies', 9, data, nBodies, DB_DOUBLE, DB_F77NULL, ierr) + + end subroutine s_write_ib_variable + !> Close the formatted database slave file and, for the root process, the master file. impure subroutine s_close_formatted_database_file() diff --git a/src/post_process/m_start_up.fpp b/src/post_process/m_start_up.fpp index 48fe35abc1..b54e160fa3 100644 --- a/src/post_process/m_start_up.fpp +++ b/src/post_process/m_start_up.fpp @@ -746,6 +746,8 @@ contains if (lag_db_wrt) call s_write_lag_bubbles_to_formatted_database_file(t_step) ! silo file output end if + if (ib_state_wrt) call s_write_ib_bodies_to_formatted_database_file(t_step) + if (sim_data .and. proc_rank == 0) then call s_close_intf_data_file() call s_close_energy_data_file() diff --git a/src/post_process/p_main.fpp b/src/post_process/p_main.fpp index 64da30aa6b..20883a42a8 100644 --- a/src/post_process/p_main.fpp +++ b/src/post_process/p_main.fpp @@ -80,10 +80,6 @@ program p_main end do ! END: Time-Marching Loop - if (proc_rank == 0 .and. ib_state_wrt) then - call s_write_ib_state_files() - end if - close (11) call s_finalize_modules() diff --git a/src/simulation/m_data_output.fpp b/src/simulation/m_data_output.fpp index d0b0c895c2..ca8a6c0677 100644 --- a/src/simulation/m_data_output.fpp +++ b/src/simulation/m_data_output.fpp @@ -24,15 +24,13 @@ module m_data_output private public :: s_initialize_data_output_module, s_open_run_time_information_file, s_open_com_files, s_open_probe_files, & - & s_open_ib_state_file, s_write_run_time_information, s_write_data_files, s_write_serial_data_files, & - & s_write_parallel_data_files, s_write_ib_data_file, s_write_com_files, s_write_probe_files, s_write_ib_state_file, & - & s_close_run_time_information_file, s_close_com_files, s_close_probe_files, s_close_ib_state_file, & - & s_finalize_data_output_module - - integer :: ib_state_unit = -1 !< I/O unit for IB state binary file - real(wp), allocatable, dimension(:,:,:) :: icfl_sf !< ICFL stability criterion - real(wp), allocatable, dimension(:,:,:) :: vcfl_sf !< VCFL stability criterion - real(wp), allocatable, dimension(:,:,:) :: Rc_sf !< Rc stability criterion + & s_write_run_time_information, s_write_data_files, s_write_serial_data_files, s_write_parallel_data_files, & + & s_write_ib_data_file, s_write_com_files, s_write_probe_files, s_write_ib_state_file, s_close_run_time_information_file, & + & s_close_com_files, s_close_probe_files, s_finalize_data_output_module + + real(wp), allocatable, dimension(:,:,:) :: icfl_sf !< ICFL stability criterion + real(wp), allocatable, dimension(:,:,:) :: vcfl_sf !< VCFL stability criterion + real(wp), allocatable, dimension(:,:,:) :: Rc_sf !< Rc stability criterion real(wp), public, allocatable, dimension(:,:) :: c_mass $:GPU_DECLARE(create='[icfl_sf, vcfl_sf, Rc_sf, c_mass]') @@ -161,26 +159,6 @@ contains end subroutine s_open_probe_files - !> Open the immersed boundary state file for binary output - impure subroutine s_open_ib_state_file - - character(len=path_len + 2*name_len) :: file_loc - integer :: ios - - call s_create_directory(trim(case_dir) // '/restart_data') - write (file_loc, '(A)') 'ib_state.dat' - file_loc = trim(case_dir) // '/restart_data/' // trim(file_loc) - if (t_step_start > 0) then - ! On restart, append to existing file to preserve history - open (newunit=ib_state_unit, file=trim(file_loc), form='unformatted', access='stream', status='old', & - & position='append', iostat=ios) - else - open (newunit=ib_state_unit, file=trim(file_loc), form='unformatted', access='stream', status='replace', iostat=ios) - end if - if (ios /= 0) call s_mpi_abort('Cannot open IB state output file: ' // trim(file_loc)) - - end subroutine s_open_ib_state_file - !> Write stability criteria extrema to the run-time information file at the given time step impure subroutine s_write_run_time_information(q_prim_vf, t_step) @@ -918,16 +896,125 @@ contains end subroutine s_write_ib_data_file - !> @brief Writes IB state records to restart_data/ib_state.dat. Must be called only on rank 0. - impure subroutine s_write_ib_state_file() + !> Writes the IB state information out to file + subroutine s_write_parallel_ib_state(t_step) - integer :: i + integer, intent(in) :: t_step + +#ifdef MFC_MPI + character(LEN=path_len + 2*name_len) :: file_loc + integer(kind=MPI_OFFSET_KIND) :: disp + integer(kind=MPI_OFFSET_KIND) :: WP_MOK + integer :: ifile, ierr + integer, dimension(MPI_STATUS_SIZE) :: status + logical :: file_exist + integer :: i + integer, parameter :: NFIELDS_PER_IB = 20 + real(wp) :: ib_buf(NFIELDS_PER_IB) + + ! Partition IBs across ranks round-robin style + integer :: ib_start, ib_end, nibs_per_rank, remainder + + WP_MOK = int(storage_size(0._wp)/8, MPI_OFFSET_KIND) + + if (proc_rank == 0) then + call s_create_directory(trim(case_dir) // '/restart_data') + end if + call s_mpi_barrier() + + ! Divide num_ibs across num_procs + nibs_per_rank = num_ibs/num_procs + remainder = mod(num_ibs, num_procs) + + ! Ranks < remainder get one extra IB + if (proc_rank < remainder) then + ib_start = proc_rank*(nibs_per_rank + 1) + 1 + ib_end = ib_start + nibs_per_rank ! nibs_per_rank + 1 total + else + ib_start = remainder*(nibs_per_rank + 1) + (proc_rank - remainder)*nibs_per_rank + 1 + ib_end = ib_start + nibs_per_rank - 1 + end if + + write (file_loc, '(A,I0,A)') '/restart_data/ib_state_', t_step, '.dat' + file_loc = trim(case_dir) // trim(file_loc) + + inquire (FILE=trim(file_loc), EXIST=file_exist) + if (file_exist .and. proc_rank == 0) then + call MPI_FILE_DELETE(file_loc, mpi_info_int, ierr) + end if + call s_mpi_barrier() + + call MPI_FILE_OPEN(MPI_COMM_WORLD, file_loc, ior(MPI_MODE_WRONLY, MPI_MODE_CREATE), mpi_info_int, ifile, ierr) + + do i = ib_start, ib_end + ib_buf(1) = mytime + ib_buf(2:4) = patch_ib(i)%force(1:3) + ib_buf(5:7) = patch_ib(i)%torque(1:3) + ib_buf(8:10) = patch_ib(i)%vel(1:3) + ib_buf(11:13) = patch_ib(i)%angular_vel(1:3) + ib_buf(14:16) = patch_ib(i)%angles(1:3) + ib_buf(17) = patch_ib(i)%x_centroid + ib_buf(18) = patch_ib(i)%y_centroid + ib_buf(19) = patch_ib(i)%z_centroid + ib_buf(20) = patch_ib(i)%radius + + ! Global IB index (i) determines position in file + disp = int(i - 1, MPI_OFFSET_KIND)*int(NFIELDS_PER_IB, MPI_OFFSET_KIND)*WP_MOK + + call MPI_FILE_WRITE_AT(ifile, disp, ib_buf, NFIELDS_PER_IB, mpi_p, status, ierr) + end do + + call MPI_FILE_CLOSE(ifile, ierr) +#endif + + end subroutine s_write_parallel_ib_state + + !> Write IB state data to a per-timestep serial (unformatted) file + subroutine s_write_serial_ib_state(t_step) + + integer, intent(in) :: t_step + character(LEN=path_len + 2*name_len) :: file_loc + integer :: i, ios, file_unit + integer, parameter :: NFIELDS_PER_IB = 20 + real(wp) :: ib_buf(NFIELDS_PER_IB) + + call s_create_directory(trim(case_dir) // '/restart_data') + + write (file_loc, '(A,I0,A)') '/restart_data/ib_state_', t_step, '.dat' + file_loc = trim(case_dir) // trim(file_loc) + + open (newunit=file_unit, file=trim(file_loc), form='unformatted', access='stream', status='replace', iostat=ios) + if (ios /= 0) call s_mpi_abort('Cannot open IB state output file: ' // trim(file_loc)) do i = 1, num_ibs - write (ib_state_unit) mytime, i, patch_ib(i)%force, patch_ib(i)%torque, patch_ib(i)%vel, patch_ib(i)%angular_vel, & - & patch_ib(i)%angles, patch_ib(i)%x_centroid, patch_ib(i)%y_centroid, patch_ib(i)%z_centroid + ib_buf(1) = mytime + ib_buf(2:4) = patch_ib(i)%force(1:3) + ib_buf(5:7) = patch_ib(i)%torque(1:3) + ib_buf(8:10) = patch_ib(i)%vel(1:3) + ib_buf(11:13) = patch_ib(i)%angular_vel(1:3) + ib_buf(14:16) = patch_ib(i)%angles(1:3) + ib_buf(17) = patch_ib(i)%x_centroid + ib_buf(18) = patch_ib(i)%y_centroid + ib_buf(19) = patch_ib(i)%z_centroid + ib_buf(20) = patch_ib(i)%radius + + write (file_unit) ib_buf end do - flush (ib_state_unit) + + close (file_unit) + + end subroutine s_write_serial_ib_state + + !> @brief Writes IB state records to restart_data/ib_state.dat. Must be called only on rank 0. + impure subroutine s_write_ib_state_file(time_step) + + integer, intent(in) :: time_step + + if (parallel_io) then + call s_write_parallel_ib_state(time_step) + else + call s_write_serial_ib_state(time_step) + end if end subroutine s_write_ib_state_file @@ -1543,13 +1630,6 @@ contains end subroutine s_close_probe_files - !> Close the immersed boundary state file - impure subroutine s_close_ib_state_file - - close (ib_state_unit) - - end subroutine s_close_ib_state_file - !> Initialize the data output module impure subroutine s_initialize_data_output_module diff --git a/src/simulation/m_start_up.fpp b/src/simulation/m_start_up.fpp index cf7a8a6ddd..9ff90fbdd7 100644 --- a/src/simulation/m_start_up.fpp +++ b/src/simulation/m_start_up.fpp @@ -818,7 +818,7 @@ contains end if ! Write IB kinematic state for restart - if (ib .and. proc_rank == 0) call s_write_ib_state_file() + if (ib) call s_write_ib_state_file(t_step) call nvtxEndRange call cpu_time(finish) @@ -914,9 +914,12 @@ contains if (model_eqns == 3) call s_initialize_internal_energy_equations(q_cons_ts(1)%vf) if (ib) then - if (t_step_start /= 0) call s_read_ib_restart_data() + if (t_step_start > 0) call s_read_ib_restart_data(t_step_start) call s_ibm_setup() - call s_write_ib_data_file(0) + if (t_step_start == 0) then + call s_write_ib_data_file(0) + call s_write_ib_state_file(0) + end if end if if (bodyForces) call s_initialize_body_forces_module() if (acoustic_source) call s_precalculate_acoustic_spatial_sources() @@ -1135,38 +1138,37 @@ contains !> @brief Reads IB kinematic state from restart_data/ib_state.dat on restart. Rank 0 reads the last num_ibs records and !! broadcasts to all ranks. Overwrites patch_ib vel, angular_vel, angles, and centroid. - impure subroutine s_read_ib_restart_data() + impure subroutine s_read_ib_restart_data(t_step) + integer, intent(in) :: t_step character(len=path_len + 2*name_len) :: file_loc - integer :: i, ios, file_unit, ib_id, ierr - real(wp) :: time_read - real(wp), dimension(3) :: force_read, torque_read - real(wp), dimension(3) :: vel_read, angular_vel_read, angles_read - real(wp) :: xc_read, yc_read, zc_read + integer :: i, ios, file_unit, ierr + integer, parameter :: NFIELDS_PER_IB = 20 + real(wp) :: ib_buf(NFIELDS_PER_IB) logical :: file_exist + write (file_loc, '(A,I0,A)') '/restart_data/ib_state_', t_step, '.dat' + file_loc = trim(case_dir) // trim(file_loc) + if (proc_rank == 0) then - file_loc = trim(case_dir) // '/restart_data/ib_state.dat' inquire (FILE=trim(file_loc), EXIST=file_exist) - print *, "IB Restart File Exists: ", file_exist - if (file_exist) then - open (newunit=file_unit, file=trim(file_loc), form='unformatted', access='stream', status='old', iostat=ios) - print *, "iostat ", ios - else + if (.not. file_exist) then call s_mpi_abort('Cannot open IB state file for restart: ' // trim(file_loc)) end if - ! Read all records; the last num_ibs records are the final state - do - read (file_unit, iostat=ios) time_read, ib_id, force_read, torque_read, vel_read, angular_vel_read, angles_read, & - & xc_read, yc_read, zc_read - if (ios /= 0) exit - patch_ib(ib_id)%vel = vel_read - patch_ib(ib_id)%angular_vel = angular_vel_read - patch_ib(ib_id)%angles = angles_read - patch_ib(ib_id)%x_centroid = xc_read - patch_ib(ib_id)%y_centroid = yc_read - patch_ib(ib_id)%z_centroid = zc_read + open (newunit=file_unit, file=trim(file_loc), form='unformatted', access='stream', status='old', iostat=ios) + if (ios /= 0) call s_mpi_abort('Error opening IB state restart file: ' // trim(file_loc)) + + do i = 1, num_ibs + read (file_unit, iostat=ios) ib_buf + if (ios /= 0) call s_mpi_abort('Error reading IB state restart file') + + patch_ib(i)%vel = ib_buf(8:10) + patch_ib(i)%angular_vel = ib_buf(11:13) + patch_ib(i)%angles = ib_buf(14:16) + patch_ib(i)%x_centroid = ib_buf(17) + patch_ib(i)%y_centroid = ib_buf(18) + patch_ib(i)%z_centroid = ib_buf(19) end do close (file_unit) diff --git a/src/simulation/m_time_steppers.fpp b/src/simulation/m_time_steppers.fpp index 84a416c930..88d27cb975 100644 --- a/src/simulation/m_time_steppers.fpp +++ b/src/simulation/m_time_steppers.fpp @@ -394,11 +394,6 @@ contains call s_open_run_time_information_file() end if - ! Opening the ib state data file (used for restart and diagnostics) - if (proc_rank == 0 .and. ib) then - call s_open_ib_state_file() - end if - if (cfl_dt) then @:ALLOCATE(max_dt(0:m, 0:n, 0:p)) end if @@ -973,11 +968,6 @@ contains call s_close_run_time_information_file() end if - ! Closing the IB state data file - if (proc_rank == 0 .and. ib) then - call s_close_ib_state_file() - end if - end subroutine s_finalize_time_steppers_module end module m_time_steppers diff --git a/tests/7FA04E95/golden-metadata.txt b/tests/7FA04E95/golden-metadata.txt index 5464c03831..f652d6d036 100644 --- a/tests/7FA04E95/golden-metadata.txt +++ b/tests/7FA04E95/golden-metadata.txt @@ -1,12 +1,12 @@ -This file was created on 2026-01-10 09:30:46.874399. +This file was created on 2026-04-20 14:32:49.351215. mfc.sh: - Invocation: test --generate -o 7FA04E95 - Lock: mpi=Yes & gpu=No & debug=No & gcov=No & unified=No & single=No & mixed=No & fastmath=No - Git: e262ef9387a432cc58ead795fa521c27e17e29be on viscous-stress-and-ellipse-ib (dirty) + Invocation: test --only 7FA04E95 --generate + Lock: mpi=Yes & gpu=No & debug=No & reldebug=No & gcov=No & unified=No & single=No & mixed=No & fastmath=No + Git: 100dc020fe77f59473f6a4624ba2d77064a81ee7 on parallel-state-write (dirty) -simulation: +post_process: CMake Configuration: @@ -16,8 +16,8 @@ simulation: Fortran : GNU v13.3.0 (/usr/bin/gfortran) PRE_PROCESS : OFF - SIMULATION : ON - POST_PROCESS : OFF + SIMULATION : OFF + POST_PROCESS : ON SYSCHECK : OFF DOCUMENTATION : OFF ALL : OFF @@ -74,7 +74,7 @@ pre_process: OMPI_CXX : OMPI_FC : -post_process: +simulation: CMake Configuration: @@ -84,8 +84,8 @@ post_process: Fortran : GNU v13.3.0 (/usr/bin/gfortran) PRE_PROCESS : OFF - SIMULATION : OFF - POST_PROCESS : ON + SIMULATION : ON + POST_PROCESS : OFF SYSCHECK : OFF DOCUMENTATION : OFF ALL : OFF @@ -160,7 +160,7 @@ CPU: Core(s) per socket: 12 Socket(s): 1 Stepping: 2 - CPU(s) scaling MHz: 29% + CPU(s) scaling MHz: 36% CPU max MHz: 5100.0000 CPU min MHz: 800.0000 BogoMIPS: 7219.20 @@ -180,6 +180,7 @@ CPU: Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected + Vulnerability Old microcode: Not affected Vulnerability Reg file data sampling: Mitigation; Clear Register File Vulnerability Retbleed: Not affected Vulnerability Spec rstack overflow: Not affected diff --git a/tests/7FA04E95/golden.txt b/tests/7FA04E95/golden.txt index 0a3204543f..ab74300600 100644 --- a/tests/7FA04E95/golden.txt +++ b/tests/7FA04E95/golden.txt @@ -1,10 +1,10 @@ D/cons.1.00.000000.dat 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 2.6069 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 -D/cons.1.00.000050.dat 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495381 2.60690283494451 2.60690283494451 2.60690283495381 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690178 2.60704515686088 2.60704515589689 2.60704515589689 2.60704515686088 2.60704515690178 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714554 2.6083935171458 2.60839351713272 2.60839351587007 2.60839348352436 2.60839348352436 2.60839351587007 2.60839351713272 2.6083935171458 2.60839351714554 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782675 1.81733171782697 1.81733171783446 1.81733171842423 1.81733174507932 1.81733256336721 1.81733256336721 1.81733174507932 1.81733171842423 1.81733171783446 1.81733171782697 1.81733171782675 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910931 1.42165257910792 1.42165257907115 1.42165257945289 1.42165262941556 1.42165514421912 1.42165514421912 1.42165262941556 1.42165257945289 1.42165257907115 1.42165257910792 1.42165257910931 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636875 1.40060529636777 1.40060529628739 1.40060529052652 1.40060515186962 1.40059965348549 1.40059965348549 1.40060515186962 1.40060529052652 1.40060529628739 1.40060529636777 1.40060529636875 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.40001254353257 1.40001254354282 1.40001254402326 1.4000125542067 1.40001261487162 1.40002165080181 1.40002165080181 1.40001261487162 1.4000125542067 1.40001254402326 1.40001254354282 1.40001254353257 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079547 1.40000021079223 1.40000021200116 1.4000003212415 1.40001085191248 1.4004648380843 1.4004648380843 1.40001085191248 1.4000003212415 1.40000021200116 1.40000021079223 1.40000021079547 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296245 1.4000000029624 1.40000000243307 1.39999998371969 1.40000008710515 1.40000924860148 1.41160785392326 1.41160785392326 1.40000924860148 1.40000008710515 1.39999998371969 1.40000000243307 1.4000000029624 1.40000000296245 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003002 1.3999999999802 1.39999999702452 1.39999999726311 1.40000000142593 1.40000453320649 1.40000453320649 1.40000000142593 1.39999999726312 1.39999999702452 1.3999999999802 1.40000000003002 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000003 1.40000000016377 1.40000000877023 1.40000000801444 1.40000000218721 1.40000000010841 1.40000000010841 1.40000000218721 1.40000000801444 1.40000000877023 1.40000000016377 1.40000000000003 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000002 1.40000000031024 1.40000001633567 1.40000001919894 1.40000001684864 1.40000000871591 1.40000000871591 1.40000001684864 1.40000001919894 1.40000001633567 1.40000000031024 1.40000000000002 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000006 1.40000000000621 1.40000000121957 1.40000003817621 1.40000002997814 1.40000004828495 1.40000004828495 1.40000002997814 1.40000003817621 1.40000000121957 1.40000000000621 1.40000000000006 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000009 1.40000000000742 1.40000000138368 1.40000004002579 1.40000005133886 1.40000005133886 1.40000004002579 1.40000000138368 1.40000000000742 1.40000000000009 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000027 1.40000000001998 1.4000000010934 1.40000000100878 1.40000000100878 1.4000000010934 1.40000000001998 1.40000000000027 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000001 1.40000000000019 1.40000000000107 1.40000000000204 1.40000000000204 1.40000000000107 1.40000000000019 1.40000000000001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000001 1.4 1.4 1.4 1.4 1.40000000000001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 +D/cons.1.00.000050.dat 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495382 2.60690283494454 2.60690283494454 2.60690283495382 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60690283495417 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690179 2.60704515686247 2.6070451558997 2.6070451558997 2.60704515686247 2.60704515690179 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60704515690204 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714555 2.60839351714613 2.60839351713659 2.60839351590821 2.60839348369135 2.60839348369135 2.60839351590821 2.60839351713659 2.60839351714613 2.60839351714555 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 2.60839351714553 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782675 1.81733171782719 1.81733171783989 1.81733171848702 1.81733174227875 1.81733256251874 1.81733256251874 1.81733174227875 1.81733171848702 1.81733171783989 1.81733171782719 1.81733171782675 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.81733171782674 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910719 1.42165257902698 1.42165257890378 1.42165262553736 1.42165512607437 1.42165512607437 1.42165262553736 1.42165257890378 1.42165257902698 1.42165257910719 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.42165257910932 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636873 1.40060529636695 1.4006052962547 1.40060528855202 1.40060519434405 1.4005996739365 1.4005996739365 1.40060519434405 1.40060528855202 1.4006052962547 1.40060529636695 1.40060529636873 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.40060529636878 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.40001254353241 1.40001254353273 1.40001254355441 1.40001254454404 1.40001255665289 1.40001251823423 1.40002164022203 1.40002164022203 1.40001251823423 1.40001255665289 1.40001254454404 1.40001254355441 1.40001254353273 1.40001254353241 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.4000125435324 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079515 1.40000021077217 1.40000021137588 1.40000030144122 1.40001082634563 1.40046484913859 1.40046484913859 1.40001082634563 1.40000030144122 1.40000021137588 1.40000021077217 1.40000021079515 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000021079562 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296245 1.40000000296095 1.40000000186486 1.39999996296717 1.40000007325325 1.40000924795183 1.41160786105095 1.41160786105095 1.40000924795183 1.40000007325325 1.39999996296717 1.40000000186486 1.40000000296095 1.40000000296245 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000296246 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003004 1.39999999992568 1.39999999403291 1.39999999374469 1.40000000122944 1.40000453321512 1.40000453321511 1.40000000122944 1.39999999374469 1.39999999403291 1.39999999992568 1.40000000003004 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.40000000003006 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000002 1.40000000033766 1.40000001755118 1.4000000160364 1.40000000438732 1.40000000022465 1.40000000022465 1.40000000438732 1.4000000160364 1.40000001755118 1.40000000033766 1.40000000000002 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000001 1.4000000006404 1.40000003266118 1.40000003836032 1.40000003366821 1.40000001741293 1.40000001741293 1.40000003366821 1.40000003836032 1.40000003266118 1.4000000006404 1.40000000000001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000008 1.40000000002056 1.40000000245683 1.40000007623381 1.40000005988639 1.40000009649777 1.40000009649777 1.40000005988639 1.40000007623381 1.40000000245683 1.40000000002056 1.40000000000008 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000013 1.40000000002559 1.40000000283539 1.4000000799524 1.40000010260555 1.40000010260555 1.4000000799524 1.40000000283539 1.40000000002559 1.40000000000013 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000001 1.40000000000048 1.40000000004737 1.4000000021798 1.40000000202424 1.40000000202424 1.4000000021798 1.40000000004737 1.40000000000048 1.40000000000001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000001 1.40000000000028 1.40000000001391 1.40000000001484 1.40000000001484 1.40000000001391 1.40000000000028 1.40000000000001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40000000000001 1.4 1.4 1.4 1.4 1.40000000000001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 D/cons.2.00.000000.dat 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 1.81023136 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -D/cons.2.00.000050.dat 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117008 1.81023007117457 1.81023007117457 1.81023007117008 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.8101653957959 1.81016539579563 1.81016539628093 1.81016539628093 1.81016539579563 1.8101653957959 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206016 1.80972917205994 1.8097291720484 1.80972917139131 1.80972918865923 1.80972918865923 1.80972917139131 1.8097291720484 1.80972917205994 1.80972917206016 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233611 0.63766622232822 0.63766622200235 0.63766620725486 0.6376653403223 0.6376653403223 0.63766620725486 0.63766622200235 0.63766622232822 0.63766622233611 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818286 0.02414334818369 0.02414334822137 0.0241433487588 0.02414334065295 0.02414052503154 0.02414052503154 0.02414334065295 0.0241433487588 0.02414334822137 0.02414334818369 0.02414334818286 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246727 0.00060751246813 0.00060751253715 0.00060751783838 0.00060774840819 0.00061861718286 0.00061861718286 0.00060774840819 0.00060751783838 0.00060751253715 0.00060751246813 0.00060751246727 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481947e-05 1.254480699e-05 1.254416979e-05 1.253409463e-05 1.190306503e-05 2.43849261e-06 2.43849261e-06 1.190306503e-05 1.253409463e-05 1.254416979e-05 1.254480699e-05 1.254481947e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1083941e-07 2.1212819e-07 2.1885066e-07 4.72775069e-06 2.420860373e-05 2.420860373e-05 4.72775069e-06 2.1885066e-07 2.1212819e-07 2.1083941e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.93553e-09 2.75015e-09 4.8545921e-07 6.30747554e-06 0.00176873168121 0.00176873168121 6.30747554e-06 4.8545921e-07 2.75015e-09 2.93553e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.006e-11 3.005e-11 2.528e-11 -6.7826e-10 2.050908e-08 5.755655e-08 4.04155232e-06 4.04155232e-06 5.755655e-08 2.050908e-08 -6.7826e-10 2.528e-11 3.005e-11 3.006e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -1.138e-11 -4.8354e-10 1.6883393e-07 4.1383547e-07 1.43530862e-06 1.43530862e-06 4.1383547e-07 1.6883393e-07 -4.8354e-10 -1.138e-11 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.96e-12 2.2114e-10 6.7890653e-07 1.19365817e-06 1.91735081e-06 1.91735081e-06 1.19365817e-06 6.7890653e-07 2.2114e-10 4.96e-12 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 5.58e-12 3.9609e-10 1.688845e-08 1.59970876e-06 2.00835217e-06 2.00835217e-06 1.59970876e-06 1.688845e-08 3.9609e-10 5.58e-12 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4e-14 4.16e-12 9.3498e-10 3.922594e-08 5.011214e-08 5.011214e-08 3.922594e-08 9.3498e-10 4.16e-12 4e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 9e-14 2.34e-12 1.10711e-09 1.00178e-09 1.00178e-09 1.10711e-09 2.34e-12 9e-14 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2e-13 1.07e-12 2.04e-12 2.04e-12 1.07e-12 2e-13 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 1e-14 1e-14 1e-14 1e-14 1e-14 1e-14 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 +D/cons.2.00.000050.dat 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117008 1.81023007117456 1.81023007117456 1.81023007117008 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81023007117005 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579585 1.8101653957959 1.81016539579479 1.81016539627971 1.81016539627971 1.81016539579479 1.8101653957959 1.81016539579585 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.81016539579586 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206016 1.80972917205973 1.80972917204732 1.80972917137226 1.80972918857622 1.80972918857622 1.80972917137226 1.80972917204732 1.80972917205973 1.80972917206016 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 1.80972917206017 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233603 0.63766622232254 0.63766622190299 0.63766621039627 0.63766534116158 0.63766534116158 0.63766621039627 0.63766622190299 0.63766622232254 0.63766622233603 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.63766622233616 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818286 0.02414334818287 0.02414334818462 0.02414334826371 0.02414334929681 0.0241433433772 0.02414054239135 0.02414054239135 0.0241433433772 0.02414334929681 0.02414334826371 0.02414334818462 0.02414334818287 0.02414334818286 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.02414334818285 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246728 0.00060751246726 0.00060751246886 0.00060751257039 0.00060752005856 0.00060771877942 0.00061861564804 0.00061861564804 0.00060771877942 0.00060752005856 0.00060751257039 0.00060751246886 0.00060751246726 0.00060751246728 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 0.00060751246729 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481949e-05 1.254479416e-05 1.254359974e-05 1.253387833e-05 1.193846296e-05 2.41673944e-06 2.41673944e-06 1.193846296e-05 1.253387833e-05 1.254359974e-05 1.254479416e-05 1.254481949e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 1.254481946e-05 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.10805e-07 2.1087611e-07 2.1341055e-07 2.2731354e-07 6.16371996e-06 2.61826779e-05 2.61826779e-05 6.16371996e-06 2.2731354e-07 2.1341055e-07 2.1087611e-07 2.10805e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.1080499e-07 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95346e-09 2.91561e-09 2.61672e-09 8.9574816e-07 7.15627572e-06 0.00177053084536 0.00177053084536 7.15627572e-06 8.9574816e-07 2.61672e-09 2.91561e-09 2.95346e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 2.95347e-09 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.006e-11 2.042e-11 -1.47995e-09 4.033589e-08 1.1349766e-07 4.45581981e-06 4.45581981e-06 1.1349766e-07 4.033589e-08 -1.47995e-09 2.042e-11 3.006e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 3.007e-11 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -2.323e-11 -9.4117e-10 3.3751236e-07 8.272762e-07 2.86926904e-06 2.86926904e-06 8.272762e-07 3.3751236e-07 -9.4117e-10 -2.323e-11 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 9.92e-12 4.354e-10 1.35716896e-06 2.38618855e-06 3.83290185e-06 3.83290185e-06 2.38618855e-06 1.35716896e-06 4.354e-10 9.92e-12 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.179e-11 7.8526e-10 3.378055e-08 3.19791983e-06 4.01481321e-06 4.01481321e-06 3.19791983e-06 3.378055e-08 7.8526e-10 1.179e-11 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 9e-14 1.143e-11 1.83955e-09 7.842467e-08 1.0016707e-07 1.0016707e-07 7.842467e-08 1.83955e-09 1.143e-11 9e-14 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3e-13 1.265e-11 2.19903e-09 2.01191e-09 2.01191e-09 2.19903e-09 1.265e-11 1.3e-13 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1e-14 2.3e-13 1.397e-11 1.485e-11 1.485e-11 1.397e-11 2.3e-13 1e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 1e-14 0.0 0.0 0.0 0.0 1e-14 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 D/cons.3.00.000000.dat 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -D/cons.3.00.000050.dat 0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 1.8e-13 4.4e-13 -4.4e-13 -1.8e-13 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 0.0 0.0 1e-14 8e-14 2.423e-11 5.92e-11 -5.92e-11 -2.423e-11 -8e-14 -1e-14 -0.0 -0.0 -0.0 0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 7e-14 1.831e-11 1.41308e-09 3.41665e-09 -3.41665e-09 -1.41308e-09 -1.831e-11 -7e-14 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -1e-14 -1.5e-13 -4.5e-13 -2.922e-10 -1.304713e-08 -3.352907e-08 3.352907e-08 1.304713e-08 2.922e-10 4.5e-13 1.5e-13 1e-14 0.0 0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 1e-14 6.8e-13 1.1e-13 -8.3209e-10 -4.971259e-08 -1.3207432e-07 1.3207432e-07 4.971259e-08 8.3209e-10 -1.1e-13 -6.8e-13 -1e-14 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 3e-14 3.4e-13 3.637e-11 1.60771e-09 7.389693e-08 1.9471438e-07 -1.9471438e-07 -7.389693e-08 -1.60771e-09 -3.637e-11 -3.4e-13 -3e-14 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -1.8e-13 -2.06e-12 -1.1711e-10 -9.2192e-10 -9.089697e-08 -2.6503635e-07 2.6503635e-07 9.089697e-08 9.2192e-10 1.1711e-10 2.06e-12 1.8e-13 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 1.7e-13 -1.077e-11 -1.65643e-09 -1.2840394e-07 -3.98176488e-06 -9.960611098e-05 9.960611098e-05 3.98176488e-06 1.2840394e-07 1.65643e-09 1.077e-11 -1.7e-13 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 1e-14 5e-14 5.3892e-10 1.893086e-08 7.938829e-07 -3.52853109e-06 -0.00441660343476 0.00441660343476 3.52853109e-06 -7.938829e-07 -1.893086e-08 -5.3892e-10 -5e-14 -1e-14 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4e-14 4.797e-11 2.75073e-09 2.0527163e-07 3.3594481e-07 -9.8416071e-07 9.8416071e-07 -3.3594481e-07 -2.0527163e-07 -2.75073e-09 -4.797e-11 -4e-14 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -3e-14 -1.6392e-10 -8.50652e-09 -5.713172e-07 -8.2969458e-07 -9.5687415e-07 9.5687415e-07 8.2969458e-07 5.713172e-07 8.50652e-09 1.6392e-10 3e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -2e-14 -3.1537e-10 -1.628959e-08 -9.7602276e-07 -1.02616104e-06 -5.4555893e-07 5.4555893e-07 1.02616104e-06 9.7602276e-07 1.628959e-08 3.1537e-10 2e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -6e-14 -1.29e-12 -9.6101e-10 -2.150927e-08 -8.6811278e-07 -3.5679978e-07 3.5679978e-07 8.6811278e-07 2.150927e-08 9.6101e-10 1.29e-12 6e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -5e-14 -3.39e-12 -5.8724e-10 -1.41961e-09 -1.6722e-10 1.6722e-10 1.41961e-09 5.8724e-10 3.39e-12 5e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -1.7e-13 -1.997e-11 -1.809e-11 4.84e-12 -4.84e-12 1.809e-11 1.997e-11 1.7e-13 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -1e-14 -0.0 -0.0 0.0 0.0 1e-14 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 -0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 -0.0 0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 +D/cons.3.00.000050.dat -0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8e-13 4.4e-13 -4.4e-13 -1.8e-13 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 0.0 1e-14 8e-14 2.4e-11 5.928e-11 -5.928e-11 -2.4e-11 -8e-14 -1e-14 -0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 9e-14 1.713e-11 1.40216e-09 3.41612e-09 -3.41612e-09 -1.40216e-09 -1.713e-11 -9e-14 0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -1e-14 -2.6e-13 -5.5e-13 -2.7635e-10 -1.292312e-08 -3.367338e-08 3.367338e-08 1.292312e-08 2.7635e-10 5.5e-13 2.6e-13 1e-14 0.0 0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 5.3e-13 4.09e-12 -7.6613e-10 -4.933444e-08 -1.3159086e-07 1.3159086e-07 4.933444e-08 7.6613e-10 -4.09e-12 -5.3e-13 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 6e-14 6.1e-13 4.611e-11 1.42252e-09 7.205213e-08 1.9683401e-07 -1.9683401e-07 -7.205213e-08 -1.42252e-09 -4.611e-11 -6.1e-13 -6e-14 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -1e-14 -3.4e-13 -5.05e-12 -2.8718e-10 8.7187e-10 -8.956729e-08 -2.6985787e-07 2.6985787e-07 8.956729e-08 -8.7187e-10 2.8718e-10 5.05e-12 3.4e-13 1e-14 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 1e-14 5.1e-13 -6.25e-12 -1.43647e-09 -1.1956698e-07 -3.02877709e-06 -9.916559976e-05 9.916559976e-05 3.02877709e-06 1.1956698e-07 1.43647e-09 6.25e-12 -5.1e-13 -1e-14 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 1e-14 1.51e-12 1.11256e-09 3.935618e-08 1.62437788e-06 -2.50978782e-06 -0.00441588048253 0.00441588048253 2.50978782e-06 -1.62437788e-06 -3.935618e-08 -1.11256e-09 -1.51e-12 -1e-14 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3e-14 1.0078e-10 5.49943e-09 4.1041699e-07 6.7183468e-07 -1.5565163e-07 1.5565163e-07 -6.7183468e-07 -4.1041699e-07 -5.49943e-09 -1.0078e-10 -3e-14 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -2e-14 -3.388e-10 -1.70362e-08 -1.14209707e-06 -1.65861323e-06 -1.91285104e-06 1.91285104e-06 1.65861323e-06 1.14209707e-06 1.70362e-08 3.388e-10 2e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -1e-14 -6.5107e-10 -3.258785e-08 -1.95113397e-06 -2.05136717e-06 -1.09060524e-06 1.09060524e-06 2.05136717e-06 1.95113397e-06 3.258785e-08 6.5107e-10 1e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -8e-14 -1.06e-11 -1.89341e-09 -4.303338e-08 -1.73540329e-06 -7.1329712e-07 7.1329712e-07 1.73540329e-06 4.303338e-08 1.89341e-09 1.06e-11 8e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -4e-14 -1.54e-11 -1.17813e-09 -2.79437e-09 -3.7153e-10 3.7153e-10 2.79437e-09 1.17813e-09 1.54e-11 4e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -1e-14 -3.5e-13 -4.029e-11 -3.626e-11 8.56e-12 -8.56e-12 3.626e-11 4.029e-11 3.5e-13 1e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -8e-14 -1.4e-13 -1e-14 1e-14 1.4e-13 8e-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 -0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 0.0 0.0 -0.0 0.0 0.0 -0.0 0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 0.0 -0.0 -0.0 0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 -0.0 0.0 0.0 -0.0 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 0.0 D/cons.4.00.000000.dat 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 6.774262328192 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 -D/cons.4.00.000050.dat 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.77427010652179 6.7742701065207 6.77427010649538 6.77427010649538 6.7742701065207 6.77427010652179 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392753 6.77466075392676 6.77466075380148 6.77466075119074 6.77466075119074 6.77466075380148 6.77466075392676 6.77466075392753 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620396 6.77863494620462 6.77863494615656 6.77863494183944 6.77863485534575 6.77863485534575 6.77863494183944 6.77863494615656 6.77863494620462 6.77863494620396 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.99893988577812 3.99893988577875 3.9989398857979 3.99893988741608 3.99893996043527 3.99894206703891 3.99894206703891 3.99893996043527 3.99893988741608 3.9989398857979 3.99893988577875 3.99893988577812 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427508 2.55743731427158 2.5574373141791 2.55743731511906 2.55743743946872 2.55744366199821 2.55744366199821 2.55743743946872 2.55743731511906 2.5574373141791 2.55743731427158 2.55743731427508 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884359 2.50151548884112 2.5015154886402 2.5015154742378 2.50151512761981 2.50150138203538 2.50150138203538 2.50151512761981 2.5015154742378 2.5015154886402 2.50151548884112 2.50151548884359 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991597 2.50003135991639 2.50003135994201 2.50003136114311 2.50003138660164 2.50003153824949 2.50005412764368 2.50005412764368 2.50003153824949 2.50003138660164 2.50003136114311 2.50003135994201 2.50003135991639 2.50003135991597 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698942 2.50000052698904 2.50000052698094 2.50000053000326 2.50000080310428 2.50002713065179 2.50116367922259 2.50116367922259 2.5000271306518 2.50000080310428 2.50000053000326 2.50000052698094 2.50000052698904 2.50000052698942 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740613 2.50000000740601 2.50000000608267 2.49999995929923 2.50000021776334 2.50002312225409 2.53062188600415 2.53062188600415 2.50002312225409 2.50000021776334 2.49999995929923 2.50000000608267 2.50000000740601 2.50000000740613 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007515 2.50000000007506 2.4999999999505 2.49999999256131 2.4999999931578 2.50000000356488 2.50001133337323 2.50001133337323 2.50000000356488 2.4999999931578 2.49999999256131 2.4999999999505 2.50000000007506 2.50000000007515 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000007 2.50000000040941 2.50000002192558 2.50000002003624 2.50000000546834 2.5000000002721 2.5000000002721 2.50000000546834 2.50000002003624 2.50000002192558 2.50000000040941 2.50000000000007 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000006 2.5000000007756 2.50000004083919 2.50000004799785 2.50000004212249 2.5000000217912 2.5000000217912 2.50000004212249 2.50000004799785 2.50000004083919 2.5000000007756 2.50000000000006 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000015 2.50000000001552 2.50000000304892 2.50000009544052 2.50000007494654 2.50000012071388 2.50000012071388 2.50000007494654 2.50000009544052 2.50000000304892 2.50000000001552 2.50000000000015 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000001 2.50000000000024 2.50000000001856 2.50000000345919 2.5000001000645 2.50000012834716 2.50000012834716 2.5000001000645 2.50000000345919 2.50000000001856 2.50000000000024 2.50000000000001 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000001 2.50000000000067 2.50000000004995 2.5000000027335 2.50000000252196 2.50000000252196 2.5000000027335 2.50000000004995 2.50000000000067 2.50000000000001 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000002 2.50000000000048 2.50000000000267 2.50000000000509 2.50000000000509 2.50000000000267 2.50000000000048 2.50000000000002 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000002 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000002 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 +D/cons.4.00.000050.dat 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.77427010652179 6.77427010652074 6.77427010649545 6.77427010649545 6.77427010652074 6.77427010652179 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.7742701065218 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392753 6.7746607539268 6.77466075380578 6.77466075119848 6.77466075119848 6.77466075380578 6.7746607539268 6.77466075392753 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77466075392754 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620399 6.77863494620547 6.77863494616767 6.77863494194222 6.77863485579747 6.77863485579747 6.77863494194222 6.77863494616767 6.77863494620547 6.77863494620399 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 6.77863494620395 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.99893988577813 3.99893988577934 3.99893988581169 3.99893988756658 3.99893995325726 3.99894206475764 3.99894206475764 3.99893995325726 3.99893988756658 3.99893988581169 3.99893988577934 3.99893988577813 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 3.9989398857781 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427509 2.55743731426976 2.55743731406822 2.55743731373966 2.55743742998576 2.55744361671244 2.55744361671244 2.55743742998576 2.55743731373966 2.55743731406822 2.55743731426976 2.55743731427509 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.55743731427511 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884353 2.50151548883906 2.50151548855847 2.50151546930182 2.50151523381246 2.50150143317532 2.50150143317532 2.50151523381246 2.50151546930182 2.50151548855847 2.50151548883906 2.50151548884353 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50151548884365 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991598 2.50003135991677 2.50003135997098 2.50003136244505 2.50003139271712 2.50003129665449 2.50005410119312 2.50005410119312 2.50003129665449 2.50003139271712 2.50003136244505 2.50003135997098 2.50003135991677 2.50003135991598 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50003135991596 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698941 2.50000052698824 2.50000052693081 2.50000052844007 2.50000075360354 2.50002706673742 2.5011637068732 2.5011637068732 2.50002706673742 2.50000075360354 2.50000052844007 2.50000052693081 2.50000052698824 2.50000052698941 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000052698943 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740612 2.50000000740237 2.50000000466216 2.49999990741795 2.50000018313452 2.50002312063186 2.53062190356915 2.53062190356915 2.50002312063187 2.50000018313452 2.49999990741795 2.50000000466216 2.50000000740237 2.50000000740612 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000740615 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007515 2.50000000007509 2.4999999998142 2.49999998508227 2.4999999843618 2.50000000307377 2.50001133339572 2.50001133339571 2.50000000307377 2.4999999843618 2.49999998508227 2.4999999998142 2.50000000007509 2.50000000007515 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000007516 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000005 2.50000000084415 2.50000004387796 2.50000004009152 2.50000001096952 2.50000000056586 2.50000000056586 2.50000001096952 2.50000004009151 2.50000004387796 2.50000000084415 2.50000000000005 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.50000000000001 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000003 2.50000000160099 2.50000008165295 2.50000009590283 2.50000008417406 2.50000004353801 2.50000004353801 2.50000008417406 2.50000009590283 2.50000008165295 2.50000000160099 2.50000000000003 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5000000000002 2.50000000005141 2.50000000614206 2.50000019058455 2.50000014972073 2.50000024125043 2.50000024125042 2.50000014972073 2.50000019058455 2.50000000614206 2.50000000005141 2.5000000000002 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000001 2.50000000000032 2.50000000006396 2.50000000708848 2.50000019988105 2.50000025651397 2.50000025651397 2.50000019988105 2.50000000708848 2.50000000006396 2.50000000000032 2.50000000000001 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000002 2.50000000000121 2.50000000011842 2.5000000054495 2.50000000506059 2.50000000506059 2.5000000054495 2.50000000011842 2.50000000000121 2.50000000000002 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000003 2.50000000000071 2.50000000003477 2.50000000003711 2.50000000003711 2.50000000003477 2.50000000000071 2.50000000000003 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.50000000000002 2.50000000000001 2.5 2.5 2.50000000000001 2.50000000000002 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 D/cons.5.00.000000.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 D/cons.5.00.000050.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 \ No newline at end of file diff --git a/toolchain/mfc/params/namelist_parser.py b/toolchain/mfc/params/namelist_parser.py index 8e4aa48c09..fdcb21d38a 100644 --- a/toolchain/mfc/params/namelist_parser.py +++ b/toolchain/mfc/params/namelist_parser.py @@ -174,6 +174,7 @@ "hyperelasticity", "hypoelasticity", "ib", + "ib_state_wrt", "ic_beta", "ic_eps", "igr", @@ -318,6 +319,7 @@ "hyperelasticity", "hypoelasticity", "ib", + "ib_state_wrt", "igr", "igr_order", "lag_betaC_wrt",