ER2RIS7NYUQJNLFN7RCJQ5ZSXZV7F4AEM3EXZG3GVA4B57R75XIAC
Cactus Code Thorn TwoPunctures
Author(s) : Marcus Ansorg
Erik Schnetter
Frank Löffler
Maintainer(s): Marcus Ansorg
Erik Schnetter
Licence : LGPLv2+
--------------------------------------------------------------------------
1. Purpose
Create initial for two puncture black holes using a single domain
spectral method. This method is described in
Marcus Ansorg, Bernd Brügmann, Wolfgang Tichy,
"A single-domain spectral method for black hole puncture data",
PRD 70, 064011 (2004),
arXiv:gr-qc/0404056.
This thorn was extended to include source terms to be able
to handle matter with the same restrictions as the BHs before plus
zero momentum/ang. momentum (K_{ij} = 0).
# Configuration definition for thorn TwoPunctures
REQUIRES GSL
% *======================================================================*
% Cactus Thorn template for ThornGuide documentation
% Author: Ian Kelley
% Date: Sun Jun 02, 2002
%
% Thorn documentation in the latex file doc/documentation.tex
% will be included in ThornGuides built with the Cactus make system.
% The scripts employed by the make system automatically include
% pages about variables, parameters and scheduling parsed from the
% relevant thorn CCL files.
%
% This template contains guidelines which help to assure that your
% documentation will be correctly added to ThornGuides. More
% information is available in the Cactus UsersGuide.
%
% Guidelines:
% - Do not change anything before the line
% % START CACTUS THORNGUIDE",
% except for filling in the title, author, date, etc. fields.
% - Each of these fields should only be on ONE line.
% - Author names should be separated with a \\ or a comma.
% - You can define your own macros, but they must appear after
% the START CACTUS THORNGUIDE line, and must not redefine standard
% latex commands.
% - To avoid name clashes with other thorns, 'labels', 'citations',
% 'references', and 'image' names should conform to the following
% convention:
% ARRANGEMENT_THORN_LABEL
% For example, an image wave.eps in the arrangement CactusWave and
% thorn WaveToyC should be renamed to CactusWave_WaveToyC_wave.eps
% - Graphics should only be included using the graphicx package.
% More specifically, with the "\includegraphics" command. Do
% not specify any graphic file extensions in your .tex file. This
% will allow us to create a PDF version of the ThornGuide
% via pdflatex.
% - References should be included with the latex "\bibitem" command.
% - Use \begin{abstract}...\end{abstract} instead of \abstract{...}
% - Do not use \appendix, instead include any appendices you need as
% standard sections.
% - For the benefit of our Perl scripts, and for future extensions,
% please use simple latex.
%
% *======================================================================*
%
% Example of including a graphic image:
% \begin{figure}[ht]
% \begin{center}
% \includegraphics[width=6cm]{MyArrangement_MyThorn_MyFigure}
% \end{center}
% \caption{Illustration of this and that}
% \label{MyArrangement_MyThorn_MyLabel}
% \end{figure}
%
% Example of using a label:
% \label{MyArrangement_MyThorn_MyLabel}
%
% Example of a citation:
% \cite{MyArrangement_MyThorn_Author99}
%
% Example of including a reference
% \bibitem{MyArrangement_MyThorn_Author99}
% {J. Author, {\em The Title of the Book, Journal, or periodical}, 1 (1999),
% 1--16. {\tt http://www.nowhere.com/}}
%
% *======================================================================*
\documentclass{article}
% Use the Cactus ThornGuide style file
% (Automatically used from Cactus distribution, if you have a
% thorn without the Cactus Flesh download this from the Cactus
% homepage at www.cactuscode.org)
\usepackage{../../../../doc/latex/cactus}
\begin{document}
% The author of the documentation
\author{Marcus Ansorg \textless marcus.ansorg@aei.mpg.de\textgreater \\ Erik Schnetter \textless schnetter@cct.lsu.edu\textgreater}
% The title of the document (not necessarily the name of the Thorn)
\title{}
% the date your document was last changed:
\date{May 18 2004}
\maketitle
% Do not delete next line
% START CACTUS THORNGUIDE
% Add all definitions used in this documentation here
% \def\mydef etc
% Add an abstract for this thorn's documentation
\begin{abstract}
\end{abstract}
% The following sections are suggestive only.
% Remove them or add your own.
\section{Introduction}
\section{Physical System}
\section{Numerical Implementation}
\section{Using This Thorn}
\subsection{Obtaining This Thorn}
\subsection{Basic Usage}
\subsection{Special Behaviour}
\subsection{Interaction With Other Thorns}
\subsection{Examples}
\subsection{Support and Feedback}
\section{History}
\subsection{Thorn Source Code}
\subsection{Thorn Documentation}
\subsection{Acknowledgements}
\begin{thebibliography}{9}
\end{thebibliography}
% Do not delete next line
% END CACTUS THORNGUIDE
\end{document}
# Interface definition for thorn TwoPunctures
IMPLEMENTS: TwoPunctures
INHERITS: ADMBase StaticConformal grid
REAL puncture_u TYPE=gf tags='prolongation="none"'
CCTK_INT FUNCTION Set_Rho_ADM( \
CCTK_POINTER_TO_CONST IN cctkGH, \
CCTK_INT IN size, \
CCTK_REAL ARRAY OUT source, \
CCTK_REAL ARRAY IN x, \
CCTK_REAL ARRAY IN y, \
CCTK_REAL ARRAY IN z \
)
CCTK_INT FUNCTION Set_Initial_Guess_for_u( \
CCTK_POINTER_TO_CONST IN cctkGH, \
CCTK_INT IN size, \
CCTK_REAL ARRAY OUT u, \
CCTK_REAL ARRAY IN x, \
CCTK_REAL ARRAY IN y, \
CCTK_REAL ARRAY IN z \
)
CCTK_INT FUNCTION Rescale_Sources( \
CCTK_POINTER_TO_CONST IN cctkGH, \
CCTK_INT IN size, \
CCTK_REAL ARRAY IN x, \
CCTK_REAL ARRAY IN y, \
CCTK_REAL ARRAY IN z, \
CCTK_REAL ARRAY IN psi, \
CCTK_REAL ARRAY IN gxx, \
CCTK_REAL ARRAY IN gyy, \
CCTK_REAL ARRAY IN gzz, \
CCTK_REAL ARRAY IN gxy, \
CCTK_REAL ARRAY IN gxz, \
CCTK_REAL ARRAY IN gyz \
)
USES FUNCTION Set_Rho_ADM
USES FUNCTION Set_Initial_Guess_for_u
USES FUNCTION Rescale_Sources
PRIVATE:
CCTK_REAL energy TYPE=scalar
{
E
} "ADM energy of the Bowen-York spacetime"
CCTK_REAL angular_momentum TYPE=scalar
{
J1, J2, J3
} "Angular momentum of the Bowen-York spacetime"
PUBLIC:
CCTK_REAL bare_mass TYPE=scalar
{
mp mm
} "Bare masses of the punctures"
CCTK_REAL puncture_adm_mass TYPE=scalar
{
mp_adm mm_adm
} "ADM masses of the punctures (measured at the other spatial infinities)"
Cactus::cctk_run_title = "QC-0"
Cactus::cctk_full_warnings = yes
Cactus::highlight_warning_messages = no
Cactus::terminate = "time"
Cactus::cctk_final_time = 200.0
ActiveThorns = "IOUtil"
IO::out_dir = $parfile
ActiveThorns = "AEILocalInterp"
#ActiveThorns = "BLAS LAPACK"
ActiveThorns = "Fortran"
ActiveThorns = "GSL"
ActiveThorns = "GenericFD"
ActiveThorns = "HDF5"
ActiveThorns = "LocalInterp"
ActiveThorns = "LoopControl"
ActiveThorns = "Slab"
ActiveThorns = "TGRtensor"
ActiveThorns = "SummationByParts"
SummationByParts::order = 4
ActiveThorns = "InitBase"
ActiveThorns = "Carpet CarpetLib CarpetInterp CarpetReduce CarpetSlab"
Carpet::verbose = no
Carpet::veryverbose = no
Carpet::schedule_barriers = no
Carpet::storage_verbose = no
#Carpet::timers_verbose = no
CarpetLib::output_bboxes = no
Carpet::domain_from_coordbase = yes
Carpet::max_refinement_levels = 10
driver::ghost_size = 3
Carpet::use_buffer_zones = yes
Carpet::prolongation_order_space = 5
Carpet::prolongation_order_time = 2
Carpet::convergence_level = 0
Carpet::init_fill_timelevels = yes
#Carpet::init_3_timelevels = yes
Carpet::poison_new_timelevels = yes
CarpetLib::poison_new_memory = yes
Carpet::output_timers_every = 5120
CarpetLib::print_timestats_every = 5120
CarpetLib::print_memstats_every = 5120
ActiveThorns = "NaNChecker"
NaNChecker::check_every = 1 # 512
#NaNChecker::verbose = "all"
#NaNChecker::action_if_found = "just warn"
NaNChecker::action_if_found = "terminate"
NaNChecker::check_vars = "
ML_BSSN::ML_log_confac
ML_BSSN::ML_metric
ML_BSSN::ML_trace_curv
ML_BSSN::ML_curv
ML_BSSN::ML_Gamma
ML_BSSN::ML_lapse
ML_BSSN::ML_shift
ML_BSSN::ML_dtlapse
ML_BSSN::ML_dtshift
ADMBase::metric
ADMBase::curv
ADMBase::lapse
ADMBase::shift
ADMBase::dtlapse
ADMBase::dtshift
"
ActiveThorns = "Boundary CartGrid3D CoordBase ReflectionSymmetry RotatingSymmetry180 SymBase"
CoordBase::domainsize = "minmax"
CoordBase::xmin = 0.00
CoordBase::ymin = -120.00
CoordBase::zmin = 0.00
CoordBase::xmax = +120.00
CoordBase::ymax = +120.00
CoordBase::zmax = +120.00
CoordBase::dx = 2.00
CoordBase::dy = 2.00
CoordBase::dz = 2.00
CoordBase::boundary_size_x_lower = 3
CoordBase::boundary_size_y_lower = 3
CoordBase::boundary_size_z_lower = 3
CoordBase::boundary_size_x_upper = 3
CoordBase::boundary_size_y_upper = 3
CoordBase::boundary_size_z_upper = 3
CoordBase::boundary_shiftout_x_lower = 1
CoordBase::boundary_shiftout_z_lower = 1
CartGrid3D::type = "coordbase"
ReflectionSymmetry::reflection_z = yes
ReflectionSymmetry::avoid_origin_z = no
ActiveThorns = "SphericalSurface"
SphericalSurface::nsurfaces = 6
SphericalSurface::maxntheta = 39
SphericalSurface::maxnphi = 76
SphericalSurface::ntheta [0] = 39
SphericalSurface::nphi [0] = 76
SphericalSurface::nghoststheta[0] = 2
SphericalSurface::nghostsphi [0] = 2
SphericalSurface::ntheta [1] = 39
SphericalSurface::nphi [1] = 76
SphericalSurface::nghoststheta[1] = 2
SphericalSurface::nghostsphi [1] = 2
SphericalSurface::ntheta [2] = 39
SphericalSurface::nphi [2] = 76
SphericalSurface::nghoststheta[2] = 2
SphericalSurface::nghostsphi [2] = 2
SphericalSurface::ntheta [3] = 39
SphericalSurface::nphi [3] = 76
SphericalSurface::nghoststheta[3] = 2
SphericalSurface::nghostsphi [3] = 2
SphericalSurface::ntheta [4] = 39
SphericalSurface::nphi [4] = 76
SphericalSurface::nghoststheta[4] = 2
SphericalSurface::nghostsphi [4] = 2
SphericalSurface::ntheta [5] = 39
SphericalSurface::nphi [5] = 76
SphericalSurface::nghoststheta[5] = 2
SphericalSurface::nghostsphi [5] = 2
ActiveThorns = "CarpetMask"
CarpetMask::verbose = no
CarpetMask::excluded_surface [0] = 0
CarpetMask::excluded_surface_factor[0] = 1.0
CarpetMask::excluded_surface [1] = 1
CarpetMask::excluded_surface_factor[1] = 1.0
CarpetMask::excluded_surface [2] = 2
CarpetMask::excluded_surface_factor[2] = 1.0
ActiveThorns = "CarpetRegrid2 CarpetTracker"
CarpetTracker::surface[0] = 0
CarpetTracker::surface[1] = 1
CarpetTracker::surface[2] = 2
CarpetRegrid2::regrid_every = 128
CarpetRegrid2::freeze_unaligned_levels = yes
CarpetRegrid2::symmetry_rotating180 = yes
CarpetRegrid2::verbose = yes
CarpetRegrid2::num_centres = 3
CarpetRegrid2::num_levels_1 = 7
CarpetRegrid2::position_x_1 = +1.168642873
CarpetRegrid2::radius_1[ 1] = 64.0
CarpetRegrid2::radius_1[ 2] = 16.0
CarpetRegrid2::radius_1[ 3] = 8.0
CarpetRegrid2::radius_1[ 4] = 4.0
CarpetRegrid2::radius_1[ 5] = 2.0
CarpetRegrid2::radius_1[ 6] = 1.0
CarpetRegrid2::movement_threshold_1 = 0.16
CarpetRegrid2::num_levels_2 = 7
CarpetRegrid2::position_x_2 = -1.168642873
CarpetRegrid2::radius_2[ 1] = 64.0
CarpetRegrid2::radius_2[ 2] = 16.0
CarpetRegrid2::radius_2[ 3] = 8.0
CarpetRegrid2::radius_2[ 4] = 4.0
CarpetRegrid2::radius_2[ 5] = 2.0
CarpetRegrid2::radius_2[ 6] = 1.0
CarpetRegrid2::movement_threshold_2 = 0.16
CarpetRegrid2::num_levels_3 = 7
CarpetRegrid2::active_3 = no
CarpetRegrid2::radius_3[ 1] = 64.0
CarpetRegrid2::radius_3[ 2] = 16.0
CarpetRegrid2::radius_3[ 3] = 8.0
CarpetRegrid2::radius_3[ 4] = 4.0
CarpetRegrid2::radius_3[ 5] = 2.0
CarpetRegrid2::radius_3[ 6] = 1.0
CarpetRegrid2::movement_threshold_3 = 0.16
ActiveThorns = "MoL Time"
MoL::ODE_Method = "RK4"
MoL::MoL_Intermediate_Steps = 4
MoL::MoL_Num_Scratch_Levels = 1
Carpet::time_refinement_factors = "[1, 1, 2, 4, 8, 16, 32, 64, 128, 256]"
Time::dtfac = 0.25
ActiveThorns = "ADMBase ADMCoupling ADMMacros CoordGauge SpaceMask StaticConformal TmunuBase"
ADMMacros::spatial_order = 4
ActiveThorns = "TwoPunctures"
ADMBase::metric_type = "physical"
ADMBase::initial_data = "twopunctures"
ADMBase::initial_lapse = "twopunctures-averaged"
ADMBase::initial_shift = "zero"
ADMBase::initial_dtlapse = "zero"
ADMBase::initial_dtshift = "zero"
# needed for AHFinderDirect
ADMBase::metric_timelevels = 3
TwoPunctures::par_b = 1.168642873
TwoPunctures::par_m_plus = 0.453
TwoPunctures::par_m_minus = 0.453
TwoPunctures::par_P_plus [1] = +0.3331917498
TwoPunctures::par_P_minus[1] = -0.3331917498
#TODO# TwoPunctures::grid_setup_method = "evaluation"
TwoPunctures::TP_epsilon = 1.0e-2
TwoPunctures::TP_Tiny = 1.0e-2
TwoPunctures::verbose = yes
ActiveThorns = "ML_BSSN ML_BSSN_Helper NewRad"
ADMBase::evolution_method = "ML_BSSN"
ADMBase::lapse_evolution_method = "ML_BSSN"
ADMBase::shift_evolution_method = "ML_BSSN"
ADMBase::dtlapse_evolution_method = "ML_BSSN"
ADMBase::dtshift_evolution_method = "ML_BSSN"
ML_BSSN::harmonicN = 1 # 1+log
ML_BSSN::harmonicF = 2.0 # 1+log
ML_BSSN::ShiftGammaCoeff = 0.75
ML_BSSN::BetaDriver = 1.0
ML_BSSN::advectLapse = 1
ML_BSSN::advectShift = 1
ML_BSSN::MinimumLapse = 1.0e-8
ML_BSSN::initial_boundary_condition = "extrapolate-gammas"
ML_BSSN::rhs_boundary_condition = "NewRad"
Boundary::radpower = 2
ML_BSSN::ML_log_confac_bound = "none"
ML_BSSN::ML_metric_bound = "none"
ML_BSSN::ML_Gamma_bound = "none"
ML_BSSN::ML_trace_curv_bound = "none"
ML_BSSN::ML_curv_bound = "none"
ML_BSSN::ML_lapse_bound = "none"
ML_BSSN::ML_dtlapse_bound = "none"
ML_BSSN::ML_shift_bound = "none"
ML_BSSN::ML_dtshift_bound = "none"
ActiveThorns = "Dissipation"
Dissipation::order = 5
Dissipation::vars = "
ML_BSSN::ML_log_confac
ML_BSSN::ML_metric
ML_BSSN::ML_trace_curv
ML_BSSN::ML_curv
ML_BSSN::ML_Gamma
ML_BSSN::ML_lapse
ML_BSSN::ML_shift
ML_BSSN::ML_dtlapse
ML_BSSN::ML_dtshift
"
ActiveThorns = "ML_ADMConstraints"
ActiveThorns = "WeylScal4 Multipole"
WeylScal4::offset = 1e-8
WeylScal4::fd_order = "4th"
WeylScal4::verbose = 0
Multipole::nradii = 8
Multipole::out_every = 128
Multipole::radius[0] = 15
Multipole::radius[1] = 30
Multipole::radius[2] = 40
Multipole::radius[3] = 50
Multipole::radius[4] = 60
Multipole::radius[5] = 70
Multipole::radius[6] = 80
Multipole::radius[7] = 90
Multipole::variables = "WeylScal4::Psi4r{sw=-2 cmplx='WeylScal4::Psi4i' name='Psi4'}"
Multipole::l_max = 4
ActiveThorns = "AHFinderDirect"
AHFinderDirect::find_every = 128
AHFinderDirect::run_at_CCTK_POST_RECOVER_VARIABLES = no
AHFinderDirect::move_origins = yes
AHFinderDirect::reshape_while_moving = yes
AHFinderDirect::predict_origin_movement = yes
AHFinderDirect::geometry_interpolator_name = "Lagrange polynomial interpolation"
AHFinderDirect::geometry_interpolator_pars = "order=4"
AHFinderDirect::surface_interpolator_name = "Lagrange polynomial interpolation"
AHFinderDirect::surface_interpolator_pars = "order=4"
AHFinderDirect::output_h_every = 0
AHFinderDirect::N_horizons = 6
AHFinderDirect::origin_x [1] = +1.168642873
AHFinderDirect::initial_guess__coord_sphere__x_center[1] = +1.168642873
AHFinderDirect::initial_guess__coord_sphere__radius [1] = 0.25
AHFinderDirect::which_surface_to_store_info [1] = 0
AHFinderDirect::reset_horizon_after_not_finding [1] = no
AHFinderDirect::dont_find_after_individual_time [1] = 30.0
AHFinderDirect::origin_x [2] = -1.168642873
AHFinderDirect::initial_guess__coord_sphere__x_center[2] = -1.168642873
AHFinderDirect::initial_guess__coord_sphere__radius [2] = 0.25
AHFinderDirect::which_surface_to_store_info [2] = 1
AHFinderDirect::reset_horizon_after_not_finding [2] = no
AHFinderDirect::dont_find_after_individual_time [2] = 30.0
AHFinderDirect::initial_guess__coord_sphere__radius [3] = 1.0
AHFinderDirect::which_surface_to_store_info [3] = 2
AHFinderDirect::reset_horizon_after_not_finding [3] = no
AHFinderDirect::find_after_individual_time [3] = 15.0
AHFinderDirect::surface_definition [4] = "expansion product"
AHFinderDirect::surface_selection [4] = "areal radius"
AHFinderDirect::desired_value [4] = 50.0
AHFinderDirect::initial_guess__coord_sphere__radius [4] = 50.0
AHFinderDirect::which_surface_to_store_info [4] = 3
AHFinderDirect::reset_horizon_after_not_finding [4] = no
AHFinderDirect::depends_on [5] = 1
AHFinderDirect::desired_value_offset [5] = 0.001
AHFinderDirect::which_surface_to_store_info [5] = 4
AHFinderDirect::reset_horizon_after_not_finding [5] = no
AHFinderDirect::dont_find_after_individual_time [5] = 30.0
AHFinderDirect::depends_on [6] = 3
AHFinderDirect::desired_value_offset [6] = 0.001
AHFinderDirect::which_surface_to_store_info [6] = 5
AHFinderDirect::reset_horizon_after_not_finding [6] = no
AHFinderDirect::find_after_individual_time [6] = 15.0
ActiveThorns = "QuasiLocalMeasures"
QuasiLocalMeasures::verbose = yes
QuasiLocalMeasures::interpolator = "Lagrange polynomial interpolation"
QuasiLocalMeasures::interpolator_options = "order=4"
QuasiLocalMeasures::spatial_order = 4
QuasiLocalMeasures::num_surfaces = 6
QuasiLocalMeasures::surface_index[0] = 0
QuasiLocalMeasures::surface_index[1] = 1
QuasiLocalMeasures::surface_index[2] = 2
QuasiLocalMeasures::surface_index[3] = 3
QuasiLocalMeasures::surface_index[4] = 4
QuasiLocalMeasures::surface_index[5] = 5
ActiveThorns = "CarpetIOBasic"
IOBasic::outInfo_every = 128
IOBasic::outInfo_reductions = "norm2"
IOBasic::outInfo_vars = "
Carpet::physical_time_per_hour
ML_ADMConstraints::H
SphericalSurface::sf_radius
QuasiLocalMeasures::qlm_spin[0]
"
ActiveThorns = "CarpetIOScalar"
IOScalar::one_file_per_group = yes
IOScalar::outScalar_every = 128
IOScalar::outScalar_vars = "
CarpetReduce::weight
ADMBase::metric
ADMBase::curv
ADMBase::lapse
ADMBase::shift
ADMBase::dtlapse
ADMBase::dtshift
WEYLSCAL4::Psi4r
WEYLSCAL4::Psi4i
ML_ADMConstraints::ML_Ham
ML_ADMConstraints::ML_mom
SphericalSurface::sf_radius
QuasiLocalMeasures::qlm_newman_penrose
QuasiLocalMeasures::qlm_weyl_scalars
QuasiLocalMeasures::qlm_ricci_scalars
QuasiLocalMeasures::qlm_twometric
QuasiLocalMeasures::qlm_killing_vector
QuasiLocalMeasures::qlm_killed_twometric
QuasiLocalMeasures::qlm_invariant_coordinates
QuasiLocalMeasures::qlm_3determinant
"
ActiveThorns = "CarpetIOASCII"
IOASCII::one_file_per_group = yes
IOASCII::output_symmetry_points = no
IOASCII::out3D_ghosts = no
IOASCII::out0D_every = 128
IOASCII::out0D_vars = "
Carpet::timing
CarpetReduce::weight
ADMBase::metric
ADMBase::curv
ADMBase::lapse
ADMBase::shift
ADMBase::dtlapse
ADMBase::dtshift
WEYLSCAL4::Psi4r
WEYLSCAL4::Psi4i
ML_ADMConstraints::ML_Ham
ML_ADMConstraints::ML_mom
SphericalSurface::sf_active
SphericalSurface::sf_valid
SphericalSurface::sf_info
SphericalSurface::sf_radius
SphericalSurface::sf_origin
SphericalSurface::sf_coordinate_descriptors
QuasiLocalMeasures::qlm_state
QuasiLocalMeasures::qlm_grid_int
QuasiLocalMeasures::qlm_grid_real
QuasiLocalMeasures::qlm_scalars
QuasiLocalMeasures::qlm_multipole_moments
"
IOASCII::out1D_every = 128
IOASCII::out1D_vars = "
CarpetReduce::weight
ADMBase::metric
ADMBase::curv
ADMBase::lapse
ADMBase::shift
ADMBase::dtlapse
ADMBase::dtshift
WEYLSCAL4::Psi4r
WEYLSCAL4::Psi4i
ML_ADMConstraints::ML_Ham
ML_ADMConstraints::ML_mom
SphericalSurface::sf_radius
QuasiLocalMeasures::qlm_shapes
QuasiLocalMeasures::qlm_coordinates
QuasiLocalMeasures::qlm_tetrad_l
QuasiLocalMeasures::qlm_tetrad_n
QuasiLocalMeasures::qlm_tetrad_m
QuasiLocalMeasures::qlm_newman_penrose
QuasiLocalMeasures::qlm_weyl_scalars
QuasiLocalMeasures::qlm_ricci_scalars
QuasiLocalMeasures::qlm_twometric
QuasiLocalMeasures::qlm_killing_vector
QuasiLocalMeasures::qlm_killed_twometric
QuasiLocalMeasures::qlm_invariant_coordinates
QuasiLocalMeasures::qlm_3determinant
"
IOASCII::out2D_every = 128
IOASCII::out2D_vars = "
SphericalSurface::sf_radius
"
Activethorns = "CarpetIOHDF5"
IOHDF5::out_every = 512
IOHDF5::one_file_per_group = yes
IOHDF5::output_symmetry_points = no
IOHDF5::out3D_ghosts = no
IOHDF5::compression_level = 1
IOHDF5::use_checksums = yes
IOHDF5::out_vars = "
CarpetReduce::weight
ADMBase::metric
ADMBase::curv
ADMBase::lapse
ADMBase::shift
ADMBase::dtlapse
ADMBase::dtshift
WEYLSCAL4::Psi4r
WEYLSCAL4::Psi4i
ML_ADMConstraints::ML_Ham
ML_ADMConstraints::ML_mom
"
IOHDF5::checkpoint = yes
IO::checkpoint_dir = $parfile
IO::checkpoint_ID = yes
IO::checkpoint_every_walltime_hours = 6.0
IO::checkpoint_on_terminate = yes
IO::recover = "autoprobe"
IO::recover_dir = $parfile
ActiveThorns = "Formaline"
ActiveThorns = "TimerReport"
TimerReport::out_every = 5120
TimerReport::out_filename = "TimerReport"
TimerReport::output_all_timers_together = yes
TimerReport::output_all_timers_readable = yes
TimerReport::n_top_timers = 20
# Parameter definitions for thorn TwoPunctures
SHARES: ADMBase
USES KEYWORD metric_type
EXTENDS KEYWORD initial_data
{
"twopunctures" :: "two puncture black holes"
}
EXTENDS KEYWORD initial_lapse
{
"twopunctures-antisymmetric" :: "antisymmetric lapse for two puncture black holes, -1 <= alpha <= +1"
"twopunctures-averaged" :: "averaged lapse for two puncture black holes, 0 <= alpha <= +1"
"psi^n" :: "Based on the initial conformal factor"
"brownsville" :: "See Phys. Rev. D 74, 041501 (2006)"
}
SHARES: StaticConformal
USES KEYWORD conformal_storage
SHARES: IO
USES STRING out_dir
RESTRICTED:
BOOLEAN verbose "Print screen output while solving"
{
} "no"
BOOLEAN keep_u_around "Keep the variable u around after solving"
{
} "no"
BOOLEAN give_bare_mass "User provides bare masses rather than target ADM masses"
{
} "yes"
CCTK_REAL adm_tol "Tolerance of ADM masses when give_bare_mass=no"
{
(0:*) :: ""
} 1.0e-10
KEYWORD grid_setup_method "How to fill the 3D grid from the spectral grid"
{
"Taylor expansion" :: "use a Taylor expansion about the nearest collocation point (fast, but might be inaccurate)"
"evaluation" :: "evaluate using all spectral coefficients (slow)"
} "Taylor expansion"
INT npoints_A "Number of coefficients in the compactified radial direction"
{
4:* :: ""
} 30
INT npoints_B "Number of coefficients in the angular direction"
{
4:* :: ""
} 30
INT npoints_phi "Number of coefficients in the phi direction"
{
4:*:2 :: ""
} 16
REAL Newton_tol "Tolerance for Newton solver"
{
(0:*) :: ""
} 1.0e-10
INT Newton_maxit "Maximum number of Newton iterations"
{
0:* :: ""
} 5
REAL TP_epsilon "A small number to smooth out singularities at the puncture locations"
{
0:* :: ""
} 0.0
REAL TP_Tiny "Tiny number to avoid nans near or at the pucture locations"
{
0:* :: "anything positive, usually very small"
} 0.0
REAL TP_Extend_Radius "Radius of an extended spacetime instead of the puncture"
{
0:* :: "anything positive, should be smaller than the horizon"
} 0.0
REAL par_b "x coordinate of the m+ puncture" STEERABLE=always
{
(0.0:*) :: ""
} 1.0
REAL par_m_plus "mass of the m+ puncture" STEERABLE = ALWAYS
{
0.0:*) :: ""
} 1.0
REAL par_m_minus "mass of the m- puncture" STEERABLE = ALWAYS
{
0.0:*) :: ""
} 1.0
REAL target_M_plus "target ADM mass for m+"
{
0.0:*) :: ""
} 0.5
REAL target_M_minus "target ADM mass for m-"
{
0.0:*) :: ""
} 0.5
REAL par_P_plus[3] "momentum of the m+ puncture"
{
(*:*) :: ""
} 0.0
REAL par_P_minus[3] "momentum of the m- puncture"
{
(*:*) :: ""
} 0.0
REAL par_S_plus[3] "spin of the m+ puncture"
{
(*:*) :: ""
} 0.0
REAL par_S_minus[3] "spin of the m- puncture"
{
(*:*) :: ""
} 0.0
REAL center_offset[3] "offset b=0 to position (x,y,z)"
{
(*:*) :: ""
} 0.0
REAL initial_lapse_psi_exponent "Exponent n for psi^-n initial lapse profile"
{
(*:*) :: "Should be negative"
} -2.0
BOOLEAN swap_xz "Swap x and z coordinates when interpolating, so that the black holes are separated in the z direction"
{
} "no"
BOOLEAN use_sources "Use sources?"
{
} "no"
BOOLEAN rescale_sources "If sources are used - rescale them after solving?"
{
} "yes"
BOOLEAN use_external_initial_guess "Set initial guess by external function?"
{
} "no"
BOOLEAN do_residuum_debug_output "Output debug information about the residuum"
{
} "no"
BOOLEAN do_initial_debug_output "Output debug information about initial guess"
{
} "no"
BOOLEAN multiply_old_lapse "Multiply the old lapse with the new one"
{
} "no"
BOOLEAN schedule_in_ADMBase_InitialData "Schedule in (instead of after) ADMBase_InitialData"
{
} "yes"
BOOLEAN solve_momentum_constraint "Solve for momentum constraint?"
{
} "no"
# Schedule definitions for thorn TwoPunctures
if (CCTK_Equals(initial_data, "twopunctures"))
{
STORAGE: energy, angular_momentum, puncture_adm_mass, bare_mass
if (keep_u_around) {
STORAGE: puncture_u
}
SCHEDULE TwoPunctures_ParamCheck AT PARAMCHECK
{
LANG: C
} "Check parameters and thorn needs"
if (schedule_in_ADMBase_InitialData)
{
SCHEDULE GROUP TwoPunctures_Group IN ADMBase_InitialData
{
} "TwoPunctures initial data group"
}
else
{
SCHEDULE GROUP TwoPunctures_Group AT Initial AFTER ADMBase_InitialData BEFORE ADMBase_PostInitial AFTER HydroBase_Initial before SetTmunu before HydroBase_Prim2ConInitial
{
} "TwoPunctures initial data group"
}
SCHEDULE TwoPunctures IN TwoPunctures_Group
{
LANG: C
STORAGE: puncture_u
# SYNC: ADMBase::metric ADMBase::curv ADMBase::lapse
} "Create puncture black hole initial data"
SCHEDULE TwoPunctures_Metadata IN TwoPunctures_Group after TwoPunctures
{
LANG: C
OPTIONS: global
} "Output TwoPunctures metadata"
}
/* TwoPunctures: File "CoordTransf.c"*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <time.h>
#include <gsl/gsl_complex.h>
#include <gsl/gsl_complex_math.h>
#include "cctk_Parameters.h"
#include "TP_utilities.h"
#include "TwoPunctures.h"
/*-----------------------------------------------------------*/
void
AB_To_XR (int nvar, CCTK_REAL A, CCTK_REAL B, CCTK_REAL *X, CCTK_REAL *R,
derivs U)
/* On Entrance: U.d0[]=U[]; U.d1[] =U[]_A; U.d2[] =U[]_B; U.d3[] =U[]_3; */
/* U.d11[]=U[]_AA; U.d12[]=U[]_AB; U.d13[]=U[]_A3; */
/* U.d22[]=U[]_BB; U.d23[]=U[]_B3; U.d33[]=U[]_33; */
/* At Exit: U.d0[]=U[]; U.d1[] =U[]_X; U.d2[] =U[]_R; U.d3[] =U[]_3; */
/* U.d11[]=U[]_XX; U.d12[]=U[]_XR; U.d13[]=U[]_X3; */
/* U.d22[]=U[]_RR; U.d23[]=U[]_R3; U.d33[]=U[]_33; */
{
DECLARE_CCTK_PARAMETERS;
CCTK_REAL At = 0.5 * (A + 1), A_X, A_XX, B_R, B_RR;
int ivar;
*X = 2 * atanh (At);
*R = Pih + 2 * atan (B);
A_X = 1 - At * At;
A_XX = -At * A_X;
B_R = 0.5 * (1 + B * B);
B_RR = B * B_R;
for (ivar = 0; ivar < nvar; ivar++)
{
U.d11[ivar] = A_X * A_X * U.d11[ivar] + A_XX * U.d1[ivar];
U.d12[ivar] = A_X * B_R * U.d12[ivar];
U.d13[ivar] = A_X * U.d13[ivar];
U.d22[ivar] = B_R * B_R * U.d22[ivar] + B_RR * U.d2[ivar];
U.d23[ivar] = B_R * U.d23[ivar];
U.d1[ivar] = A_X * U.d1[ivar];
U.d2[ivar] = B_R * U.d2[ivar];
}
}
/*-----------------------------------------------------------*/
void
C_To_c (int nvar, CCTK_REAL X, CCTK_REAL R, CCTK_REAL *x, CCTK_REAL *r,
derivs U)
/* On Entrance: U.d0[]=U[]; U.d1[] =U[]_X; U.d2[] =U[]_R; U.d3[] =U[]_3; */
/* U.d11[]=U[]_XX; U.d12[]=U[]_XR; U.d13[]=U[]_X3; */
/* U.d22[]=U[]_RR; U.d23[]=U[]_R3; U.d33[]=U[]_33; */
/* At Exit: U.d0[]=U[]; U.d1[] =U[]_x; U.d2[] =U[]_r; U.d3[] =U[]_3; */
/* U.d11[]=U[]_xx; U.d12[]=U[]_xr; U.d13[]=U[]_x3; */
/* U.d22[]=U[]_rr; U.d23[]=U[]_r3; U.d33[]=U[]_33; */
{
DECLARE_CCTK_PARAMETERS;
CCTK_REAL C_c2, U_cb, U_CB;
gsl_complex C, C_c, C_cc, c, c_C, c_CC, U_c, U_cc, U_C, U_CC;
int ivar;
C = gsl_complex_rect (X, R);
c = gsl_complex_mul_real (gsl_complex_cosh (C), par_b); /* c=b*cosh(C)*/
c_C = gsl_complex_mul_real (gsl_complex_sinh (C), par_b);
c_CC = c;
C_c = gsl_complex_inverse (c_C);
C_cc = gsl_complex_negative (gsl_complex_mul (gsl_complex_mul (C_c, C_c), gsl_complex_mul (C_c, c_CC)));
C_c2 = gsl_complex_abs2 (C_c);
for (ivar = 0; ivar < nvar; ivar++)
{
/* U_C = 0.5*(U_X3-i*U_R3)*/
/* U_c = U_C*C_c = 0.5*(U_x3-i*U_r3)*/
U_C = gsl_complex_rect (0.5 * U.d13[ivar], -0.5 * U.d23[ivar]);
U_c = gsl_complex_mul (U_C, C_c);
U.d13[ivar] = 2. * GSL_REAL(U_c);
U.d23[ivar] = -2. * GSL_IMAG(U_c);
/* U_C = 0.5*(U_X-i*U_R)*/
/* U_c = U_C*C_c = 0.5*(U_x-i*U_r)*/
U_C = gsl_complex_rect (0.5 * U.d1[ivar], -0.5 * U.d2[ivar]);
U_c = gsl_complex_mul (U_C, C_c);
U.d1[ivar] = 2. * GSL_REAL(U_c);
U.d2[ivar] = -2. * GSL_IMAG(U_c);
/* U_CC = 0.25*(U_XX-U_RR-2*i*U_XR)*/
/* U_CB = d^2(U)/(dC*d\bar{C}) = 0.25*(U_XX+U_RR)*/
U_CC = gsl_complex_rect (0.25 * (U.d11[ivar] - U.d22[ivar]), -0.5 * U.d12[ivar]);
U_CB = 0.25 * (U.d11[ivar] + U.d22[ivar]);
/* U_cc = C_cc*U_C+(C_c)^2*U_CC*/
U_cb = U_CB * C_c2;
U_cc = gsl_complex_add (gsl_complex_mul (C_cc, U_C), gsl_complex_mul (gsl_complex_mul (C_c, C_c), U_CC));
/* U_xx = 2*(U_cb+Re[U_cc])*/
/* U_rr = 2*(U_cb-Re[U_cc])*/
/* U_rx = -2*Im[U_cc]*/
U.d11[ivar] = 2 * (U_cb + GSL_REAL(U_cc));
U.d22[ivar] = 2 * (U_cb - GSL_REAL(U_cc));
U.d12[ivar] = -2 * GSL_IMAG(U_cc);
}
*x = GSL_REAL(c);
*r = GSL_IMAG(c);
}
/*-----------------------------------------------------------*/
void
rx3_To_xyz (int nvar, CCTK_REAL x, CCTK_REAL r, CCTK_REAL phi,
CCTK_REAL *y, CCTK_REAL *z, derivs U)
/* On Entrance: U.d0[]=U[]; U.d1[] =U[]_x; U.d2[] =U[]_r; U.d3[] =U[]_3; */
/* U.d11[]=U[]_xx; U.d12[]=U[]_xr; U.d13[]=U[]_x3; */
/* U.d22[]=U[]_rr; U.d23[]=U[]_r3; U.d33[]=U[]_33; */
/* At Exit: U.d0[]=U[]; U.d1[] =U[]_x; U.d2[] =U[]_y; U.dz[] =U[]_z; */
/* U.d11[]=U[]_xx; U.d12[]=U[]_xy; U.d1z[]=U[]_xz; */
/* U.d22[]=U[]_yy; U.d2z[]=U[]_yz; U.dzz[]=U[]_zz; */
{
int jvar;
CCTK_REAL
sin_phi = sin (phi),
cos_phi = cos (phi),
sin2_phi = sin_phi * sin_phi,
cos2_phi = cos_phi * cos_phi,
sin_2phi = 2 * sin_phi * cos_phi,
cos_2phi = cos2_phi - sin2_phi, r_inv = 1 / r, r_inv2 = r_inv * r_inv;
*y = r * cos_phi;
*z = r * sin_phi;
for (jvar = 0; jvar < nvar; jvar++)
{
CCTK_REAL U_x = U.d1[jvar], U_r = U.d2[jvar], U_3 = U.d3[jvar],
U_xx = U.d11[jvar], U_xr = U.d12[jvar], U_x3 = U.d13[jvar],
U_rr = U.d22[jvar], U_r3 = U.d23[jvar], U_33 = U.d33[jvar];
U.d1[jvar] = U_x; /* U_x*/
U.d2[jvar] = U_r * cos_phi - U_3 * r_inv * sin_phi; /* U_y*/
U.d3[jvar] = U_r * sin_phi + U_3 * r_inv * cos_phi; /* U_z*/
U.d11[jvar] = U_xx; /* U_xx*/
U.d12[jvar] = U_xr * cos_phi - U_x3 * r_inv * sin_phi; /* U_xy*/
U.d13[jvar] = U_xr * sin_phi + U_x3 * r_inv * cos_phi; /* U_xz*/
U.d22[jvar] = U_rr * cos2_phi + r_inv2 * sin2_phi * (U_33 + r * U_r) /* U_yy*/
+ sin_2phi * r_inv2 * (U_3 - r * U_r3);
U.d23[jvar] = 0.5 * sin_2phi * (U_rr - r_inv * U_r - r_inv2 * U_33) /* U_yz*/
- cos_2phi * r_inv2 * (U_3 - r * U_r3);
U.d33[jvar] = U_rr * sin2_phi + r_inv2 * cos2_phi * (U_33 + r * U_r) /* U_zz*/
- sin_2phi * r_inv2 * (U_3 - r * U_r3);
}
}
/*-----------------------------------------------------------*/
/* TwoPunctures: File "Equations.c"*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include "cctk_Parameters.h"
#include "TP_utilities.h"
#include "TwoPunctures.h"
/* U.d0[ivar] = U[ivar]; (ivar = 0..nvar-1) */
/* U.d1[ivar] = U[ivar]_x; */
/* U.d2[ivar] = U[ivar]_y; */
/* U.d3[ivar] = U[ivar]_z; */
/* U.d11[ivar] = U[ivar]_xx; */
/* U.d12[ivar] = U[ivar]_xy; */
/* U.d13[ivar] = U[ivar]_xz;*/
/* U.d22[ivar] = U[ivar]_yy;*/
/* U.d23[ivar] = U[ivar]_yz;*/
/* U.d33[ivar] = U[ivar]_zz;*/
CCTK_REAL
BY_KKofxyz (CCTK_REAL x, CCTK_REAL y, CCTK_REAL z)
{
DECLARE_CCTK_PARAMETERS;
int i, j;
CCTK_REAL r_plus, r2_plus, r3_plus, r_minus, r2_minus, r3_minus, np_Pp, nm_Pm,
Aij, AijAij, n_plus[3], n_minus[3], np_Sp[3], nm_Sm[3];
r2_plus = (x - par_b) * (x - par_b) + y * y + z * z;
r2_minus = (x + par_b) * (x + par_b) + y * y + z * z;
r_plus = sqrt (r2_plus);
r_minus = sqrt (r2_minus);
r3_plus = r_plus * r2_plus;
r3_minus = r_minus * r2_minus;
n_plus[0] = (x - par_b) / r_plus;
n_minus[0] = (x + par_b) / r_minus;
n_plus[1] = y / r_plus;
n_minus[1] = y / r_minus;
n_plus[2] = z / r_plus;
n_minus[2] = z / r_minus;
/* dot product: np_Pp = (n_+).(P_+); nm_Pm = (n_-).(P_-) */
np_Pp = 0;
nm_Pm = 0;
for (i = 0; i < 3; i++)
{
np_Pp += n_plus[i] * par_P_plus[i];
nm_Pm += n_minus[i] * par_P_minus[i];
}
/* cross product: np_Sp[i] = [(n_+) x (S_+)]_i; nm_Sm[i] = [(n_-) x (S_-)]_i*/
np_Sp[0] = n_plus[1] * par_S_plus[2] - n_plus[2] * par_S_plus[1];
np_Sp[1] = n_plus[2] * par_S_plus[0] - n_plus[0] * par_S_plus[2];
np_Sp[2] = n_plus[0] * par_S_plus[1] - n_plus[1] * par_S_plus[0];
nm_Sm[0] = n_minus[1] * par_S_minus[2] - n_minus[2] * par_S_minus[1];
nm_Sm[1] = n_minus[2] * par_S_minus[0] - n_minus[0] * par_S_minus[2];
nm_Sm[2] = n_minus[0] * par_S_minus[1] - n_minus[1] * par_S_minus[0];
AijAij = 0;
for (i = 0; i < 3; i++)
{
for (j = 0; j < 3; j++)
{ /* Bowen-York-Curvature :*/
Aij =
+ 1.5 * (par_P_plus[i] * n_plus[j] + par_P_plus[j] * n_plus[i]
+ np_Pp * n_plus[i] * n_plus[j]) / r2_plus
+ 1.5 * (par_P_minus[i] * n_minus[j] + par_P_minus[j] * n_minus[i]
+ nm_Pm * n_minus[i] * n_minus[j]) / r2_minus
- 3.0 * (np_Sp[i] * n_plus[j] + np_Sp[j] * n_plus[i]) / r3_plus
- 3.0 * (nm_Sm[i] * n_minus[j] + nm_Sm[j] * n_minus[i]) / r3_minus;
if (i == j)
Aij -= +1.5 * (np_Pp / r2_plus + nm_Pm / r2_minus);
AijAij += Aij * Aij;
}
}
return AijAij;
}
void
BY_Aijofxyz (CCTK_REAL x, CCTK_REAL y, CCTK_REAL z, CCTK_REAL Aij[3][3])
{
DECLARE_CCTK_PARAMETERS;
int i, j;
CCTK_REAL r_plus, r2_plus, r3_plus, r_minus, r2_minus, r3_minus, np_Pp, nm_Pm,
n_plus[3], n_minus[3], np_Sp[3], nm_Sm[3];
r2_plus = (x - par_b) * (x - par_b) + y * y + z * z;
r2_minus = (x + par_b) * (x + par_b) + y * y + z * z;
r2_plus = sqrt (pow (r2_plus, 2) + pow (TP_epsilon, 4));
r2_minus = sqrt (pow (r2_minus, 2) + pow (TP_epsilon, 4));
if (r2_plus < pow(TP_Tiny,2))
r2_plus = pow(TP_Tiny,2);
if (r2_minus < pow(TP_Tiny,2))
r2_minus = pow(TP_Tiny,2);
r_plus = sqrt (r2_plus);
r_minus = sqrt (r2_minus);
r3_plus = r_plus * r2_plus;
r3_minus = r_minus * r2_minus;
n_plus[0] = (x - par_b) / r_plus;
n_minus[0] = (x + par_b) / r_minus;
n_plus[1] = y / r_plus;
n_minus[1] = y / r_minus;
n_plus[2] = z / r_plus;
n_minus[2] = z / r_minus;
/* dot product: np_Pp = (n_+).(P_+); nm_Pm = (n_-).(P_-) */
np_Pp = 0;
nm_Pm = 0;
for (i = 0; i < 3; i++)
{
np_Pp += n_plus[i] * par_P_plus[i];
nm_Pm += n_minus[i] * par_P_minus[i];
}
/* cross product: np_Sp[i] = [(n_+) x (S_+)]_i; nm_Sm[i] = [(n_-) x (S_-)]_i*/
np_Sp[0] = n_plus[1] * par_S_plus[2] - n_plus[2] * par_S_plus[1];
np_Sp[1] = n_plus[2] * par_S_plus[0] - n_plus[0] * par_S_plus[2];
np_Sp[2] = n_plus[0] * par_S_plus[1] - n_plus[1] * par_S_plus[0];
nm_Sm[0] = n_minus[1] * par_S_minus[2] - n_minus[2] * par_S_minus[1];
nm_Sm[1] = n_minus[2] * par_S_minus[0] - n_minus[0] * par_S_minus[2];
nm_Sm[2] = n_minus[0] * par_S_minus[1] - n_minus[1] * par_S_minus[0];
for (i = 0; i < 3; i++)
{
for (j = 0; j < 3; j++)
{ /* Bowen-York-Curvature :*/
Aij[i][j] =
+ 1.5 * (par_P_plus[i] * n_plus[j] + par_P_plus[j] * n_plus[i]
+ np_Pp * n_plus[i] * n_plus[j]) / r2_plus
+ 1.5 * (par_P_minus[i] * n_minus[j] + par_P_minus[j] * n_minus[i]
+ nm_Pm * n_minus[i] * n_minus[j]) / r2_minus
- 3.0 * (np_Sp[i] * n_plus[j] + np_Sp[j] * n_plus[i]) / r3_plus
- 3.0 * (nm_Sm[i] * n_minus[j] + nm_Sm[j] * n_minus[i]) / r3_minus;
if (i == j)
Aij[i][j] -= +1.5 * (np_Pp / r2_plus + nm_Pm / r2_minus);
}
}
}
/*-----------------------------------------------------------*/
/******** Nonlinear Equations ***********/
/*-----------------------------------------------------------*/
void
NonLinEquations (CCTK_REAL rho_adm,
CCTK_REAL A, CCTK_REAL B, CCTK_REAL X, CCTK_REAL R,
CCTK_REAL x, CCTK_REAL r, CCTK_REAL phi,
CCTK_REAL y, CCTK_REAL z, derivs U, CCTK_REAL *values)
{
DECLARE_CCTK_PARAMETERS;
CCTK_REAL r_plus, r_minus, psi, psi2, psi4, psi7;
r_plus = sqrt ((x - par_b) * (x - par_b) + y * y + z * z);
r_minus = sqrt ((x + par_b) * (x + par_b) + y * y + z * z);
psi =
1. + 0.5 * par_m_plus / r_plus + 0.5 * par_m_minus / r_minus + U.d0[0];
psi2 = psi * psi;
psi4 = psi2 * psi2;
psi7 = psi * psi2 * psi4;
values[0] =
U.d11[0] + U.d22[0] + U.d33[0] + 0.125 * BY_KKofxyz (x, y, z) / psi7 +
2.0 * Pi / psi2/psi * rho_adm;
}
/*-----------------------------------------------------------*/
/******** Linear Equations ***********/
/*-----------------------------------------------------------*/
void
LinEquations (CCTK_REAL A, CCTK_REAL B, CCTK_REAL X, CCTK_REAL R,
CCTK_REAL x, CCTK_REAL r, CCTK_REAL phi,
CCTK_REAL y, CCTK_REAL z, derivs dU, derivs U, CCTK_REAL *values)
{
DECLARE_CCTK_PARAMETERS;
CCTK_REAL r_plus, r_minus, psi, psi2, psi4, psi8;
r_plus = sqrt ((x - par_b) * (x - par_b) + y * y + z * z);
r_minus = sqrt ((x + par_b) * (x + par_b) + y * y + z * z);
psi =
1. + 0.5 * par_m_plus / r_plus + 0.5 * par_m_minus / r_minus + U.d0[0];
psi2 = psi * psi;
psi4 = psi2 * psi2;
psi8 = psi4 * psi4;
values[0] = dU.d11[0] + dU.d22[0] + dU.d33[0]
- 0.875 * BY_KKofxyz (x, y, z) / psi8 * dU.d0[0];
}
/*-----------------------------------------------------------*/
/* TwoPunctures: File "FuncAndJacobian.c"*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <time.h>
#include "cctk.h"
#include "cctk_Parameters.h"
#include "TP_utilities.h"
#include "TwoPunctures.h"
#define FAC sin(al)*sin(be)*sin(al)*sin(be)*sin(al)*sin(be)
/*#define FAC sin(al)*sin(be)*sin(al)*sin(be)*/
/*#define FAC 1*/
static inline CCTK_REAL min (CCTK_REAL const x, CCTK_REAL const y)
{
return x<y ? x : y;
}
/* --------------------------------------------------------------------------*/
int
Index (int ivar, int i, int j, int k, int nvar, int n1, int n2, int n3)
{
int i1 = i, j1 = j, k1 = k;
if (i1 < 0)
i1 = -(i1 + 1);
if (i1 >= n1)
i1 = 2 * n1 - (i1 + 1);
if (j1 < 0)
j1 = -(j1 + 1);
if (j1 >= n2)
j1 = 2 * n2 - (j1 + 1);
if (k1 < 0)
k1 = k1 + n3;
if (k1 >= n3)
k1 = k1 - n3;
return ivar + nvar * (i1 + n1 * (j1 + n2 * k1));
}
/* --------------------------------------------------------------------------*/
void
allocate_derivs (derivs * v, int n)
{
int m = n - 1;
(*v).d0 = dvector (0, m);
(*v).d1 = dvector (0, m);
(*v).d2 = dvector (0, m);
(*v).d3 = dvector (0, m);
(*v).d11 = dvector (0, m);
(*v).d12 = dvector (0, m);
(*v).d13 = dvector (0, m);
(*v).d22 = dvector (0, m);
(*v).d23 = dvector (0, m);
(*v).d33 = dvector (0, m);
}
/* --------------------------------------------------------------------------*/
void
free_derivs (derivs * v, int n)
{
int m = n - 1;
free_dvector ((*v).d0, 0, m);
free_dvector ((*v).d1, 0, m);
free_dvector ((*v).d2, 0, m);
free_dvector ((*v).d3, 0, m);
free_dvector ((*v).d11, 0, m);
free_dvector ((*v).d12, 0, m);
free_dvector ((*v).d13, 0, m);
free_dvector ((*v).d22, 0, m);
free_dvector ((*v).d23, 0, m);
free_dvector ((*v).d33, 0, m);
}
/* --------------------------------------------------------------------------*/
void
Derivatives_AB3 (int nvar, int n1, int n2, int n3, derivs v)
{
int i, j, k, ivar, N, *indx;
CCTK_REAL *p, *dp, *d2p, *q, *dq, *r, *dr;
N = maximum3 (n1, n2, n3);
p = dvector (0, N);
dp = dvector (0, N);
d2p = dvector (0, N);
q = dvector (0, N);
dq = dvector (0, N);
r = dvector (0, N);
dr = dvector (0, N);
indx = ivector (0, N);
for (ivar = 0; ivar < nvar; ivar++)
{
for (k = 0; k < n3; k++)
{ /* Calculation of Derivatives w.r.t. A-Dir. */
for (j = 0; j < n2; j++)
{ /* (Chebyshev_Zeros)*/
for (i = 0; i < n1; i++)
{
indx[i] = Index (ivar, i, j, k, nvar, n1, n2, n3);
p[i] = v.d0[indx[i]];
}
chebft_Zeros (p, n1, 0);
chder (p, dp, n1);
chder (dp, d2p, n1);
chebft_Zeros (dp, n1, 1);
chebft_Zeros (d2p, n1, 1);
for (i = 0; i < n1; i++)
{
v.d1[indx[i]] = dp[i];
v.d11[indx[i]] = d2p[i];
}
}
}
for (k = 0; k < n3; k++)
{ /* Calculation of Derivatives w.r.t. B-Dir. */
for (i = 0; i < n1; i++)
{ /* (Chebyshev_Zeros)*/
for (j = 0; j < n2; j++)
{
indx[j] = Index (ivar, i, j, k, nvar, n1, n2, n3);
p[j] = v.d0[indx[j]];
q[j] = v.d1[indx[j]];
}
chebft_Zeros (p, n2, 0);
chebft_Zeros (q, n2, 0);
chder (p, dp, n2);
chder (dp, d2p, n2);
chder (q, dq, n2);
chebft_Zeros (dp, n2, 1);
chebft_Zeros (d2p, n2, 1);
chebft_Zeros (dq, n2, 1);
for (j = 0; j < n2; j++)
{
v.d2[indx[j]] = dp[j];
v.d22[indx[j]] = d2p[j];
v.d12[indx[j]] = dq[j];
}
}
}
for (i = 0; i < n1; i++)
{ /* Calculation of Derivatives w.r.t. phi-Dir. (Fourier)*/
for (j = 0; j < n2; j++)
{
for (k = 0; k < n3; k++)
{
indx[k] = Index (ivar, i, j, k, nvar, n1, n2, n3);
p[k] = v.d0[indx[k]];
q[k] = v.d1[indx[k]];
r[k] = v.d2[indx[k]];
}
fourft (p, n3, 0);
fourder (p, dp, n3);
fourder2 (p, d2p, n3);
fourft (dp, n3, 1);
fourft (d2p, n3, 1);
fourft (q, n3, 0);
fourder (q, dq, n3);
fourft (dq, n3, 1);
fourft (r, n3, 0);
fourder (r, dr, n3);
fourft (dr, n3, 1);
for (k = 0; k < n3; k++)
{
v.d3[indx[k]] = dp[k];
v.d33[indx[k]] = d2p[k];
v.d13[indx[k]] = dq[k];
v.d23[indx[k]] = dr[k];
}
}
}
}
free_dvector (p, 0, N);
free_dvector (dp, 0, N);
free_dvector (d2p, 0, N);
free_dvector (q, 0, N);
free_dvector (dq, 0, N);
free_dvector (r, 0, N);
free_dvector (dr, 0, N);
free_ivector (indx, 0, N);
}
/* --------------------------------------------------------------------------*/
void
F_of_v (CCTK_POINTER_TO_CONST cctkGH,
int nvar, int n1, int n2, int n3, derivs v, CCTK_REAL *F,
derivs u)
{
/* Calculates the left hand sides of the non-linear equations F_m(v_n)=0*/
/* and the function u (u.d0[]) as well as its derivatives*/
/* (u.d1[], u.d2[], u.d3[], u.d11[], u.d12[], u.d13[], u.d22[], u.d23[], u.d33[])*/
/* at interior points and at the boundaries "+/-"*/
DECLARE_CCTK_PARAMETERS;
int i, j, k, ivar, indx;
CCTK_REAL al, be, A, B, X, R, x, r, phi, y, z, Am1, *values;
derivs U;
CCTK_REAL *sources;
values = dvector (0, nvar - 1);
allocate_derivs (&U, nvar);
sources=calloc(n1*n2*n3, sizeof(CCTK_REAL));
if (use_sources)
{
CCTK_REAL *s_x, *s_y, *s_z;
CCTK_INT i3D;
s_x =calloc(n1*n2*n3, sizeof(CCTK_REAL));
s_y =calloc(n1*n2*n3, sizeof(CCTK_REAL));
s_z =calloc(n1*n2*n3, sizeof(CCTK_REAL));
for (i = 0; i < n1; i++)
for (j = 0; j < n2; j++)
for (k = 0; k < n3; k++)
{
i3D = Index(0,i,j,k,1,n1,n2,n3);
al = Pih * (2 * i + 1) / n1;
A = -cos (al);
be = Pih * (2 * j + 1) / n2;
B = -cos (be);
phi = 2. * Pi * k / n3;
Am1 = A - 1;
for (ivar = 0; ivar < nvar; ivar++)
{
indx = Index (ivar, i, j, k, nvar, n1, n2, n3);
U.d0[ivar] = Am1 * v.d0[indx]; /* U*/
U.d1[ivar] = v.d0[indx] + Am1 * v.d1[indx]; /* U_A*/
U.d2[ivar] = Am1 * v.d2[indx]; /* U_B*/
U.d3[ivar] = Am1 * v.d3[indx]; /* U_3*/
U.d11[ivar] = 2 * v.d1[indx] + Am1 * v.d11[indx]; /* U_AA*/
U.d12[ivar] = v.d2[indx] + Am1 * v.d12[indx]; /* U_AB*/
U.d13[ivar] = v.d3[indx] + Am1 * v.d13[indx]; /* U_AB*/
U.d22[ivar] = Am1 * v.d22[indx]; /* U_BB*/
U.d23[ivar] = Am1 * v.d23[indx]; /* U_B3*/
U.d33[ivar] = Am1 * v.d33[indx]; /* U_33*/
}
/* Calculation of (X,R) and*/
/* (U_X, U_R, U_3, U_XX, U_XR, U_X3, U_RR, U_R3, U_33)*/
AB_To_XR (nvar, A, B, &X, &R, U);
/* Calculation of (x,r) and*/
/* (U, U_x, U_r, U_3, U_xx, U_xr, U_x3, U_rr, U_r3, U_33)*/
C_To_c (nvar, X, R, &(s_x[i3D]), &r, U);
/* Calculation of (y,z) and*/
/* (U, U_x, U_y, U_z, U_xx, U_xy, U_xz, U_yy, U_yz, U_zz)*/
rx3_To_xyz (nvar, s_x[i3D], r, phi, &(s_y[i3D]), &(s_z[i3D]), U);
}
Set_Rho_ADM(cctkGH, n1*n2*n3, sources, s_x, s_y, s_z);
free(s_z);
free(s_y);
free(s_x);
}
else
for (i = 0; i < n1; i++)
for (j = 0; j < n2; j++)
for (k = 0; k < n3; k++)
sources[Index(0,i,j,k,1,n1,n2,n3)]=0.0;
Derivatives_AB3 (nvar, n1, n2, n3, v);
CCTK_REAL psi, psi2, psi4, psi7, r_plus, r_minus;
FILE *debugfile = NULL;
if (do_residuum_debug_output && CCTK_MyProc(cctkGH) == 0)
{
debugfile = fopen("res.dat", "w");
assert(debugfile);
}
for (i = 0; i < n1; i++)
{
for (j = 0; j < n2; j++)
{
for (k = 0; k < n3; k++)
{
al = Pih * (2 * i + 1) / n1;
A = -cos (al);
be = Pih * (2 * j + 1) / n2;
B = -cos (be);
phi = 2. * Pi * k / n3;
Am1 = A - 1;
for (ivar = 0; ivar < nvar; ivar++)
{
indx = Index (ivar, i, j, k, nvar, n1, n2, n3);
U.d0[ivar] = Am1 * v.d0[indx]; /* U*/
U.d1[ivar] = v.d0[indx] + Am1 * v.d1[indx]; /* U_A*/
U.d2[ivar] = Am1 * v.d2[indx]; /* U_B*/
U.d3[ivar] = Am1 * v.d3[indx]; /* U_3*/
U.d11[ivar] = 2 * v.d1[indx] + Am1 * v.d11[indx]; /* U_AA*/
U.d12[ivar] = v.d2[indx] + Am1 * v.d12[indx]; /* U_AB*/
U.d13[ivar] = v.d3[indx] + Am1 * v.d13[indx]; /* U_AB*/
U.d22[ivar] = Am1 * v.d22[indx]; /* U_BB*/
U.d23[ivar] = Am1 * v.d23[indx]; /* U_B3*/
U.d33[ivar] = Am1 * v.d33[indx]; /* U_33*/
}
/* Calculation of (X,R) and*/
/* (U_X, U_R, U_3, U_XX, U_XR, U_X3, U_RR, U_R3, U_33)*/
AB_To_XR (nvar, A, B, &X, &R, U);
/* Calculation of (x,r) and*/
/* (U, U_x, U_r, U_3, U_xx, U_xr, U_x3, U_rr, U_r3, U_33)*/
C_To_c (nvar, X, R, &x, &r, U);
/* Calculation of (y,z) and*/
/* (U, U_x, U_y, U_z, U_xx, U_xy, U_xz, U_yy, U_yz, U_zz)*/
rx3_To_xyz (nvar, x, r, phi, &y, &z, U);
NonLinEquations (sources[Index(0,i,j,k,1,n1,n2,n3)],
A, B, X, R, x, r, phi, y, z, U, values);
for (ivar = 0; ivar < nvar; ivar++)
{
indx = Index (ivar, i, j, k, nvar, n1, n2, n3);
F[indx] = values[ivar] * FAC;
/* if ((i<5) && ((j<5) || (j>n2-5)))*/
/* F[indx] = 0.0;*/
u.d0[indx] = U.d0[ivar]; /* U*/
u.d1[indx] = U.d1[ivar]; /* U_x*/
u.d2[indx] = U.d2[ivar]; /* U_y*/
u.d3[indx] = U.d3[ivar]; /* U_z*/
u.d11[indx] = U.d11[ivar]; /* U_xx*/
u.d12[indx] = U.d12[ivar]; /* U_xy*/
u.d13[indx] = U.d13[ivar]; /* U_xz*/
u.d22[indx] = U.d22[ivar]; /* U_yy*/
u.d23[indx] = U.d23[ivar]; /* U_yz*/
u.d33[indx] = U.d33[ivar]; /* U_zz*/
}
if (debugfile && (k==0))
{
r_plus = sqrt ((x - par_b) * (x - par_b) + y * y + z * z);
r_minus = sqrt ((x + par_b) * (x + par_b) + y * y + z * z);
psi = 1.+
0.5 * par_m_plus / r_plus +
0.5 * par_m_minus / r_minus +
U.d0[0];
psi2 = psi * psi;
psi4 = psi2 * psi2;
psi7 = psi * psi2 * psi4;
fprintf(debugfile,
"%.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g\n",
(double)x, (double)y, (double)A, (double)B,
(double)(U.d11[0] +
U.d22[0] +
U.d33[0] +
/* 0.125 * BY_KKofxyz (x, y, z) / psi7 +*/
(2.0 * Pi / psi2/psi * sources[indx]) * FAC),
(double)((U.d11[0] +
U.d22[0] +
U.d33[0])*FAC),
(double)(-(2.0 * Pi / psi2/psi * sources[indx]) * FAC),
(double)sources[indx]
/*(double)F[indx]*/
);
}
}
}
}
if (debugfile)
{
fclose(debugfile);
}
free(sources);
free_dvector (values, 0, nvar - 1);
free_derivs (&U, nvar);
}
/* --------------------------------------------------------------------------*/
void
J_times_dv (int nvar, int n1, int n2, int n3, derivs dv,
CCTK_REAL *Jdv, derivs u)
{ /* Calculates the left hand sides of the non-linear equations F_m(v_n)=0*/
/* and the function u (u.d0[]) as well as its derivatives*/
/* (u.d1[], u.d2[], u.d3[], u.d11[], u.d12[], u.d13[], u.d22[], u.d23[], u.d33[])*/
/* at interior points and at the boundaries "+/-"*/
DECLARE_CCTK_PARAMETERS;
int i, j, k, ivar, indx;
CCTK_REAL al, be, A, B, X, R, x, r, phi, y, z, Am1, *values;
derivs dU, U;
Derivatives_AB3 (nvar, n1, n2, n3, dv);
#pragma omp parallel for private (values,dU,U,i,j,k,al,A,be,B,phi,X,R,x,r,y,z,Am1,ivar,indx) schedule(dynamic)
for (i = 0; i < n1; i++)
{
values = dvector (0, nvar - 1);
allocate_derivs (&dU, nvar);
allocate_derivs (&U, nvar);
for (j = 0; j < n2; j++)
{
for (k = 0; k < n3; k++)
{
al = Pih * (2 * i + 1) / n1;
A = -cos (al);
be = Pih * (2 * j + 1) / n2;
B = -cos (be);
phi = 2. * Pi * k / n3;
Am1 = A - 1;
for (ivar = 0; ivar < nvar; ivar++)
{
indx = Index (ivar, i, j, k, nvar, n1, n2, n3);
dU.d0[ivar] = Am1 * dv.d0[indx]; /* dU*/
dU.d1[ivar] = dv.d0[indx] + Am1 * dv.d1[indx]; /* dU_A*/
dU.d2[ivar] = Am1 * dv.d2[indx]; /* dU_B*/
dU.d3[ivar] = Am1 * dv.d3[indx]; /* dU_3*/
dU.d11[ivar] = 2 * dv.d1[indx] + Am1 * dv.d11[indx]; /* dU_AA*/
dU.d12[ivar] = dv.d2[indx] + Am1 * dv.d12[indx]; /* dU_AB*/
dU.d13[ivar] = dv.d3[indx] + Am1 * dv.d13[indx]; /* dU_AB*/
dU.d22[ivar] = Am1 * dv.d22[indx]; /* dU_BB*/
dU.d23[ivar] = Am1 * dv.d23[indx]; /* dU_B3*/
dU.d33[ivar] = Am1 * dv.d33[indx]; /* dU_33*/
U.d0[ivar] = u.d0[indx]; /* U */
U.d1[ivar] = u.d1[indx]; /* U_x*/
U.d2[ivar] = u.d2[indx]; /* U_y*/
U.d3[ivar] = u.d3[indx]; /* U_z*/
U.d11[ivar] = u.d11[indx]; /* U_xx*/
U.d12[ivar] = u.d12[indx]; /* U_xy*/
U.d13[ivar] = u.d13[indx]; /* U_xz*/
U.d22[ivar] = u.d22[indx]; /* U_yy*/
U.d23[ivar] = u.d23[indx]; /* U_yz*/
U.d33[ivar] = u.d33[indx]; /* U_zz*/
}
/* Calculation of (X,R) and*/
/* (dU_X, dU_R, dU_3, dU_XX, dU_XR, dU_X3, dU_RR, dU_R3, dU_33)*/
AB_To_XR (nvar, A, B, &X, &R, dU);
/* Calculation of (x,r) and*/
/* (dU, dU_x, dU_r, dU_3, dU_xx, dU_xr, dU_x3, dU_rr, dU_r3, dU_33)*/
C_To_c (nvar, X, R, &x, &r, dU);
/* Calculation of (y,z) and*/
/* (dU, dU_x, dU_y, dU_z, dU_xx, dU_xy, dU_xz, dU_yy, dU_yz, dU_zz)*/
rx3_To_xyz (nvar, x, r, phi, &y, &z, dU);
LinEquations (A, B, X, R, x, r, phi, y, z, dU, U, values);
for (ivar = 0; ivar < nvar; ivar++)
{
indx = Index (ivar, i, j, k, nvar, n1, n2, n3);
Jdv[indx] = values[ivar] * FAC;
}
}
}
free_dvector (values, 0, nvar - 1);
free_derivs (&dU, nvar);
free_derivs (&U, nvar);
}
}
/* --------------------------------------------------------------------------*/
void
JFD_times_dv (int i, int j, int k, int nvar, int n1, int n2,
int n3, derivs dv, derivs u, CCTK_REAL *values)
{ /* Calculates rows of the vector 'J(FD)*dv'.*/
/* First row to be calculated: row = Index(0, i, j, k; nvar, n1, n2, n3)*/
/* Last row to be calculated: row = Index(nvar-1, i, j, k; nvar, n1, n2, n3)*/
/* These rows are stored in the vector JFDdv[0] ... JFDdv[nvar-1].*/
DECLARE_CCTK_PARAMETERS;
int ivar, indx;
CCTK_REAL al, be, A, B, X, R, x, r, phi, y, z, Am1;
CCTK_REAL sin_al, sin_al_i1, sin_al_i2, sin_al_i3, cos_al;
CCTK_REAL sin_be, sin_be_i1, sin_be_i2, sin_be_i3, cos_be;
CCTK_REAL dV0, dV1, dV2, dV3, dV11, dV12, dV13, dV22, dV23, dV33,
ha, ga, ga2, hb, gb, gb2, hp, gp, gp2, gagb, gagp, gbgp;
derivs dU, U;
allocate_derivs (&dU, nvar);
allocate_derivs (&U, nvar);
if (k < 0)
k = k + n3;
if (k >= n3)
k = k - n3;
ha = Pi / n1; /* ha: Stepsize with respect to (al)*/
al = ha * (i + 0.5);
A = -cos (al);
ga = 1 / ha;
ga2 = ga * ga;
hb = Pi / n2; /* hb: Stepsize with respect to (be)*/
be = hb * (j + 0.5);
B = -cos (be);
gb = 1 / hb;
gb2 = gb * gb;
gagb = ga * gb;
hp = 2 * Pi / n3; /* hp: Stepsize with respect to (phi)*/
phi = hp * k;
gp = 1 / hp;
gp2 = gp * gp;
gagp = ga * gp;
gbgp = gb * gp;
sin_al = sin (al);
sin_be = sin (be);
sin_al_i1 = 1 / sin_al;
sin_be_i1 = 1 / sin_be;
sin_al_i2 = sin_al_i1 * sin_al_i1;
sin_be_i2 = sin_be_i1 * sin_be_i1;
sin_al_i3 = sin_al_i1 * sin_al_i2;
sin_be_i3 = sin_be_i1 * sin_be_i2;
cos_al = -A;
cos_be = -B;
Am1 = A - 1;
for (ivar = 0; ivar < nvar; ivar++)
{
int iccc = Index (ivar, i, j, k, nvar, n1, n2, n3),
ipcc = Index (ivar, i + 1, j, k, nvar, n1, n2, n3),
imcc = Index (ivar, i - 1, j, k, nvar, n1, n2, n3),
icpc = Index (ivar, i, j + 1, k, nvar, n1, n2, n3),
icmc = Index (ivar, i, j - 1, k, nvar, n1, n2, n3),
iccp = Index (ivar, i, j, k + 1, nvar, n1, n2, n3),
iccm = Index (ivar, i, j, k - 1, nvar, n1, n2, n3),
icpp = Index (ivar, i, j + 1, k + 1, nvar, n1, n2, n3),
icmp = Index (ivar, i, j - 1, k + 1, nvar, n1, n2, n3),
icpm = Index (ivar, i, j + 1, k - 1, nvar, n1, n2, n3),
icmm = Index (ivar, i, j - 1, k - 1, nvar, n1, n2, n3),
ipcp = Index (ivar, i + 1, j, k + 1, nvar, n1, n2, n3),
imcp = Index (ivar, i - 1, j, k + 1, nvar, n1, n2, n3),
ipcm = Index (ivar, i + 1, j, k - 1, nvar, n1, n2, n3),
imcm = Index (ivar, i - 1, j, k - 1, nvar, n1, n2, n3),
ippc = Index (ivar, i + 1, j + 1, k, nvar, n1, n2, n3),
impc = Index (ivar, i - 1, j + 1, k, nvar, n1, n2, n3),
ipmc = Index (ivar, i + 1, j - 1, k, nvar, n1, n2, n3),
immc = Index (ivar, i - 1, j - 1, k, nvar, n1, n2, n3);
/* Derivatives of (dv) w.r.t. (al,be,phi):*/
dV0 = dv.d0[iccc];
dV1 = 0.5 * ga * (dv.d0[ipcc] - dv.d0[imcc]);
dV2 = 0.5 * gb * (dv.d0[icpc] - dv.d0[icmc]);
dV3 = 0.5 * gp * (dv.d0[iccp] - dv.d0[iccm]);
dV11 = ga2 * (dv.d0[ipcc] + dv.d0[imcc] - 2 * dv.d0[iccc]);
dV22 = gb2 * (dv.d0[icpc] + dv.d0[icmc] - 2 * dv.d0[iccc]);
dV33 = gp2 * (dv.d0[iccp] + dv.d0[iccm] - 2 * dv.d0[iccc]);
dV12 =
0.25 * gagb * (dv.d0[ippc] - dv.d0[ipmc] + dv.d0[immc] - dv.d0[impc]);
dV13 =
0.25 * gagp * (dv.d0[ipcp] - dv.d0[imcp] + dv.d0[imcm] - dv.d0[ipcm]);
dV23 =
0.25 * gbgp * (dv.d0[icpp] - dv.d0[icpm] + dv.d0[icmm] - dv.d0[icmp]);
/* Derivatives of (dv) w.r.t. (A,B,phi):*/
dV11 = sin_al_i3 * (sin_al * dV11 - cos_al * dV1);
dV12 = sin_al_i1 * sin_be_i1 * dV12;
dV13 = sin_al_i1 * dV13;
dV22 = sin_be_i3 * (sin_be * dV22 - cos_be * dV2);
dV23 = sin_be_i1 * dV23;
dV1 = sin_al_i1 * dV1;
dV2 = sin_be_i1 * dV2;
/* Derivatives of (dU) w.r.t. (A,B,phi):*/
dU.d0[ivar] = Am1 * dV0;
dU.d1[ivar] = dV0 + Am1 * dV1;
dU.d2[ivar] = Am1 * dV2;
dU.d3[ivar] = Am1 * dV3;
dU.d11[ivar] = 2 * dV1 + Am1 * dV11;
dU.d12[ivar] = dV2 + Am1 * dV12;
dU.d13[ivar] = dV3 + Am1 * dV13;
dU.d22[ivar] = Am1 * dV22;
dU.d23[ivar] = Am1 * dV23;
dU.d33[ivar] = Am1 * dV33;
indx = Index (ivar, i, j, k, nvar, n1, n2, n3);
U.d0[ivar] = u.d0[indx]; /* U */
U.d1[ivar] = u.d1[indx]; /* U_x*/
U.d2[ivar] = u.d2[indx]; /* U_y*/
U.d3[ivar] = u.d3[indx]; /* U_z*/
U.d11[ivar] = u.d11[indx]; /* U_xx*/
U.d12[ivar] = u.d12[indx]; /* U_xy*/
U.d13[ivar] = u.d13[indx]; /* U_xz*/
U.d22[ivar] = u.d22[indx]; /* U_yy*/
U.d23[ivar] = u.d23[indx]; /* U_yz*/
U.d33[ivar] = u.d33[indx]; /* U_zz*/
}
/* Calculation of (X,R) and*/
/* (dU_X, dU_R, dU_3, dU_XX, dU_XR, dU_X3, dU_RR, dU_R3, dU_33)*/
AB_To_XR (nvar, A, B, &X, &R, dU);
/* Calculation of (x,r) and*/
/* (dU, dU_x, dU_r, dU_3, dU_xx, dU_xr, dU_x3, dU_rr, dU_r3, dU_33)*/
C_To_c (nvar, X, R, &x, &r, dU);
/* Calculation of (y,z) and*/
/* (dU, dU_x, dU_y, dU_z, dU_xx, dU_xy, dU_xz, dU_yy, dU_yz, dU_zz)*/
rx3_To_xyz (nvar, x, r, phi, &y, &z, dU);
LinEquations (A, B, X, R, x, r, phi, y, z, dU, U, values);
for (ivar = 0; ivar < nvar; ivar++)
values[ivar] *= FAC;
free_derivs (&dU, nvar);
free_derivs (&U, nvar);
}
/* --------------------------------------------------------------------------*/
void
SetMatrix_JFD (int nvar, int n1, int n2, int n3, derivs u,
int *ncols, int **cols, CCTK_REAL **Matrix)
{
DECLARE_CCTK_PARAMETERS;
int column, row, mcol;
int i, i1, i_0, i_1, j, j1, j_0, j_1, k, k1, k_0, k_1, N1, N2, N3,
ivar, ivar1, ntotal = nvar * n1 * n2 * n3;
CCTK_REAL *values;
derivs dv;
values = dvector (0, nvar - 1);
allocate_derivs (&dv, ntotal);
N1 = n1 - 1;
N2 = n2 - 1;
N3 = n3 - 1;
#pragma omp parallel for private (i,j,k,ivar,row) schedule(dynamic)
for (i = 0; i < n1; i++)
{
for (j = 0; j < n2; j++)
{
for (k = 0; k < n3; k++)
{
for (ivar = 0; ivar < nvar; ivar++)
{
row = Index (ivar, i, j, k, nvar, n1, n2, n3);
ncols[row] = 0;
dv.d0[row] = 0;
}
}
}
}
for (i = 0; i < n1; i++)
{
for (j = 0; j < n2; j++)
{
for (k = 0; k < n3; k++)
{
for (ivar = 0; ivar < nvar; ivar++)
{
column = Index (ivar, i, j, k, nvar, n1, n2, n3);
dv.d0[column] = 1;
i_0 = maximum2 (0, i - 1);
i_1 = minimum2 (N1, i + 1);
j_0 = maximum2 (0, j - 1);
j_1 = minimum2 (N2, j + 1);
k_0 = k - 1;
k_1 = k + 1;
/* i_0 = 0;
i_1 = N1;
j_0 = 0;
j_1 = N2;
k_0 = 0;
k_1 = N3;*/
for (i1 = i_0; i1 <= i_1; i1++)
{
for (j1 = j_0; j1 <= j_1; j1++)
{
for (k1 = k_0; k1 <= k_1; k1++)
{
JFD_times_dv (i1, j1, k1, nvar, n1, n2, n3,
dv, u, values);
for (ivar1 = 0; ivar1 < nvar; ivar1++)
{
if (values[ivar1] != 0)
{
row = Index (ivar1, i1, j1, k1, nvar, n1, n2, n3);
mcol = ncols[row];
cols[row][mcol] = column;
Matrix[row][mcol] = values[ivar1];
ncols[row] += 1;
}
}
}
}
}
dv.d0[column] = 0;
}
}
}
}
free_derivs (&dv, ntotal);
free_dvector (values, 0, nvar - 1);
}
/* --------------------------------------------------------------------------*/
/* Calculates the value of v at an arbitrary position (A,B,phi)*/
CCTK_REAL
PunctEvalAtArbitPosition (CCTK_REAL *v, int ivar, CCTK_REAL A, CCTK_REAL B, CCTK_REAL phi,
int nvar, int n1, int n2, int n3)
{
int i, j, k, N;
CCTK_REAL *p, *values1, **values2, result;
N = maximum3 (n1, n2, n3);
p = dvector (0, N);
values1 = dvector (0, N);
values2 = dmatrix (0, N, 0, N);
for (k = 0; k < n3; k++)
{
for (j = 0; j < n2; j++)
{
for (i = 0; i < n1; i++)
p[i] = v[ivar + nvar * (i + n1 * (j + n2 * k))];
chebft_Zeros (p, n1, 0);
values2[j][k] = chebev (-1, 1, p, n1, A);
}
}
for (k = 0; k < n3; k++)
{
for (j = 0; j < n2; j++)
p[j] = values2[j][k];
chebft_Zeros (p, n2, 0);
values1[k] = chebev (-1, 1, p, n2, B);
}
fourft (values1, n3, 0);
result = fourev (values1, n3, phi);
free_dvector (p, 0, N);
free_dvector (values1, 0, N);
free_dmatrix (values2, 0, N, 0, N);
return result;
}
/* --------------------------------------------------------------------------*/
void
calculate_derivs (int i, int j, int k, int ivar, int nvar, int n1, int n2,
int n3, derivs v, derivs vv)
{
CCTK_REAL al = Pih * (2 * i + 1) / n1, be = Pih * (2 * j + 1) / n2,
sin_al = sin (al), sin2_al = sin_al * sin_al, cos_al = cos (al),
sin_be = sin (be), sin2_be = sin_be * sin_be, cos_be = cos (be);
vv.d0[0] = v.d0[Index (ivar, i, j, k, nvar, n1, n2, n3)];
vv.d1[0] = v.d1[Index (ivar, i, j, k, nvar, n1, n2, n3)] * sin_al;
vv.d2[0] = v.d2[Index (ivar, i, j, k, nvar, n1, n2, n3)] * sin_be;
vv.d3[0] = v.d3[Index (ivar, i, j, k, nvar, n1, n2, n3)];
vv.d11[0] = v.d11[Index (ivar, i, j, k, nvar, n1, n2, n3)] * sin2_al
+ v.d1[Index (ivar, i, j, k, nvar, n1, n2, n3)] * cos_al;
vv.d12[0] =
v.d12[Index (ivar, i, j, k, nvar, n1, n2, n3)] * sin_al * sin_be;
vv.d13[0] = v.d13[Index (ivar, i, j, k, nvar, n1, n2, n3)] * sin_al;
vv.d22[0] = v.d22[Index (ivar, i, j, k, nvar, n1, n2, n3)] * sin2_be
+ v.d2[Index (ivar, i, j, k, nvar, n1, n2, n3)] * cos_be;
vv.d23[0] = v.d23[Index (ivar, i, j, k, nvar, n1, n2, n3)] * sin_be;
vv.d33[0] = v.d33[Index (ivar, i, j, k, nvar, n1, n2, n3)];
}
/* --------------------------------------------------------------------------*/
CCTK_REAL
interpol (CCTK_REAL a, CCTK_REAL b, CCTK_REAL c, derivs v)
{
return v.d0[0]
+ a * v.d1[0] + b * v.d2[0] + c * v.d3[0]
+ 0.5 * a * a * v.d11[0] + a * b * v.d12[0] + a * c * v.d13[0]
+ 0.5 * b * b * v.d22[0] + b * c * v.d23[0] + 0.5 * c * c * v.d33[0];
}
/* --------------------------------------------------------------------------*/
static CCTK_REAL
clamp_pm_one (CCTK_REAL val)
{
return val < -1 ? -1 : val > 1 ? 1 : val;
}
/* --------------------------------------------------------------------------*/
/* Calculates the value of v at an arbitrary position (x,y,z)*/
CCTK_REAL
PunctTaylorExpandAtArbitPosition (int ivar, int nvar, int n1,
int n2, int n3, derivs v, CCTK_REAL x, CCTK_REAL y,
CCTK_REAL z)
{
DECLARE_CCTK_PARAMETERS;
CCTK_REAL xs, ys, zs, rs2, phi, X, R, A, B, al, be, aux1, aux2, a, b, c,
result, Ui;
int i, j, k;
derivs vv;
allocate_derivs (&vv, 1);
xs = x / par_b;
ys = y / par_b;
zs = z / par_b;
rs2 = ys * ys + zs * zs;
phi = atan2 (z, y);
if (phi < 0)
phi += 2 * Pi;
aux1 = 0.5 * (xs * xs + rs2 - 1);
aux2 = sqrt (aux1 * aux1 + rs2);
X = asinh (sqrt (aux1 + aux2));
/* Note: Range of R = asin(Q) is [0,pi] for Q in [0,1] */
R = asin (min(1.0, sqrt (-aux1 + aux2)));
if (x < 0)
R = Pi - R;
A = clamp_pm_one( 2 * tanh (0.5 * X) - 1 );
/* Note: Range of R/2 - pi/4 is [ -pi/4, pi/4 ] and so range of tan
* is [-1,1], for R in [0,pi]. */
B = clamp_pm_one( tan (0.5 * R - Piq) );
al = Pi - acos (A);
be = Pi - acos (B);
i = rint (al * n1 / Pi - 0.5);
j = rint (be * n2 / Pi - 0.5);
k = rint (0.5 * phi * n3 / Pi);
a = al - Pi * (i + 0.5) / n1;
b = be - Pi * (j + 0.5) / n2;
c = phi - 2 * Pi * k / n3;
calculate_derivs (i, j, k, ivar, nvar, n1, n2, n3, v, vv);
result = interpol (a, b, c, vv);
free_derivs (&vv, 1);
Ui = (A - 1) * result;
assert( isfinite( Ui ) );
return Ui;
}
/* --------------------------------------------------------------------------*/
/* Calculates the value of v at an arbitrary position (x,y,z)*/
CCTK_REAL
PunctIntPolAtArbitPosition (int ivar, int nvar, int n1,
int n2, int n3, derivs v, CCTK_REAL x, CCTK_REAL y,
CCTK_REAL z)
{
DECLARE_CCTK_PARAMETERS;
CCTK_REAL xs, ys, zs, rs2, phi, X, R, A, B, aux1, aux2, result, Ui;
xs = x / par_b;
ys = y / par_b;
zs = z / par_b;
rs2 = ys * ys + zs * zs;
phi = atan2 (z, y);
if (phi < 0)
phi += 2 * Pi;
aux1 = 0.5 * (xs * xs + rs2 - 1);
aux2 = sqrt (aux1 * aux1 + rs2);
X = asinh (sqrt (aux1 + aux2));
R = asin (min(1.0, sqrt (-aux1 + aux2)));
if (x < 0)
R = Pi - R;
A = 2 * tanh (0.5 * X) - 1;
B = tan (0.5 * R - Piq);
result = PunctEvalAtArbitPosition (v.d0, ivar, A, B, phi, nvar, n1, n2, n3);
Ui = (A - 1) * result;
assert( isfinite( Ui ) );
return Ui;
}
//////////////////////////////////////////////////////
/// Fast Spectral Interpolation Routine Stuff
//////////////////////////////////////////////////////
/* Calculates the value of v at an arbitrary position (A,B,phi)* using the fast routine */
CCTK_REAL
PunctEvalAtArbitPositionFast (CCTK_REAL *v, int ivar, CCTK_REAL A, CCTK_REAL B, CCTK_REAL phi, int nvar, int n1, int n2, int n3)
{
int i, j, k, N;
CCTK_REAL *p, *values1, **values2, result;
// VASILIS: Nothing should be changed in this routine. This is used by PunctIntPolAtArbitPositionFast
N = maximum3 (n1, n2, n3);
p = dvector (0, N);
values1 = dvector (0, N);
values2 = dmatrix (0, N, 0, N);
for (k = 0; k < n3; k++)
{
for (j = 0; j < n2; j++)
{
for (i = 0; i < n1; i++) p[i] = v[ivar + nvar * (i + n1 * (j + n2 * k))];
// chebft_Zeros (p, n1, 0);
values2[j][k] = chebev (-1, 1, p, n1, A);
}
}
for (k = 0; k < n3; k++)
{
for (j = 0; j < n2; j++) p[j] = values2[j][k];
// chebft_Zeros (p, n2, 0);
values1[k] = chebev (-1, 1, p, n2, B);
}
// fourft (values1, n3, 0);
result = fourev (values1, n3, phi);
free_dvector (p, 0, N);
free_dvector (values1, 0, N);
free_dmatrix (values2, 0, N, 0, N);
return result;
// */
// return 0.;
}
// --------------------------------------------------------------------------*/
// Calculates the value of v at an arbitrary position (x,y,z) if the spectral coefficients are known //
/* --------------------------------------------------------------------------*/
CCTK_REAL
PunctIntPolAtArbitPositionFast (int ivar, int nvar, int n1,
int n2, int n3, derivs v, CCTK_REAL x, CCTK_REAL y,
CCTK_REAL z)
{
DECLARE_CCTK_PARAMETERS;
CCTK_REAL xs, ys, zs, rs2, phi, X, R, A, B, aux1, aux2, result, Ui;
// VASILIS: Here the struct derivs v refers to the spectral coeffiecients of variable v not the variable v itself
xs = x / par_b;
ys = y / par_b;
zs = z / par_b;
rs2 = ys * ys + zs * zs;
phi = atan2 (z, y);
if (phi < 0)
phi += 2 * Pi;
aux1 = 0.5 * (xs * xs + rs2 - 1);
aux2 = sqrt (aux1 * aux1 + rs2);
X = asinh (sqrt (aux1 + aux2));
R = asin (min(1.0, sqrt (-aux1 + aux2)));
if (x < 0)
R = Pi - R;
A = 2 * tanh (0.5 * X) - 1;
B = tan (0.5 * R - Piq);
result = PunctEvalAtArbitPositionFast (v.d0, ivar, A, B, phi, nvar, n1, n2, n3);
Ui = (A - 1) * result;
return Ui;
}
// Evaluates the spectral expansion coefficients of v
void SpecCoef(int n1, int n2, int n3, int ivar, CCTK_REAL *v, CCTK_REAL *cf)
{
DECLARE_CCTK_PARAMETERS;
// VASILIS: Here v is a pointer to the values of the variable v at the collocation points and cf_v a pointer to the spectral coefficients that this routine calculates
int i, j, k, N, n, l;
CCTK_REAL *p, ***values3, ***values4;
N=maximum3(n1,n2,n3);
p=dvector(0,N);
values3=d3tensor(0,n1,0,n2,0,n3);
values4=d3tensor(0,n1,0,n2,0,n3);
// Caclulate values3[n,j,k] = a_n^{j,k} = (sum_i^(n1-1) f(A_i,B_j,phi_k) Tn(-A_i))/k_n , k_n = N/2 or N
for(k=0;k<n3;k++) {
for(j=0;j<n2;j++) {
for(i=0;i<n1;i++) p[i]=v[ivar + (i + n1 * (j + n2 * k))];
chebft_Zeros(p,n1,0);
for (n=0;n<n1;n++) {
values3[n][j][k] = p[n];
}
}
}
// Caclulate values4[n,l,k] = a_{n,l}^{k} = (sum_j^(n2-1) a_n^{j,k} Tn(B_j))/k_l , k_l = N/2 or N
for (n = 0; n < n1; n++){
for(k=0;k<n3;k++) {
for(j=0;j<n2;j++) p[j]=values3[n][j][k];
chebft_Zeros(p,n2,0);
for (l = 0; l < n2; l++){
values4[n][l][k] = p[l];
}
}
}
// Caclulate coefficients a_{n,l,m} = (sum_k^(n3-1) a_{n,m}^{k} fourier(phi_k))/k_m , k_m = N/2 or N
for (i = 0; i < n1; i++){
for (j = 0; j < n2; j++){
for(k=0;k<n3;k++) p[k]=values4[i][j][k];
fourft(p,n3,0);
for (k = 0; k<n3; k++){
cf[ivar + (i + n1 * (j + n2 * k))] = p[k];
}
}
}
free_dvector(p,0,N);
free_d3tensor(values3,0,n1,0,n2,0,n3);
free_d3tensor(values4,0,n1,0,n2,0,n3);
}
#include <iostream>
#include <fstream>
#include <iomanip>
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
using namespace std;
extern "C"
void TwoPunctures_Metadata (CCTK_ARGUMENTS)
{
DECLARE_CCTK_ARGUMENTS;
DECLARE_CCTK_PARAMETERS;
if (CCTK_MyProc(cctkGH) == 0)
{
ofstream o;
o.open(string(string(out_dir) + "/TwoPunctures.bbh").c_str());
o << setprecision(19);
o << "\
# ==================================\n\
# Numerical Relativity Metadata file\n\
# ==================================\n\
#\n\
# This file contains information about the simulation provided by the\n\
# TwoPunctures thorn. The format is described in the NR Data Format Document\n\
# http://arxiv.org/abs/0709.0093 [draft SVN r707].\n\
" << endl;
o << "[metadata]" << endl;
o << "initial-ADM-energy = " << *E << endl;
o << "initial-ADM-angular-momentumx = " << *J1 << endl;
o << "initial-ADM-angular-momentumy = " << *J2 << endl;
o << "initial-ADM-angular-momentumz = " << *J3 << endl;
o << "initial-separation = " << par_b * 2 << endl;
o << "initial-data-type = Bowen-York" << endl;
o << "initial-data-bibtex-keys = Bowen:1980yu Brandt:1997tf Ansorg:2004ds" << endl;
o << "initial-bh-position1x = " << par_b + center_offset[0] << endl;
o << "initial-bh-position1y = " << center_offset[1] << endl;
o << "initial-bh-position1z = " << center_offset[2] << endl;
o << "initial-bh-position2x = " << -par_b + center_offset[0] << endl;
o << "initial-bh-position2y = " << center_offset[1] << endl;
o << "initial-bh-position2z = " << center_offset[2] << endl;
o << "initial-bh-momentum1x = " << par_P_plus[0] << endl;
o << "initial-bh-momentum1y = " << par_P_plus[1] << endl;
o << "initial-bh-momentum1z = " << par_P_plus[2] << endl;
o << "initial-bh-momentum2x = " << par_P_minus[0] << endl;
o << "initial-bh-momentum2y = " << par_P_minus[1] << endl;
o << "initial-bh-momentum2z = " << par_P_minus[2] << endl;
o << "initial-bh-spin1x = " << par_S_plus[0] << endl;
o << "initial-bh-spin1y = " << par_S_plus[1] << endl;
o << "initial-bh-spin1z = " << par_S_plus[2] << endl;
o << "initial-bh-spin2x = " << par_S_minus[0] << endl;
o << "initial-bh-spin2y = " << par_S_minus[1] << endl;
o << "initial-bh-spin2z = " << par_S_minus[2] << endl;
o << "initial-bh-puncture-adm-mass1 = " << *mp_adm << endl;
o << "initial-bh-puncture-adm-mass2 = " << *mm_adm << endl;
o << "initial-bh-puncture-bare-mass1 = " << *mp << endl;
o << "initial-bh-puncture-bare-mass2 = " << *mm << endl;
}
}
/* TwoPunctures: File "Newton.c"*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <gsl/gsl_vector.h>
#include <gsl/gsl_linalg.h>
#include "cctk_Parameters.h"
#include "TP_utilities.h"
#include "TwoPunctures.h"
static int
bicgstab (CCTK_POINTER_TO_CONST const cctkGH,
int const nvar, int const n1, int const n2, int const n3,
derivs v, derivs dv,
int const output, int const itmax, CCTK_REAL const tol,
CCTK_REAL * restrict const normres);
static CCTK_REAL
norm_inf (CCTK_REAL const * restrict const F,
int const ntotal);
static void
relax (CCTK_REAL * restrict const dv,
int const nvar, int const n1, int const n2, int const n3,
CCTK_REAL const * restrict const rhs,
int const * restrict const ncols,
int const * restrict const * restrict const cols,
CCTK_REAL const * restrict const * restrict const JFD);
static void
resid (CCTK_REAL * restrict const res,
int const ntotal,
CCTK_REAL const * restrict const dv,
CCTK_REAL const * restrict const rhs,
int const * restrict const ncols,
int const * restrict const * restrict const cols,
CCTK_REAL const * restrict const * restrict const JFD);
static void
LineRelax_al (CCTK_REAL * restrict const dv,
int const j, int const k, int const nvar,
int const n1, int const n2, int const n3,
CCTK_REAL const * restrict const rhs,
int const * restrict const ncols,
int const * restrict const * restrict const cols,
CCTK_REAL const * restrict const * restrict const JFD);
static void
LineRelax_be (CCTK_REAL * restrict const dv,
int const i, int const k, int const nvar,
int const n1, int const n2, int const n3,
CCTK_REAL const * restrict const rhs,
int const * restrict const ncols,
int const * restrict const * restrict const cols,
CCTK_REAL const * restrict const * restrict const JFD);
/* --------------------------------------------------------------------------*/
static CCTK_REAL
norm_inf (CCTK_REAL const * restrict const F,
int const ntotal)
{
CCTK_REAL dmax = -1;
#pragma omp parallel
{
CCTK_REAL dmax1 = -1;
#pragma omp for
for (int j = 0; j < ntotal; j++)
if (fabs (F[j]) > dmax1)
dmax1 = fabs (F[j]);
#pragma omp critical
if (dmax1 > dmax)
dmax = dmax1;
}
return dmax;
}
/* --------------------------------------------------------------------------*/
static void
resid (CCTK_REAL * restrict const res,
int const ntotal,
CCTK_REAL const * restrict const dv,
CCTK_REAL const * restrict const rhs,
int const * restrict const ncols,
int const * restrict const * restrict const cols,
CCTK_REAL const * restrict const * restrict const JFD)
{
#pragma omp parallel for
for (int i = 0; i < ntotal; i++)
{
CCTK_REAL JFDdv_i = 0;
for (int m = 0; m < ncols[i]; m++)
JFDdv_i += JFD[i][m] * dv[cols[i][m]];
res[i] = rhs[i] - JFDdv_i;
}
}
/* -------------------------------------------------------------------------*/
static void
LineRelax_al (CCTK_REAL * restrict const dv,
int const j, int const k, int const nvar,
int const n1, int const n2, int const n3,
CCTK_REAL const * restrict const rhs,
int const * restrict const ncols,
int const * restrict const * restrict const cols,
CCTK_REAL const * restrict const * restrict const JFD)
{
int i, m, Ic, Ip, Im, col, ivar;
gsl_vector *diag = gsl_vector_alloc(n1);
gsl_vector *e = gsl_vector_alloc(n1-1); /* above diagonal */
gsl_vector *f = gsl_vector_alloc(n1-1); /* below diagonal */
gsl_vector *b = gsl_vector_alloc(n1); /* rhs */
gsl_vector *x = gsl_vector_alloc(n1); /* solution vector */
for (ivar = 0; ivar < nvar; ivar++)
{
gsl_vector_set_zero(diag);
gsl_vector_set_zero(e);
gsl_vector_set_zero(f);
for (i = 0; i < n1; i++)
{
Ip = Index (ivar, i + 1, j, k, nvar, n1, n2, n3);
Ic = Index (ivar, i, j, k, nvar, n1, n2, n3);
Im = Index (ivar, i - 1, j, k, nvar, n1, n2, n3);
gsl_vector_set(b,i,rhs[Ic]);
for (m = 0; m < ncols[Ic]; m++)
{
col = cols[Ic][m];
if (col != Ip && col != Ic && col != Im)
*gsl_vector_ptr(b, i) -= JFD[Ic][m] * dv[col];
else
{
if (col == Im && i > 0)
gsl_vector_set(f,i-1,JFD[Ic][m]);
if (col == Ic)
gsl_vector_set(diag,i,JFD[Ic][m]);
if (col == Ip && i < n1-1)
gsl_vector_set(e,i,JFD[Ic][m]);
}
}
}
gsl_linalg_solve_tridiag(diag, e, f, b, x);
for (i = 0; i < n1; i++)
{
Ic = Index (ivar, i, j, k, nvar, n1, n2, n3);
dv[Ic] = gsl_vector_get(x, i);
}
}
gsl_vector_free(diag);
gsl_vector_free(e);
gsl_vector_free(f);
gsl_vector_free(b);
gsl_vector_free(x);
}
/* --------------------------------------------------------------------------*/
static void
LineRelax_be (CCTK_REAL * restrict const dv,
int const i, int const k, int const nvar,
int const n1, int const n2, int const n3,
CCTK_REAL const * restrict const rhs,
int const * restrict const ncols,
int const * restrict const * restrict const cols,
CCTK_REAL const * restrict const * restrict const JFD)
{
int j, m, Ic, Ip, Im, col, ivar;
gsl_vector *diag = gsl_vector_alloc(n2);
gsl_vector *e = gsl_vector_alloc(n2-1); /* above diagonal */
gsl_vector *f = gsl_vector_alloc(n2-1); /* below diagonal */
gsl_vector *b = gsl_vector_alloc(n2); /* rhs */
gsl_vector *x = gsl_vector_alloc(n2); /* solution vector */
for (ivar = 0; ivar < nvar; ivar++)
{
gsl_vector_set_zero(diag);
gsl_vector_set_zero(e);
gsl_vector_set_zero(f);
for (j = 0; j < n2; j++)
{
Ip = Index (ivar, i, j + 1, k, nvar, n1, n2, n3);
Ic = Index (ivar, i, j, k, nvar, n1, n2, n3);
Im = Index (ivar, i, j - 1, k, nvar, n1, n2, n3);
gsl_vector_set(b,j,rhs[Ic]);
for (m = 0; m < ncols[Ic]; m++)
{
col = cols[Ic][m];
if (col != Ip && col != Ic && col != Im)
*gsl_vector_ptr(b, j) -= JFD[Ic][m] * dv[col];
else
{
if (col == Im && j > 0)
gsl_vector_set(f,j-1,JFD[Ic][m]);
if (col == Ic)
gsl_vector_set(diag,j,JFD[Ic][m]);
if (col == Ip && j < n2-1)
gsl_vector_set(e,j,JFD[Ic][m]);
}
}
}
gsl_linalg_solve_tridiag(diag, e, f, b, x);
for (j = 0; j < n2; j++)
{
Ic = Index (ivar, i, j, k, nvar, n1, n2, n3);
dv[Ic] = gsl_vector_get(x, j);
}
}
gsl_vector_free(diag);
gsl_vector_free(e);
gsl_vector_free(f);
gsl_vector_free(b);
gsl_vector_free(x);
}
/* --------------------------------------------------------------------------*/
static void
relax (CCTK_REAL * restrict const dv,
int const nvar, int const n1, int const n2, int const n3,
CCTK_REAL const * restrict const rhs,
int const * restrict const ncols,
int const * restrict const * restrict const cols,
CCTK_REAL const * restrict const * restrict const JFD)
{
int i, j, k, n;
for (k = 0; k < n3; k = k + 2)
{
for (n = 0; n < N_PlaneRelax; n++)
{
#pragma omp parallel for schedule(dynamic)
for (i = 2; i < n1; i = i + 2)
LineRelax_be (dv, i, k, nvar, n1, n2, n3, rhs, ncols, cols, JFD);
#pragma omp parallel for schedule(dynamic)
for (i = 1; i < n1; i = i + 2)
LineRelax_be (dv, i, k, nvar, n1, n2, n3, rhs, ncols, cols, JFD);
#pragma omp parallel for schedule(dynamic)
for (j = 1; j < n2; j = j + 2)
LineRelax_al (dv, j, k, nvar, n1, n2, n3, rhs, ncols, cols, JFD);
#pragma omp parallel for schedule(dynamic)
for (j = 0; j < n2; j = j + 2)
LineRelax_al (dv, j, k, nvar, n1, n2, n3, rhs, ncols, cols, JFD);
}
}
for (k = 1; k < n3; k = k + 2)
{
for (n = 0; n < N_PlaneRelax; n++)
{
#pragma omp parallel for schedule(dynamic)
for (i = 0; i < n1; i = i + 2)
LineRelax_be (dv, i, k, nvar, n1, n2, n3, rhs, ncols, cols, JFD);
#pragma omp parallel for schedule(dynamic)
for (i = 1; i < n1; i = i + 2)
LineRelax_be (dv, i, k, nvar, n1, n2, n3, rhs, ncols, cols, JFD);
#pragma omp parallel for schedule(dynamic)
for (j = 1; j < n2; j = j + 2)
LineRelax_al (dv, j, k, nvar, n1, n2, n3, rhs, ncols, cols, JFD);
#pragma omp parallel for schedule(dynamic)
for (j = 0; j < n2; j = j + 2)
LineRelax_al (dv, j, k, nvar, n1, n2, n3, rhs, ncols, cols, JFD);
}
}
}
/* --------------------------------------------------------------------------*/
void
TestRelax (CCTK_POINTER_TO_CONST cctkGH,
int nvar, int n1, int n2, int n3, derivs v,
CCTK_REAL *dv)
{
DECLARE_CCTK_PARAMETERS;
int ntotal = n1 * n2 * n3 * nvar, **cols, *ncols, maxcol =
StencilSize * nvar, j;
CCTK_REAL *F, *res, **JFD;
derivs u;
F = dvector (0, ntotal - 1);
res = dvector (0, ntotal - 1);
allocate_derivs (&u, ntotal);
JFD = dmatrix (0, ntotal - 1, 0, maxcol - 1);
cols = imatrix (0, ntotal - 1, 0, maxcol - 1);
ncols = ivector (0, ntotal - 1);
F_of_v (cctkGH, nvar, n1, n2, n3, v, F, u);
SetMatrix_JFD (nvar, n1, n2, n3, u, ncols, cols, JFD);
for (j = 0; j < ntotal; j++)
dv[j] = 0;
resid (res, ntotal, dv, F, ncols, cols, JFD);
printf ("Before: |F|=%20.15e\n", (double) norm1 (res, ntotal));
fflush(stdout);
for (j = 0; j < NRELAX; j++)
{
relax (dv, nvar, n1, n2, n3, F, ncols, cols, JFD); /* solves JFD*sh = s*/
if (j % Step_Relax == 0)
{
resid (res, ntotal, dv, F, ncols, cols, JFD);
printf ("j=%d\t |F|=%20.15e\n", j, (double) norm1 (res, ntotal));
fflush(stdout);
}
}
resid (res, ntotal, dv, F, ncols, cols, JFD);
printf ("After: |F|=%20.15e\n", (double) norm1 (res, ntotal));
fflush(stdout);
free_dvector (F, 0, ntotal - 1);
free_dvector (res, 0, ntotal - 1);
free_derivs (&u, ntotal);
free_dmatrix (JFD, 0, ntotal - 1, 0, maxcol - 1);
free_imatrix (cols, 0, ntotal - 1, 0, maxcol - 1);
free_ivector (ncols, 0, ntotal - 1);
}
/* --------------------------------------------------------------------------*/
static int
bicgstab (CCTK_POINTER_TO_CONST const cctkGH,
int const nvar, int const n1, int const n2, int const n3,
derivs v, derivs dv,
int const output, int const itmax, CCTK_REAL const tol,
CCTK_REAL * restrict const normres)
{
DECLARE_CCTK_PARAMETERS;
int ntotal = n1 * n2 * n3 * nvar, ii;
CCTK_REAL alpha = 0, beta = 0;
CCTK_REAL rho = 0, rho1 = 1, rhotol = 1e-50;
CCTK_REAL omega = 0, omegatol = 1e-50;
CCTK_REAL *p, *rt, *s, *t, *r, *vv;
CCTK_REAL **JFD;
int **cols, *ncols, maxcol = StencilSize * nvar;
CCTK_REAL *F;
derivs u, ph, sh;
F = dvector (0, ntotal - 1);
allocate_derivs (&u, ntotal);
JFD = dmatrix (0, ntotal - 1, 0, maxcol - 1);
cols = imatrix (0, ntotal - 1, 0, maxcol - 1);
ncols = ivector (0, ntotal - 1);
F_of_v (cctkGH, nvar, n1, n2, n3, v, F, u);
SetMatrix_JFD (nvar, n1, n2, n3, u, ncols, cols, JFD);
/* temporary storage */
r = dvector (0, ntotal - 1);
p = dvector (0, ntotal - 1);
allocate_derivs (&ph, ntotal);
/* ph = dvector(0, ntotal-1);*/
rt = dvector (0, ntotal - 1);
s = dvector (0, ntotal - 1);
allocate_derivs (&sh, ntotal);
/* sh = dvector(0, ntotal-1);*/
t = dvector (0, ntotal - 1);
vv = dvector (0, ntotal - 1);
/* check */
if (output == 1) {
printf ("bicgstab: itmax %d, tol %e\n", itmax, (double)tol);
fflush(stdout);
}
/* compute initial residual rt = r = F - J*dv */
J_times_dv (nvar, n1, n2, n3, dv, r, u);
#pragma omp parallel for
for (int j = 0; j < ntotal; j++)
rt[j] = r[j] = F[j] - r[j];
*normres = norm2 (r, ntotal);
if (output == 1) {
printf ("bicgstab: %5d %10.3e\n", 0, (double) *normres);
fflush(stdout);
}
if (*normres <= tol)
return 0;
/* cgs iteration */
for (ii = 0; ii < itmax; ii++)
{
rho = scalarproduct (rt, r, ntotal);
if (fabs (rho) < rhotol)
break;
/* compute direction vector p */
if (ii == 0)
{
#pragma omp parallel for
for (int j = 0; j < ntotal; j++)
p[j] = r[j];
}
else
{
beta = (rho / rho1) * (alpha / omega);
#pragma omp parallel for
for (int j = 0; j < ntotal; j++)
p[j] = r[j] + beta * (p[j] - omega * vv[j]);
}
/* compute direction adjusting vector ph and scalar alpha */
#pragma omp parallel for
for (int j = 0; j < ntotal; j++)
ph.d0[j] = 0;
for (int j = 0; j < NRELAX; j++) /* solves JFD*ph = p by relaxation*/
relax (ph.d0, nvar, n1, n2, n3, p, ncols, cols, JFD);
J_times_dv (nvar, n1, n2, n3, ph, vv, u); /* vv=J*ph*/
alpha = rho / scalarproduct (rt, vv, ntotal);
#pragma omp parallel for
for (int j = 0; j < ntotal; j++)
s[j] = r[j] - alpha * vv[j];
/* early check of tolerance */
*normres = norm2 (s, ntotal);
if (*normres <= tol)
{
#pragma omp parallel for
for (int j = 0; j < ntotal; j++)
dv.d0[j] += alpha * ph.d0[j];
if (output == 1) {
printf ("bicgstab: %5d %10.3e %10.3e %10.3e %10.3e\n",
ii + 1, (double) *normres, (double)alpha, (double)beta, (double)omega);
fflush(stdout);
}
break;
}
/* compute stabilizer vector sh and scalar omega */
#pragma omp parallel for
for (int j = 0; j < ntotal; j++)
sh.d0[j] = 0;
for (int j = 0; j < NRELAX; j++) /* solves JFD*sh = s by relaxation*/
relax (sh.d0, nvar, n1, n2, n3, s, ncols, cols, JFD);
J_times_dv (nvar, n1, n2, n3, sh, t, u); /* t=J*sh*/
omega = scalarproduct (t, s, ntotal) / scalarproduct (t, t, ntotal);
/* compute new solution approximation */
#pragma omp parallel for
for (int j = 0; j < ntotal; j++)
{
dv.d0[j] += alpha * ph.d0[j] + omega * sh.d0[j];
r[j] = s[j] - omega * t[j];
}
/* are we done? */
*normres = norm2 (r, ntotal);
if (output == 1) {
printf ("bicgstab: %5d %10.3e %10.3e %10.3e %10.3e\n",
ii + 1, (double) *normres, (double)alpha, (double)beta, (double)omega);
fflush(stdout);
}
if (*normres <= tol)
break;
rho1 = rho;
if (fabs (omega) < omegatol)
break;
}
/* free temporary storage */
free_dvector (r, 0, ntotal - 1);
free_dvector (p, 0, ntotal - 1);
/* free_dvector(ph, 0, ntotal-1);*/
free_derivs (&ph, ntotal);
free_dvector (rt, 0, ntotal - 1);
free_dvector (s, 0, ntotal - 1);
/* free_dvector(sh, 0, ntotal-1);*/
free_derivs (&sh, ntotal);
free_dvector (t, 0, ntotal - 1);
free_dvector (vv, 0, ntotal - 1);
free_dvector (F, 0, ntotal - 1);
free_derivs (&u, ntotal);
free_dmatrix (JFD, 0, ntotal - 1, 0, maxcol - 1);
free_imatrix (cols, 0, ntotal - 1, 0, maxcol - 1);
free_ivector (ncols, 0, ntotal - 1);
/* iteration failed */
if (ii > itmax)
return -1;
/* breakdown */
if (fabs (rho) < rhotol)
return -10;
if (fabs (omega) < omegatol)
return -11;
/* success! */
return ii + 1;
}
/* -------------------------------------------------------------------*/
void
Newton (CCTK_POINTER_TO_CONST const cctkGH,
int const nvar, int const n1, int const n2, int const n3,
derivs v,
CCTK_REAL const tol, int const itmax)
{
DECLARE_CCTK_PARAMETERS;
int ntotal = n1 * n2 * n3 * nvar, ii, it;
CCTK_REAL *F, dmax, normres;
derivs u, dv;
F = dvector (0, ntotal - 1);
allocate_derivs (&dv, ntotal);
allocate_derivs (&u, ntotal);
/* TestRelax(nvar, n1, n2, n3, v, dv.d0); */
it = 0;
dmax = 1;
while (dmax > tol && it < itmax)
{
if (it == 0)
{
F_of_v (cctkGH, nvar, n1, n2, n3, v, F, u);
dmax = norm_inf (F, ntotal);
}
#pragma omp parallel for
for (int j = 0; j < ntotal; j++)
dv.d0[j] = 0;
if(verbose==1){
printf ("Newton: it=%d \t |F|=%e\n", it, (double)dmax);
printf ("bare mass: mp=%g \t mm=%g\n", (double) par_m_plus, (double) par_m_minus);
}
fflush(stdout);
ii =
bicgstab (cctkGH,
nvar, n1, n2, n3, v, dv, verbose, 100, dmax * 1.e-3, &normres);
#pragma omp parallel for
for (int j = 0; j < ntotal; j++)
v.d0[j] -= dv.d0[j];
F_of_v (cctkGH, nvar, n1, n2, n3, v, F, u);
dmax = norm_inf (F, ntotal);
it += 1;
}
if (itmax==0)
{
F_of_v (cctkGH, nvar, n1, n2, n3, v, F, u);
dmax = norm_inf (F, ntotal);
}
if(verbose==1)
printf ("Newton: it=%d \t |F|=%e \n", it, (double)dmax);
fflush(stdout);
free_dvector (F, 0, ntotal - 1);
free_derivs (&dv, ntotal);
free_derivs (&u, ntotal);
}
/* -------------------------------------------------------------------*/
/* TwoPunctures: File "TwoPunctures.c"*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "TP_utilities.h"
#include "TwoPunctures.h"
/* -------------------------------------------------------------------*/
void
TwoPunctures_ParamCheck (CCTK_ARGUMENTS)
{
DECLARE_CCTK_ARGUMENTS;
DECLARE_CCTK_PARAMETERS;
if (use_sources)
{
if (! CCTK_IsFunctionAliased ("Set_Rho_ADM"))
CCTK_WARN (0, "Matter sources have been enabled, "
"but there is no aliased function for matter sources.");
}
}
/* TwoPunctures: File "utilities.c"*/
#include <math.h>
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <assert.h>
#include "TP_utilities.h"
#include "cctk_Functions.h"
/*---------------------------------------------------------------------------*/
int *
ivector (long nl, long nh)
/* allocate an int vector with subscript range v[nl..nh] */
{
int *retval;
retval = malloc(sizeof(int)*(nh-nl+1));
if(retval == NULL)
CCTK_ERROR ("allocation failure in ivector()");
return retval - nl;
}
/*---------------------------------------------------------------------------*/
CCTK_REAL *
dvector (long nl, long nh)
/* allocate a CCTK_REAL vector with subscript range v[nl..nh] */
{
CCTK_REAL *retval;
retval = malloc(sizeof(CCTK_REAL)*(nh-nl+1));
if(retval == NULL)
CCTK_ERROR ("allocation failure in dvector()");
return retval - nl;
}
/*---------------------------------------------------------------------------*/
int **
imatrix (long nrl, long nrh, long ncl, long nch)
/* allocate a int matrix with subscript range m[nrl..nrh][ncl..nch] */
{
int **retval;
retval = malloc(sizeof(int *)*(nrh-nrl+1));
if(retval == NULL)
CCTK_ERROR ("allocation failure (1) in imatrix()");
/* get all memory for the matrix in on chunk */
retval[0] = malloc(sizeof(int)*(nrh-nrl+1)*(nch-ncl+1));
if(retval[0] == NULL)
CCTK_ERROR ("allocation failure (2) in imatrix()");
/* apply column and row offsets */
retval[0] -= ncl;
retval -= nrl;
/* slice chunk into rows */
long width = (nch-ncl+1);
for(long i = nrl+1 ; i <= nrh ; i++)
retval[i] = retval[i-1] + width;
assert(retval[nrh]-retval[nrl] == (nrh-nrl)*width);
return retval;
}
/*---------------------------------------------------------------------------*/
CCTK_REAL **
dmatrix (long nrl, long nrh, long ncl, long nch)
/* allocate a double matrix with subscript range m[nrl..nrh][ncl..nch] */
{
CCTK_REAL **retval;
retval = malloc(sizeof(CCTK_REAL *)*(nrh-nrl+1));
if(retval == NULL)
CCTK_ERROR ("allocation failure (1) in dmatrix()");
/* get all memory for the matrix in on chunk */
retval[0] = malloc(sizeof(CCTK_REAL)*(nrh-nrl+1)*(nch-ncl+1));
if(retval[0] == NULL)
CCTK_ERROR ("allocation failure (2) in dmatrix()");
/* apply column and row offsets */
retval[0] -= ncl;
retval -= nrl;
/* slice chunk into rows */
long width = (nch-ncl+1);
for(long i = nrl+1 ; i <= nrh ; i++)
retval[i] = retval[i-1] + width;
assert(retval[nrh]-retval[nrl] == (nrh-nrl)*width);
return retval;
}
/*---------------------------------------------------------------------------*/
CCTK_REAL ***
d3tensor (long nrl, long nrh, long ncl, long nch, long ndl, long ndh)
/* allocate a CCTK_REAL 3tensor with range t[nrl..nrh][ncl..nch][ndl..ndh] */
{
CCTK_REAL ***retval;
/* get memory for index structures */
retval = malloc(sizeof(CCTK_REAL **)*(nrh-nrl+1));
if(retval == NULL)
CCTK_ERROR ("allocation failure (1) in d3tensor()");
retval[0] = malloc(sizeof(CCTK_REAL *)*(nrh-nrl+1)*(nch-ncl+1));
if(retval[0] == NULL)
CCTK_ERROR ("allocation failure (2) in d3tensor()");
/* get all memory for the tensor in on chunk */
retval[0][0] = malloc(sizeof(CCTK_REAL)*(nrh-nrl+1)*(nch-ncl+1)*(ndh-ndl+1));
if(retval[0][0] == NULL)
CCTK_ERROR ("allocation failure (3) in d3tensor()");
/* apply all offsets */
retval[0][0] -= ndl;
retval[0] -= ncl;
retval -= nrl;
/* slice chunk into rows and columns */
long width = (nch-ncl+1);
long depth = (ndh-ndl+1);
for(long j = ncl+1 ; j <= nch ; j++) { /* first row of columns */
retval[nrl][j] = retval[nrl][j-1] + depth;
}
assert(retval[nrl][nch]-retval[nrl][ncl] == (nch-ncl)*depth);
for(long i = nrl+1 ; i <= nrh ; i++) {
retval[i] = retval[i-1] + width;
retval[i][ncl] = retval[i-1][ncl] + width*depth; /* first cell in column */
for(long j = ncl+1 ; j <= nch ; j++) {
retval[i][j] = retval[i][j-1] + depth;
}
assert(retval[i][nch]-retval[i][ncl] == (nch-ncl)*depth);
}
assert(retval[nrh]-retval[nrl] == (nrh-nrl)*width);
assert(&retval[nrh][nch][ndh]-&retval[nrl][ncl][ndl] == (nrh-nrl+1)*(nch-ncl+1)*(ndh-ndl+1)-1);
return retval;
}
/*--------------------------------------------------------------------------*/
void
free_ivector (int *v, long nl, long nh)
/* free an int vector allocated with ivector() */
{
free(v+nl);
}
/*--------------------------------------------------------------------------*/
void
free_dvector (CCTK_REAL *v, long nl, long nh)
/* free an double vector allocated with dvector() */
{
free(v+nl);
}
/*--------------------------------------------------------------------------*/
void
free_imatrix (int **m, long nrl, long nrh, long ncl, long nch)
/* free an int matrix allocated by imatrix() */
{
free(m[nrl]+ncl);
free(m+nrl);
}
/*--------------------------------------------------------------------------*/
void
free_dmatrix (CCTK_REAL **m, long nrl, long nrh, long ncl, long nch)
/* free a CCTK_REAL matrix allocated by dmatrix() */
{
free(m[nrl]+ncl);
free(m+nrl);
}
/*--------------------------------------------------------------------------*/
void
free_d3tensor (CCTK_REAL ***t, long nrl, long nrh, long ncl, long nch,
long ndl, long ndh)
/* free a CCTK_REAL d3tensor allocated by d3tensor() */
{
free(t[nrl][ncl]+ndl);
free(t[nrl]+ncl);
free(t+nrl);
}
/*--------------------------------------------------------------------------*/
int
minimum2 (int i, int j)
{
int result = i;
if (j < result)
result = j;
return result;
}
/*-------------------------------------------------------------------------*/
int
minimum3 (int i, int j, int k)
{
int result = i;
if (j < result)
result = j;
if (k < result)
result = k;
return result;
}
/*--------------------------------------------------------------------------*/
int
maximum2 (int i, int j)
{
int result = i;
if (j > result)
result = j;
return result;
}
/*--------------------------------------------------------------------------*/
int
maximum3 (int i, int j, int k)
{
int result = i;
if (j > result)
result = j;
if (k > result)
result = k;
return result;
}
/*--------------------------------------------------------------------------*/
int
pow_int (int mantisse, int exponent)
{
int i, result = 1;
for (i = 1; i <= exponent; i++)
result *= mantisse;
return result;
}
/*--------------------------------------------------------------------------*/
void
chebft_Zeros (CCTK_REAL u[], int n, int inv)
/* eq. 5.8.7 and 5.8.8 at x = (5.8.4) of 2nd edition C++ NR */
{
int k, j, isignum;
CCTK_REAL fac, sum, Pion, *c;
c = dvector (0, n);
Pion = Pi / n;
if (inv == 0)
{
fac = 2.0 / n;
isignum = 1;
for (j = 0; j < n; j++)
{
sum = 0.0;
for (k = 0; k < n; k++)
sum += u[k] * cos (Pion * j * (k + 0.5));
c[j] = fac * sum * isignum;
isignum = -isignum;
}
}
else
{
for (j = 0; j < n; j++)
{
sum = -0.5 * u[0];
isignum = 1;
for (k = 0; k < n; k++)
{
sum += u[k] * cos (Pion * (j + 0.5) * k) * isignum;
isignum = -isignum;
}
c[j] = sum;
}
}
for (j = 0; j < n; j++)
#if 0
if (fabs(c[j]) < 5.e-16)
u[j] = 0.0;
else
#endif
u[j] = c[j];
free_dvector (c, 0, n);
}
/* --------------------------------------------------------------------------*/
void
chebft_Extremes (CCTK_REAL u[], int n, int inv)
/* eq. 5.8.7 and 5.8.8 at x = (5.8.5) of 2nd edition C++ NR */
{
int k, j, isignum, N = n - 1;
CCTK_REAL fac, sum, PioN, *c;
c = dvector (0, N);
PioN = Pi / N;
if (inv == 0)
{
fac = 2.0 / N;
isignum = 1;
for (j = 0; j < n; j++)
{
sum = 0.5 * (u[0] + u[N] * isignum);
for (k = 1; k < N; k++)
sum += u[k] * cos (PioN * j * k);
c[j] = fac * sum * isignum;
isignum = -isignum;
}
c[N] = 0.5 * c[N];
}
else
{
for (j = 0; j < n; j++)
{
sum = -0.5 * u[0];
isignum = 1;
for (k = 0; k < n; k++)
{
sum += u[k] * cos (PioN * j * k) * isignum;
isignum = -isignum;
}
c[j] = sum;
}
}
for (j = 0; j < n; j++)
u[j] = c[j];
free_dvector (c, 0, N);
}
/* --------------------------------------------------------------------------*/
void
chder (CCTK_REAL *c, CCTK_REAL *cder, int n)
{
int j;
cder[n] = 0.0;
cder[n - 1] = 0.0;
for (j = n - 2; j >= 0; j--)
cder[j] = cder[j + 2] + 2 * (j + 1) * c[j + 1];
}
/* --------------------------------------------------------------------------*/
CCTK_REAL
chebev (CCTK_REAL a, CCTK_REAL b, CCTK_REAL c[], int m, CCTK_REAL x)
/* eq. 5.8.11 of C++ NR (2nd ed) */
{
int j;
CCTK_REAL djp2, djp1, dj; /* d_{j+2}, d_{j+1} and d_j */
CCTK_REAL y;
/* rescale input to lie within [-1,1] */
y = 2*(x - 0.5*(b+a))/(b-a);
dj = djp1 = 0;
for(j = m-1 ; j >= 1; j--)
{
/* advance the coefficients */
djp2 = djp1;
djp1 = dj;
dj = 2*y*djp1 - djp2 + c[j];
}
return y*dj - djp1 + 0.5*c[0];
}
/* --------------------------------------------------------------------------*/
void
fourft (CCTK_REAL *u, int N, int inv)
/* a (slow) Fourier transform, seems to be just eq. 12.1.6 and 12.1.9 of C++ NR (2nd ed) */
{
int l, k, iy, M;
CCTK_REAL x, x1, fac, Pi_fac, *a, *b;
M = N / 2;
a = dvector (0, M);
b = dvector (1, M); /* Actually: b=vector(1,M-1) but this is problematic if M=1*/
fac = 1. / M;
Pi_fac = Pi * fac;
if (inv == 0)
{
for (l = 0; l <= M; l++)
{
a[l] = 0;
if (l > 0 && l < M)
b[l] = 0;
x1 = Pi_fac * l;
for (k = 0; k < N; k++)
{
x = x1 * k;
a[l] += fac * u[k] * cos (x);
if (l > 0 && l < M)
b[l] += fac * u[k] * sin (x);
}
}
u[0] = a[0];
u[M] = a[M];
for (l = 1; l < M; l++)
{
u[l] = a[l];
u[l + M] = b[l];
}
}
else
{
a[0] = u[0];
a[M] = u[M];
for (l = 1; l < M; l++)
{
a[l] = u[l];
b[l] = u[M + l];
}
iy = 1;
for (k = 0; k < N; k++)
{
u[k] = 0.5 * (a[0] + a[M] * iy);
x1 = Pi_fac * k;
for (l = 1; l < M; l++)
{
x = x1 * l;
u[k] += a[l] * cos (x) + b[l] * sin (x);
}
iy = -iy;
}
}
free_dvector (a, 0, M);
free_dvector (b, 1, M);
}
/* -----------------------------------------*/
void
fourder (CCTK_REAL u[], CCTK_REAL du[], int N)
{
int l, M, lpM;
M = N / 2;
du[0] = 0.;
du[M] = 0.;
for (l = 1; l < M; l++)
{
lpM = l + M;
du[l] = u[lpM] * l;
du[lpM] = -u[l] * l;
}
}
/* -----------------------------------------*/
void
fourder2 (CCTK_REAL u[], CCTK_REAL d2u[], int N)
{
int l, l2, M, lpM;
d2u[0] = 0.;
M = N / 2;
for (l = 1; l <= M; l++)
{
l2 = l * l;
lpM = l + M;
d2u[l] = -u[l] * l2;
if (l < M)
d2u[lpM] = -u[lpM] * l2;
}
}
/* ----------------------------------------- */
CCTK_REAL
fourev (CCTK_REAL *u, int N, CCTK_REAL x)
{
int l, M = N / 2;
CCTK_REAL xl, result;
result = 0.5 * (u[0] + u[M] * cos (x * M));
for (l = 1; l < M; l++)
{
xl = x * l;
result += u[l] * cos (xl) + u[M + l] * sin (xl);
}
return result;
}
/* ------------------------------------------------------------------------*/
CCTK_REAL
norm1 (CCTK_REAL *v, int n)
{
int i;
CCTK_REAL result = -1;
for (i = 0; i < n; i++)
if (fabs (v[i]) > result)
result = fabs (v[i]);
return result;
}
/* -------------------------------------------------------------------------*/
CCTK_REAL
norm2 (CCTK_REAL *v, int n)
{
int i;
CCTK_REAL result = 0;
for (i = 0; i < n; i++)
result += v[i] * v[i];
return sqrt (result);
}
/* -------------------------------------------------------------------------*/
CCTK_REAL
scalarproduct (CCTK_REAL *v, CCTK_REAL *w, int n)
{
int i;
CCTK_REAL result = 0;
for (i = 0; i < n; i++)
result += v[i] * w[i];
return result;
}
/* -------------------------------------------------------------------------*/
/* TwoPunctures: File "utilities.h"*/
#include <math.h>
#include "cctk.h"
#define Pi 3.14159265358979323846264338328
#define Pih 1.57079632679489661923132169164 /* Pi/2*/
#define Piq 0.78539816339744830961566084582 /* Pi/4*/
#define TINY 1.0e-20
#define SWAP(a,b) {temp=(a);(a)=(b);(b)=temp;}
#define nrerror TP_nrerror
#define ivector TP_ivector
#define dvector TP_dvector
#define imatrix TP_imatrix
#define dmatrix TP_dmatrix
#define d3tensor TP_d3tensor
#define free_ivector TP_free_ivector
#define free_dvector TP_free_dvector
#define free_imatrix TP_free_imatrix
#define free_dmatrix TP_free_dmatrix
#define free_d3tensor TP_free_d3tensor
#define minimum2 TP_minimum2
#define minimum3 TP_minimum3
#define maximum2 TP_maximum2
#define maximum3 TP_maximum3
#define pow_int TP_pow_int
#define chebft_Zeros TP_chebft_Zeros
#define chebft_Extremes TP_chebft_Extremes
#define chder TP_chder
#define chebev TP_chebev
#define fourft TP_fourft
#define fourder TP_fourder
#define fourder2 TP_fourder2
#define fourev TP_fourev
#define norm1 TP_norm1
#define norm2 TP_norm2
#define scalarproduct TP_scalarproduct
void nrerror (char error_text[]);
int *ivector (long nl, long nh);
CCTK_REAL *dvector (long nl, long nh);
int **imatrix (long nrl, long nrh, long ncl, long nch);
CCTK_REAL **dmatrix (long nrl, long nrh, long ncl, long nch);
CCTK_REAL ***d3tensor (long nrl, long nrh, long ncl, long nch, long ndl,
long ndh);
void free_ivector (int *v, long nl, long nh);
void free_dvector (CCTK_REAL *v, long nl, long nh);
void free_imatrix (int **m, long nrl, long nrh, long ncl, long nch);
void free_dmatrix (CCTK_REAL **m, long nrl, long nrh, long ncl, long nch);
void free_d3tensor (CCTK_REAL ***t, long nrl, long nrh, long ncl, long nch,
long ndl, long ndh);
int minimum2 (int i, int j);
int minimum3 (int i, int j, int k);
int maximum2 (int i, int j);
int maximum3 (int i, int j, int k);
int pow_int (int mantisse, int exponent);
void chebft_Zeros (CCTK_REAL u[], int n, int inv);
void chebft_Extremes (CCTK_REAL u[], int n, int inv);
void chder (CCTK_REAL *c, CCTK_REAL *cder, int n);
CCTK_REAL chebev (CCTK_REAL a, CCTK_REAL b, CCTK_REAL c[], int m, CCTK_REAL x);
void fourft (CCTK_REAL *u, int N, int inv);
void fourder (CCTK_REAL u[], CCTK_REAL du[], int N);
void fourder2 (CCTK_REAL u[], CCTK_REAL d2u[], int N);
CCTK_REAL fourev (CCTK_REAL *u, int N, CCTK_REAL x);
CCTK_REAL norm1 (CCTK_REAL *v, int n);
CCTK_REAL norm2 (CCTK_REAL *v, int n);
CCTK_REAL scalarproduct (CCTK_REAL *v, CCTK_REAL *w, int n);
/* TwoPunctures: File "TwoPunctures.c"*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
#include "TP_utilities.h"
#include "TwoPunctures.h"
/* Swap two variables */
static inline
void swap (CCTK_REAL * restrict const a, CCTK_REAL * restrict const b)
{
CCTK_REAL const t = *a; *a=*b; *b=t;
}
#undef SWAP
#define SWAP(a,b) (swap(&(a),&(b)))
static
void set_initial_guess(CCTK_POINTER_TO_CONST cctkGH,
derivs v)
{
DECLARE_CCTK_PARAMETERS;
int nvar = 1, n1 = npoints_A, n2 = npoints_B, n3 = npoints_phi;
CCTK_REAL *s_x, *s_y, *s_z;
CCTK_REAL al, A, Am1, be, B, phi, R, r, X;
CCTK_INT ivar, i, j, k, i3D, indx;
derivs U;
FILE *debug_file;
if (solve_momentum_constraint)
nvar = 4;
s_x =calloc(n1*n2*n3, sizeof(CCTK_REAL));
s_y =calloc(n1*n2*n3, sizeof(CCTK_REAL));
s_z =calloc(n1*n2*n3, sizeof(CCTK_REAL));
allocate_derivs (&U, nvar);
for (ivar = 0; ivar < nvar; ivar++)
for (i = 0; i < n1; i++)
for (j = 0; j < n2; j++)
for (k = 0; k < n3; k++)
{
i3D = Index(ivar,i,j,k,1,n1,n2,n3);
al = Pih * (2 * i + 1) / n1;
A = -cos (al);
be = Pih * (2 * j + 1) / n2;
B = -cos (be);
phi = 2. * Pi * k / n3;
/* Calculation of (X,R)*/
AB_To_XR (nvar, A, B, &X, &R, U);
/* Calculation of (x,r)*/
C_To_c (nvar, X, R, &(s_x[i3D]), &r, U);
/* Calculation of (y,z)*/
rx3_To_xyz (nvar, s_x[i3D], r, phi, &(s_y[i3D]), &(s_z[i3D]), U);
}
Set_Initial_Guess_for_u(cctkGH, n1*n2*n3, v.d0, s_x, s_y, s_z);
for (ivar = 0; ivar < nvar; ivar++)
for (i = 0; i < n1; i++)
for (j = 0; j < n2; j++)
for (k = 0; k < n3; k++)
{
indx = Index(ivar,i,j,k,1,n1,n2,n3);
v.d0[indx]/=(-cos(Pih * (2 * i + 1) / n1)-1.0);
}
Derivatives_AB3 (nvar, n1, n2, n3, v);
if (do_initial_debug_output && CCTK_MyProc(cctkGH) == 0)
{
debug_file=fopen("initial.dat", "w");
assert(debug_file);
for (ivar = 0; ivar < nvar; ivar++)
for (i = 0; i < n1; i++)
for (j = 0; j < n2; j++)
{
al = Pih * (2 * i + 1) / n1;
A = -cos (al);
Am1 = A -1.0;
be = Pih * (2 * j + 1) / n2;
B = -cos (be);
phi = 0.0;
indx = Index(ivar,i,j,0,1,n1,n2,n3);
U.d0[0] = Am1 * v.d0[indx]; /* U*/
U.d1[0] = v.d0[indx] + Am1 * v.d1[indx]; /* U_A*/
U.d2[0] = Am1 * v.d2[indx]; /* U_B*/
U.d3[0] = Am1 * v.d3[indx]; /* U_3*/
U.d11[0] = 2 * v.d1[indx] + Am1 * v.d11[indx]; /* U_AA*/
U.d12[0] = v.d2[indx] + Am1 * v.d12[indx]; /* U_AB*/
U.d13[0] = v.d3[indx] + Am1 * v.d13[indx]; /* U_AB*/
U.d22[0] = Am1 * v.d22[indx]; /* U_BB*/
U.d23[0] = Am1 * v.d23[indx]; /* U_B3*/
U.d33[0] = Am1 * v.d33[indx]; /* U_33*/
/* Calculation of (X,R)*/
AB_To_XR (nvar, A, B, &X, &R, U);
/* Calculation of (x,r)*/
C_To_c (nvar, X, R, &(s_x[indx]), &r, U);
/* Calculation of (y,z)*/
rx3_To_xyz (nvar, s_x[i3D], r, phi, &(s_y[indx]), &(s_z[indx]), U);
fprintf(debug_file,
"%.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g "
"%.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g\n",
(double)s_x[indx], (double)s_y[indx],
(double)A,(double)B,
(double)U.d0[0],
(double)(-cos(Pih * (2 * i + 1) / n1)-1.0),
(double)U.d1[0],
(double)U.d2[0],
(double)U.d3[0],
(double)U.d11[0],
(double)U.d22[0],
(double)U.d33[0],
(double)v.d0[indx],
(double)v.d1[indx],
(double)v.d2[indx],
(double)v.d3[indx],
(double)v.d11[indx],
(double)v.d22[indx],
(double)v.d33[indx]
);
}
fprintf(debug_file, "\n\n");
for (i=n2-10; i<n2; i++)
{
CCTK_REAL d;
indx = Index(0,0,i,0,1,n1,n2,n3);
d = PunctIntPolAtArbitPosition(0, nvar, n1, n2, n3, v,
s_x[indx], 0.0, 0.0);
fprintf(debug_file, "%.16g %.16g\n",
(double)s_x[indx], (double)d);
}
fprintf(debug_file, "\n\n");
for (i=n2-10; i<n2-1; i++)
{
CCTK_REAL d;
int ip= Index(0,0,i+1,0,1,n1,n2,n3);
indx = Index(0,0,i,0,1,n1,n2,n3);
for (j=-10; j<10; j++)
{
d = PunctIntPolAtArbitPosition(0, nvar, n1, n2, n3, v,
s_x[indx]+(s_x[ip]-s_x[indx])*j/10,
0.0, 0.0);
fprintf(debug_file, "%.16g %.16g\n",
(double)(s_x[indx]+(s_x[ip]-s_x[indx])*j/10), (double)d);
}
}
fprintf(debug_file, "\n\n");
for (i = 0; i < n1; i++)
for (j = 0; j < n2; j++)
{
X = 2*(2.0*i/n1-1.0);
R = 2*(1.0*j/n2);
if (X*X+R*R > 1.0)
{
C_To_c (nvar, X, R, &(s_x[indx]), &r, U);
rx3_To_xyz (nvar, s_x[i3D], r, phi, &(s_y[indx]), &(s_z[indx]), U);
*U.d0 = s_x[indx]*s_x[indx];
*U.d1 = 2*s_x[indx];
*U.d2 = 0.0;
*U.d3 = 0.0;
*U.d11 = 2.0;
*U.d22 = 0.0;
*U.d33 = *U.d12 = *U.d23 = *U.d13 = 0.0;
C_To_c (nvar, X, R, &(s_x[indx]), &r, U);
fprintf(debug_file,
"%.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g\n",
(double)s_x[indx], (double)r, (double)X, (double)R, (double)U.d0[0],
(double)U.d1[0],
(double)U.d2[0],
(double)U.d3[0],
(double)U.d11[0],
(double)U.d22[0],
(double)U.d33[0]);
}
}
fclose(debug_file);
}
free(s_z);
free(s_y);
free(s_x);
free_derivs (&U, nvar);
/*exit(0);*/
}
/* -------------------------------------------------------------------*/
void TwoPunctures(CCTK_ARGUMENTS);
void
TwoPunctures (CCTK_ARGUMENTS)
{
DECLARE_CCTK_ARGUMENTS;
DECLARE_CCTK_PARAMETERS;
* mp = par_m_plus;
* mm = par_m_minus;
enum GRID_SETUP_METHOD { GSM_Taylor_expansion, GSM_evaluation };
enum GRID_SETUP_METHOD gsm;
int antisymmetric_lapse, averaged_lapse, pmn_lapse, brownsville_lapse;
int const nvar = 1, n1 = npoints_A, n2 = npoints_B, n3 = npoints_phi;
int imin[3], imax[3];
int const ntotal = n1 * n2 * n3 * nvar;
#if 0
int percent10 = 0;
#endif
static CCTK_REAL *F = NULL;
static derivs u, v, cf_v;
CCTK_REAL admMass;
if (! F) {
CCTK_REAL up, um;
/* Solve only when called for the first time */
F = dvector (0, ntotal - 1);
allocate_derivs (&u, ntotal);
allocate_derivs (&v, ntotal);
allocate_derivs (&cf_v, ntotal);
if (use_sources) {
CCTK_INFO ("Solving puncture equation for BH-NS/NS-NS system");
} else {
CCTK_INFO ("Solving puncture equation for BH-BH system");
}
CCTK_VInfo (CCTK_THORNSTRING, "b = %g", par_b);
/* initialise to 0 */
for (int j = 0; j < ntotal; j++)
{
cf_v.d0[j] = 0.0;
cf_v.d1[j] = 0.0;
cf_v.d2[j] = 0.0;
cf_v.d3[j] = 0.0;
cf_v.d11[j] = 0.0;
cf_v.d12[j] = 0.0;
cf_v.d13[j] = 0.0;
cf_v.d22[j] = 0.0;
cf_v.d23[j] = 0.0;
cf_v.d33[j] = 0.0;
v.d0[j] = 0.0;
v.d1[j] = 0.0;
v.d2[j] = 0.0;
v.d3[j] = 0.0;
v.d11[j] = 0.0;
v.d12[j] = 0.0;
v.d13[j] = 0.0;
v.d22[j] = 0.0;
v.d23[j] = 0.0;
v.d33[j] = 0.0;
}
/* call for external initial guess */
if (use_external_initial_guess)
{
set_initial_guess(cctkGH, v);
}
/* If bare masses are not given, iteratively solve for them given the
target ADM masses target_M_plus and target_M_minus and with initial
guesses given by par_m_plus and par_m_minus. */
if(!(give_bare_mass)) {
CCTK_REAL tmp, mp_adm_err, mm_adm_err;
char valbuf[100];
CCTK_REAL M_p = target_M_plus;
CCTK_REAL M_m = target_M_minus;
CCTK_VInfo (CCTK_THORNSTRING, "Attempting to find bare masses.");
CCTK_VInfo (CCTK_THORNSTRING, "Target ADM masses: M_p=%g and M_m=%g",
(double) M_p, (double) M_m);
CCTK_VInfo (CCTK_THORNSTRING, "ADM mass tolerance: %g", (double) adm_tol);
/* Loop until both ADM masses are within adm_tol of their target */
do {
CCTK_VInfo (CCTK_THORNSTRING, "Bare masses: mp=%.15g, mm=%.15g",
(double)*mp, (double)*mm);
Newton (cctkGH, nvar, n1, n2, n3, v, Newton_tol, 1);
F_of_v (cctkGH, nvar, n1, n2, n3, v, F, u);
up = PunctIntPolAtArbitPosition(0, nvar, n1, n2, n3, v, par_b, 0., 0.);
um = PunctIntPolAtArbitPosition(0, nvar, n1, n2, n3, v,-par_b, 0., 0.);
/* Calculate the ADM masses from the current bare mass guess */
*mp_adm = (1 + up) * *mp + *mp * *mm / (4. * par_b);
*mm_adm = (1 + um) * *mm + *mp * *mm / (4. * par_b);
/* Check how far the current ADM masses are from the target */
mp_adm_err = fabs(M_p-*mp_adm);
mm_adm_err = fabs(M_m-*mm_adm);
CCTK_VInfo (CCTK_THORNSTRING, "ADM mass error: M_p_err=%.15g, M_m_err=%.15g",
(double)mp_adm_err, (double)mm_adm_err);
/* Invert the ADM mass equation and update the bare mass guess so that
it gives the correct target ADM masses */
tmp = -4*par_b*( 1 + um + up + um*up ) +
sqrt(16*par_b*M_m*(1 + um)*(1 + up) +
pow(-M_m + M_p + 4*par_b*(1 + um)*(1 + up),2));
*mp = (tmp + M_p - M_m)/(2.*(1 + up));
*mm = (tmp - M_p + M_m)/(2.*(1 + um));
/* Set the par_m_plus and par_m_minus parameters */
sprintf (valbuf,"%.17g", (double) *mp);
CCTK_ParameterSet ("par_m_plus", "TwoPunctures", valbuf);
sprintf (valbuf,"%.17g", (double) *mm);
CCTK_ParameterSet ("par_m_minus", "TwoPunctures", valbuf);
} while ( (mp_adm_err > adm_tol) ||
(mm_adm_err > adm_tol) );
CCTK_VInfo (CCTK_THORNSTRING, "Found bare masses.");
}
Newton (cctkGH, nvar, n1, n2, n3, v, Newton_tol, Newton_maxit);
F_of_v (cctkGH, nvar, n1, n2, n3, v, F, u);
SpecCoef(n1, n2, n3, 0, v.d0, cf_v.d0);
CCTK_VInfo (CCTK_THORNSTRING,
"The two puncture masses are mp=%.17g and mm=%.17g",
(double) *mp, (double) *mm);
up = PunctIntPolAtArbitPosition(0, nvar, n1, n2, n3, v, par_b, 0., 0.);
um = PunctIntPolAtArbitPosition(0, nvar, n1, n2, n3, v,-par_b, 0., 0.);
/* Calculate the ADM masses from the current bare mass guess */
*mp_adm = (1 + up) * *mp + *mp * *mm / (4. * par_b);
*mm_adm = (1 + um) * *mm + *mp * *mm / (4. * par_b);
CCTK_VInfo (CCTK_THORNSTRING, "Puncture 1 ADM mass is %g", (double) *mp_adm);
CCTK_VInfo (CCTK_THORNSTRING, "Puncture 2 ADM mass is %g", (double) *mm_adm);
/* print out ADM mass, eq.: \Delta M_ADM=2*r*u=4*b*V for A=1,B=0,phi=0 */
admMass = (*mp + *mm
- 4*par_b*PunctEvalAtArbitPosition(v.d0, 0, 1, 0, 0, nvar, n1, n2, n3));
CCTK_VInfo (CCTK_THORNSTRING, "The total ADM mass is %g", (double) admMass);
*E = admMass;
/*
Run this in Mathematica (version 8 or later) with
math -script <file>
Needs["SymbolicC`"];
co = Table["center_offset[" <> ToString[i] <> "]", {i, 0, 2}];
r1 = co + {"par_b", 0, 0};
r2 = co + {-"par_b", 0, 0};
{p1, p2} = Table["par_P_" <> bh <> "[" <> ToString[i] <> "]", {bh, {"plus", "minus"}}, {i, 0, 2}];
{s1, s2} = Table["par_S_" <> bh <> "[" <> ToString[i] <> "]", {bh, {"plus", "minus"}}, {i, 0, 2}];
J = Cross[r1, p1] + Cross[r2, p2] + s1 + s2;
JVar = Table["*J" <> ToString[i], {i, 1, 3}];
Print[OutputForm@StringReplace[
ToCCodeString@MapThread[CAssign[#1, CExpression[#2]] &, {JVar, J}],
"\"" -> ""]];
*/
*J1 = -(center_offset[2]*par_P_minus[1]) + center_offset[1]*par_P_minus[2] - center_offset[2]*par_P_plus[1] + center_offset[1]*par_P_plus[2] + par_S_minus[0] + par_S_plus[0];
*J2 = center_offset[2]*par_P_minus[0] - center_offset[0]*par_P_minus[2] + par_b*par_P_minus[2] + center_offset[2]*par_P_plus[0] - center_offset[0]*par_P_plus[2] - par_b*par_P_plus[2] + par_S_minus[1] + par_S_plus[1];
*J3 = -(center_offset[1]*par_P_minus[0]) + center_offset[0]*par_P_minus[1] - par_b*par_P_minus[1] - center_offset[1]*par_P_plus[0] + center_offset[0]*par_P_plus[1] + par_b*par_P_plus[1] + par_S_minus[2] + par_S_plus[2];
}
if (CCTK_EQUALS(grid_setup_method, "Taylor expansion"))
{
gsm = GSM_Taylor_expansion;
}
else if (CCTK_EQUALS(grid_setup_method, "evaluation"))
{
gsm = GSM_evaluation;
}
else
{
CCTK_WARN (0, "internal error");
}
antisymmetric_lapse = CCTK_EQUALS(initial_lapse, "twopunctures-antisymmetric");
averaged_lapse = CCTK_EQUALS(initial_lapse, "twopunctures-averaged");
pmn_lapse = CCTK_EQUALS(initial_lapse, "psi^n");
if (pmn_lapse)
CCTK_VInfo(CCTK_THORNSTRING, "Setting initial lapse to psi^%f profile.",
(double)initial_lapse_psi_exponent);
brownsville_lapse = CCTK_EQUALS(initial_lapse, "brownsville");
if (brownsville_lapse)
CCTK_VInfo(CCTK_THORNSTRING,
"Setting initial lapse to a Brownsville-style profile "
"with exp %f.",
(double)initial_lapse_psi_exponent);
CCTK_INFO ("Interpolating result");
if (CCTK_EQUALS(metric_type, "static conformal")) {
if (CCTK_EQUALS(conformal_storage, "factor")) {
*conformal_state = 1;
} else if (CCTK_EQUALS(conformal_storage, "factor+derivs")) {
*conformal_state = 2;
} else if (CCTK_EQUALS(conformal_storage, "factor+derivs+2nd derivs")) {
*conformal_state = 3;
}
} else {
*conformal_state = 0;
}
for (int d = 0; d < 3; ++ d)
{
/*
imin[d] = 0 + (cctk_bbox[2*d ] ? 0 : cctk_nghostzones[d]);
imax[d] = cctk_lsh[d] - (cctk_bbox[2*d+1] ? 0 : cctk_nghostzones[d]);
*/
imin[d] = 0;
imax[d] = cctk_lsh[d];
}
#pragma omp parallel for
for (int k = imin[2]; k < imax[2]; ++k)
{
for (int j = imin[1]; j < imax[1]; ++j)
{
for (int i = imin[0]; i < imax[0]; ++i)
{
#if 0
/* We can't output this when running in parallel */
if (percent10 != 10*(i+j*cctk_lsh[0]+k*cctk_lsh[0]*cctk_lsh[1]) /
(cctk_lsh[0] * cctk_lsh[1] * cctk_lsh[2]))
{
percent10 = 10*(i+j*cctk_lsh[0]+k*cctk_lsh[0]*cctk_lsh[1]) /
(cctk_lsh[0] * cctk_lsh[1] * cctk_lsh[2]);
CCTK_VInfo(CCTK_THORNSTRING, "%3d%% done", percent10*10);
}
#endif
const int ind = CCTK_GFINDEX3D (cctkGH, i, j, k);
CCTK_REAL xx, yy, zz;
xx = x[ind] - center_offset[0];
yy = y[ind] - center_offset[1];
zz = z[ind] - center_offset[2];
/* We implement swapping the x and z coordinates as follows.
The bulk of the code that performs the actual calculations
is unchanged. This code looks only at local variables.
Before the bulk --i.e., here-- we swap all x and z tensor
components, and after the code --i.e., at the end of this
main loop-- we swap everything back. */
if (swap_xz) {
/* Swap the x and z coordinates */
SWAP (xx, zz);
}
CCTK_REAL r_plus
= sqrt(pow(xx - par_b, 2) + pow(yy, 2) + pow(zz, 2));
CCTK_REAL r_minus
= sqrt(pow(xx + par_b, 2) + pow(yy, 2) + pow(zz, 2));
CCTK_REAL U;
switch (gsm)
{
case GSM_Taylor_expansion:
U = PunctTaylorExpandAtArbitPosition
(0, nvar, n1, n2, n3, v, xx, yy, zz);
break;
case GSM_evaluation:
U = PunctIntPolAtArbitPositionFast(0, nvar, n1, n2, n3, cf_v, xx, yy, zz);
break;
default:
assert (0);
}
r_plus = pow (pow (r_plus, 4) + pow (TP_epsilon, 4), 0.25);
r_minus = pow (pow (r_minus, 4) + pow (TP_epsilon, 4), 0.25);
if (r_plus < TP_Tiny)
r_plus = TP_Tiny;
if (r_minus < TP_Tiny)
r_minus = TP_Tiny;
CCTK_REAL psi1 = 1
+ 0.5 * *mp / r_plus
+ 0.5 * *mm / r_minus + U;
#define EXTEND(M,r) \
( M * (3./8 * pow(r, 4) / pow(TP_Extend_Radius, 5) - \
5./4 * pow(r, 2) / pow(TP_Extend_Radius, 3) + \
15./8 / TP_Extend_Radius))
if (r_plus < TP_Extend_Radius) {
psi1 = 1
+ 0.5 * EXTEND(*mp,r_plus)
+ 0.5 * *mm / r_minus + U;
}
if (r_minus < TP_Extend_Radius) {
psi1 = 1
+ 0.5 * EXTEND(*mm,r_minus)
+ 0.5 * *mp / r_plus + U;
}
CCTK_REAL static_psi = 1;
CCTK_REAL Aij[3][3];
BY_Aijofxyz (xx, yy, zz, Aij);
CCTK_REAL old_alp=1.0;
if (multiply_old_lapse)
old_alp = alp[ind];
if ((*conformal_state > 0) || (pmn_lapse) || (brownsville_lapse)) {
CCTK_REAL xp, yp, zp, rp, ir;
CCTK_REAL s1, s3, s5;
CCTK_REAL p, px, py, pz, pxx, pxy, pxz, pyy, pyz, pzz;
p = 1.0;
px = py = pz = 0.0;
pxx = pxy = pxz = 0.0;
pyy = pyz = pzz = 0.0;
/* first puncture */
xp = xx - par_b;
yp = yy;
zp = zz;
rp = sqrt (xp*xp + yp*yp + zp*zp);
rp = pow (pow (rp, 4) + pow (TP_epsilon, 4), 0.25);
if (rp < TP_Tiny)
rp = TP_Tiny;
ir = 1.0/rp;
if (rp < TP_Extend_Radius) {
ir = EXTEND(1., rp);
}
s1 = 0.5* *mp *ir;
s3 = -s1*ir*ir;
s5 = -3.0*s3*ir*ir;
p += s1;
px += xp*s3;
py += yp*s3;
pz += zp*s3;
pxx += xp*xp*s5 + s3;
pxy += xp*yp*s5;
pxz += xp*zp*s5;
pyy += yp*yp*s5 + s3;
pyz += yp*zp*s5;
pzz += zp*zp*s5 + s3;
/* second puncture */
xp = xx + par_b;
yp = yy;
zp = zz;
rp = sqrt (xp*xp + yp*yp + zp*zp);
rp = pow (pow (rp, 4) + pow (TP_epsilon, 4), 0.25);
if (rp < TP_Tiny)
rp = TP_Tiny;
ir = 1.0/rp;
if (rp < TP_Extend_Radius) {
ir = EXTEND(1., rp);
}
s1 = 0.5* *mm *ir;
s3 = -s1*ir*ir;
s5 = -3.0*s3*ir*ir;
p += s1;
px += xp*s3;
py += yp*s3;
pz += zp*s3;
pxx += xp*xp*s5 + s3;
pxy += xp*yp*s5;
pxz += xp*zp*s5;
pyy += yp*yp*s5 + s3;
pyz += yp*zp*s5;
pzz += zp*zp*s5 + s3;
if (*conformal_state >= 1) {
static_psi = p;
psi[ind] = static_psi;
}
if (*conformal_state >= 2) {
psix[ind] = px / static_psi;
psiy[ind] = py / static_psi;
psiz[ind] = pz / static_psi;
}
if (*conformal_state >= 3) {
psixx[ind] = pxx / static_psi;
psixy[ind] = pxy / static_psi;
psixz[ind] = pxz / static_psi;
psiyy[ind] = pyy / static_psi;
psiyz[ind] = pyz / static_psi;
psizz[ind] = pzz / static_psi;
}
if (pmn_lapse)
alp[ind] = pow(p, initial_lapse_psi_exponent);
if (brownsville_lapse)
alp[ind] = 2.0/(1.0+pow(p, initial_lapse_psi_exponent));
} /* if conformal-state > 0 */
puncture_u[ind] = U;
gxx[ind] = pow (psi1 / static_psi, 4);
gxy[ind] = 0;
gxz[ind] = 0;
gyy[ind] = pow (psi1 / static_psi, 4);
gyz[ind] = 0;
gzz[ind] = pow (psi1 / static_psi, 4);
kxx[ind] = Aij[0][0] / pow(psi1, 2);
kxy[ind] = Aij[0][1] / pow(psi1, 2);
kxz[ind] = Aij[0][2] / pow(psi1, 2);
kyy[ind] = Aij[1][1] / pow(psi1, 2);
kyz[ind] = Aij[1][2] / pow(psi1, 2);
kzz[ind] = Aij[2][2] / pow(psi1, 2);
if (antisymmetric_lapse || averaged_lapse) {
alp[ind] =
((1.0 -0.5* *mp /r_plus -0.5* *mm/r_minus)
/(1.0 +0.5* *mp /r_plus +0.5* *mm/r_minus));
if (r_plus < TP_Extend_Radius) {
alp[ind] =
((1.0 -0.5*EXTEND(*mp, r_plus) -0.5* *mm/r_minus)
/(1.0 +0.5*EXTEND(*mp, r_plus) +0.5* *mm/r_minus));
}
if (r_minus < TP_Extend_Radius) {
alp[ind] =
((1.0 -0.5*EXTEND(*mm, r_minus) -0.5* *mp/r_plus)
/(1.0 +0.5*EXTEND(*mp, r_minus) +0.5* *mp/r_plus));
}
if (averaged_lapse) {
alp[ind] = 0.5 * (1.0 + alp[ind]);
}
}
if (multiply_old_lapse)
alp[ind] *= old_alp;
if (swap_xz) {
/* Swap the x and z components of all tensors */
if (*conformal_state >= 2) {
SWAP (psix[ind], psiz[ind]);
}
if (*conformal_state >= 3) {
SWAP (psixx[ind], psizz[ind]);
SWAP (psixy[ind], psiyz[ind]);
}
SWAP (gxx[ind], gzz[ind]);
SWAP (gxy[ind], gyz[ind]);
SWAP (kxx[ind], kzz[ind]);
SWAP (kxy[ind], kyz[ind]);
} /* if swap_xz */
} /* for i */
} /* for j */
} /* for k */
if (use_sources && rescale_sources)
{
Rescale_Sources(cctkGH,
cctk_lsh[0]*cctk_lsh[1]*cctk_lsh[2],
x, y, z,
(*conformal_state > 0) ? psi : NULL,
gxx, gyy, gzz,
gxy, gxz, gyz);
}
if (0) {
/* Keep the result around for the next time */
free_dvector (F, 0, ntotal - 1);
free_derivs (&u, ntotal);
free_derivs (&v, ntotal);
free_derivs (&cf_v, ntotal);
}
}
/* TwoPunctures: File "TwoPunctures.h"*/
#define StencilSize 19
#define N_PlaneRelax 1
#define NRELAX 200
#define Step_Relax 1
typedef struct DERIVS
{
CCTK_REAL *d0, *d1, *d2, *d3, *d11, *d12, *d13, *d22, *d23, *d33;
} derivs;
/*
Files of "TwoPunctures":
TwoPunctures.c
FuncAndJacobian.c
CoordTransf.c
Equations.c
Newton.c
utilities.c (see utilities.h)
**************************
*/
/* Routines in "TwoPunctures.c"*/
CCTK_REAL TestSolution (CCTK_REAL A, CCTK_REAL B, CCTK_REAL X, CCTK_REAL R, CCTK_REAL phi);
void TestVector_w (CCTK_REAL *par, int nvar, int n1, int n2, int n3, CCTK_REAL *w);
/* Routines in "FuncAndJacobian.c"*/
int Index (int ivar, int i, int j, int k, int nvar, int n1, int n2, int n3);
void allocate_derivs (derivs * v, int n);
void free_derivs (derivs * v, int n);
void Derivatives_AB3 (int nvar, int n1, int n2, int n3, derivs v);
void F_of_v (CCTK_POINTER_TO_CONST cctkGH,
int nvar, int n1, int n2, int n3, derivs v,
CCTK_REAL *F, derivs u);
void J_times_dv (int nvar, int n1, int n2, int n3, derivs dv,
CCTK_REAL *Jdv, derivs u);
void JFD_times_dv (int i, int j, int k, int nvar, int n1,
int n2, int n3, derivs dv, derivs u, CCTK_REAL *values);
void SetMatrix_JFD (int nvar, int n1, int n2, int n3,
derivs u, int *ncols, int **cols, CCTK_REAL **Matrix);
CCTK_REAL PunctEvalAtArbitPosition (CCTK_REAL *v, int ivar, CCTK_REAL A, CCTK_REAL B, CCTK_REAL phi,
int nvar, int n1, int n2, int n3);
void calculate_derivs (int i, int j, int k, int ivar, int nvar, int n1,
int n2, int n3, derivs v, derivs vv);
CCTK_REAL interpol (CCTK_REAL a, CCTK_REAL b, CCTK_REAL c, derivs v);
CCTK_REAL PunctTaylorExpandAtArbitPosition (int ivar, int nvar, int n1,
int n2, int n3, derivs v, CCTK_REAL x,
CCTK_REAL y, CCTK_REAL z);
CCTK_REAL PunctIntPolAtArbitPosition (int ivar, int nvar, int n1,
int n2, int n3, derivs v, CCTK_REAL x,
CCTK_REAL y, CCTK_REAL z);
void SpecCoef(int n1, int n2, int n3, int ivar, CCTK_REAL *v, CCTK_REAL *cf);
CCTK_REAL PunctEvalAtArbitPositionFast (CCTK_REAL *v, int ivar, CCTK_REAL A, CCTK_REAL B, CCTK_REAL phi,
int nvar, int n1, int n2, int n3);
CCTK_REAL PunctIntPolAtArbitPositionFast (int ivar, int nvar, int n1,
int n2, int n3, derivs v, CCTK_REAL x,
CCTK_REAL y, CCTK_REAL z);
/* Routines in "CoordTransf.c"*/
void AB_To_XR (int nvar, CCTK_REAL A, CCTK_REAL B, CCTK_REAL *X,
CCTK_REAL *R, derivs U);
void C_To_c (int nvar, CCTK_REAL X, CCTK_REAL R, CCTK_REAL *x,
CCTK_REAL *r, derivs U);
void rx3_To_xyz (int nvar, CCTK_REAL x, CCTK_REAL r, CCTK_REAL phi, CCTK_REAL *y,
CCTK_REAL *z, derivs U);
/* Routines in "Equations.c"*/
CCTK_REAL BY_KKofxyz (CCTK_REAL x, CCTK_REAL y, CCTK_REAL z);
void BY_Aijofxyz (CCTK_REAL x, CCTK_REAL y, CCTK_REAL z, CCTK_REAL Aij[3][3]);
void NonLinEquations (CCTK_REAL rho_adm,
CCTK_REAL A, CCTK_REAL B, CCTK_REAL X, CCTK_REAL R,
CCTK_REAL x, CCTK_REAL r, CCTK_REAL phi,
CCTK_REAL y, CCTK_REAL z, derivs U, CCTK_REAL *values);
void LinEquations (CCTK_REAL A, CCTK_REAL B, CCTK_REAL X, CCTK_REAL R,
CCTK_REAL x, CCTK_REAL r, CCTK_REAL phi,
CCTK_REAL y, CCTK_REAL z, derivs dU, derivs U, CCTK_REAL *values);
/* Routines in "Newton.c"*/
void TestRelax (CCTK_POINTER_TO_CONST cctkGH,
int nvar, int n1, int n2, int n3, derivs v, CCTK_REAL *dv);
void Newton (CCTK_POINTER_TO_CONST cctkGH,
int nvar, int n1, int n2, int n3, derivs v,
CCTK_REAL tol, int itmax);
/*
27: -1.325691774825335e-03
37: -1.325691778944117e-03
47: -1.325691778942711e-03
17: -1.510625972641537e-03
21: -1.511443006977708e-03
27: -1.511440785153687e-03
37: -1.511440809549005e-03
39: -1.511440809597588e-03
*/
# Main make.code.defn file for thorn TwoPunctures
# Source files in this directory
SRCS = CoordTransf.c Equations.c FuncAndJacobian.c Newton.c TwoPunctures.c TP_utilities.c ParamCheck.c Metadata.cc
# Subdirectories containing source files
SUBDIRS =
"x-label diagonal
"y-label ADMBASE::gxx
"Time = 0.0000000000000
-6.9282032302755 1.1483279688308
-6.5206618637887 1.1566461204712
-6.1131204973019 1.1659057951834
-5.7055791308151 1.1762774712110
-5.2980377643283 1.1879795668519
-4.8904963978415 1.2012846611555
-4.4829550313547 1.2165282034985
-4.0754136648679 1.2341134316848
-3.6678722983812 1.2545062949768
-3.2603309318944 1.2781979917723
-2.8527895654076 1.3055807939836
-2.4452481989208 1.3365942448847
-2.0377068324340 1.3698233316813
-1.6301654659472 1.4006817405383
-1.2226240994604 1.4199854154323
-0.8150827329736 1.4182048411587
-0.4075413664868 1.3950268645505
0.0000000000000 1.3604372462933
0.4075413664868 1.3254726972427
0.8150827329736 1.2971491446396
1.2226240994604 1.2774461215120
1.6301654659472 1.2626648528667
2.0377068324340 1.2485043896842
2.4452481989208 1.2335940282551
2.8527895654076 1.2183238547052
3.2603309318944 1.2033839375936
3.6678722983812 1.1892691160557
4.0754136648679 1.1762395241518
4.4829550313547 1.1643872469282
4.8904963978415 1.1537011654157
5.2980377643283 1.1441121073796
5.7055791308151 1.1355214453048
6.1131204973019 1.1278190392660
6.5206618637887 1.1208939671118
6.9282032302755 1.1146411118913
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 1.5228526945902
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 1.0529213889344
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 1.2112155679857
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 1.2125562303741
"x-label x
"y-label ADMBASE::gxx (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.2682364916870
-3.7647058823529 1.2795121931933
-3.5294117647059 1.2931192170066
-3.2941176470588 1.3090245044241
-3.0588235294118 1.3272450423575
-2.8235294117647 1.3477409135099
-2.5882352941176 1.3701525466307
-2.3529411764706 1.3929987995454
-2.1176470588235 1.4108318300361
-1.8823529411765 1.4023364195044
-1.6470588235294 1.2744118469615
-1.4117647058824 1.2089656099561
-1.1764705882353 1.4527481711356
-0.9411764705882 1.4846118398097
-0.7058823529412 1.4615139439505
-0.4705882352941 1.4270647578330
-0.2352941176471 1.3926016027128
0.0000000000000 1.3604372462933
0.2352941176471 1.3299550773475
0.4705882352941 1.2991262214046
0.7058823529412 1.2644738880994
0.9411764705882 1.2200781428163
1.1764705882353 1.1554741076278
1.4117647058824 1.0529213889344
1.6470588235294 1.0767992712380
1.8823529411765 1.1446770647866
2.1176470588235 1.1776109696644
2.3529411764706 1.1931330428477
2.5882352941176 1.1991391033793
2.8235294117647 1.1996517563044
3.0588235294118 1.1969084658952
3.2941176470588 1.1922212383734
3.5294117647059 1.1863819593109
3.7647058823529 1.1798721011358
4.0000000000000 1.1729765394677
"x-label y
"y-label ADMBASE::gxx (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1915157333740
-3.7647058823529 1.2021977961465
-3.5294117647059 1.2130332627664
-3.2941176470588 1.2241329156896
-3.0588235294118 1.2355695557834
-2.8235294117647 1.2473791640688
-2.5882352941176 1.2595578764612
-2.3529411764706 1.2720545226292
-2.1176470588235 1.2847602424171
-1.8823529411765 1.2974959526546
-1.6470588235294 1.3100019899979
-1.4117647058824 1.3219356120520
-1.1764705882353 1.3328868773591
-0.9411764705882 1.3424217960810
-0.7058823529412 1.3501524819158
-0.4705882352941 1.3558072264020
-0.2352941176471 1.3592516171501
0.0000000000000 1.3604372462933
0.2352941176471 1.3593365339106
0.4705882352941 1.3559294732595
0.7058823529412 1.3502456346589
0.9411764705882 1.3424320996656
1.1764705882353 1.3327878074223
1.4117647058824 1.3217258416998
1.6470588235294 1.3096961803487
1.8823529411765 1.2971156943588
2.1176470588235 1.2843279255212
2.3529411764706 1.2715901325979
2.5882352941176 1.2590778074392
2.8235294117647 1.2468961601418
3.0588235294118 1.2350931701403
3.2941176470588 1.2236701409309
3.5294117647059 1.2125891632016
3.7647058823529 1.2017760790093
4.0000000000000 1.1911192504215
"x-label z
"y-label ADMBASE::gxx (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1917619563861
-3.7647058823529 1.2024354203434
-3.5294117647059 1.2133060478581
-3.2941176470588 1.2244995128313
-3.0588235294118 1.2361080738977
-2.8235294117647 1.2481915089639
-2.5882352941176 1.2607734210573
-2.3529411764706 1.2738319837126
-2.1176470588235 1.2872853343976
-1.8823529411765 1.3009705107502
-1.6470588235294 1.3146175901134
-1.4117647058824 1.3278218463934
-1.1764705882353 1.3400235878781
-0.9411764705882 1.3505108854634
-0.7058823529412 1.3584680855482
-0.4705882352941 1.3630919339137
-0.2352941176471 1.3637894475574
0.0000000000000 1.3604372462933
0.2352941176471 1.3535622958706
0.4705882352941 1.3441444807643
0.7058823529412 1.3331185585007
0.9411764705882 1.3211436647816
1.1764705882353 1.3086467101647
1.4117647058824 1.2959228893431
1.6470588235294 1.2831953522285
1.8823529411765 1.2706357983643
2.1176470588235 1.2583698759661
2.3529411764706 1.2464800413787
2.5882352941176 1.2350101117767
2.8235294117647 1.2239703086378
3.0588235294118 1.2133423351120
3.2941176470588 1.2030826966902
3.5294117647059 1.1931245353088
3.7647058823529 1.1833767130466
4.0000000000000 1.1737206169030
"x-label diagonal
"y-label ADMBASE::gxy
"Time = 0.0000000000000
-6.9282032302755 0.0000000000000
-6.5206618637887 0.0000000000000
-6.1131204973019 0.0000000000000
-5.7055791308151 0.0000000000000
-5.2980377643283 0.0000000000000
-4.8904963978415 0.0000000000000
-4.4829550313547 0.0000000000000
-4.0754136648679 0.0000000000000
-3.6678722983812 0.0000000000000
-3.2603309318944 0.0000000000000
-2.8527895654076 0.0000000000000
-2.4452481989208 0.0000000000000
-2.0377068324340 0.0000000000000
-1.6301654659472 0.0000000000000
-1.2226240994604 0.0000000000000
-0.8150827329736 0.0000000000000
-0.4075413664868 0.0000000000000
0.0000000000000 0.0000000000000
0.4075413664868 0.0000000000000
0.8150827329736 0.0000000000000
1.2226240994604 0.0000000000000
1.6301654659472 0.0000000000000
2.0377068324340 0.0000000000000
2.4452481989208 0.0000000000000
2.8527895654076 0.0000000000000
3.2603309318944 0.0000000000000
3.6678722983812 0.0000000000000
4.0754136648679 0.0000000000000
4.4829550313547 0.0000000000000
4.8904963978415 0.0000000000000
5.2980377643283 0.0000000000000
5.7055791308151 0.0000000000000
6.1131204973019 0.0000000000000
6.5206618637887 0.0000000000000
6.9282032302755 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label x
"y-label ADMBASE::gxy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::gxy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::gxy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::gxz
"Time = 0.0000000000000
-6.9282032302755 0.0000000000000
-6.5206618637887 0.0000000000000
-6.1131204973019 0.0000000000000
-5.7055791308151 0.0000000000000
-5.2980377643283 0.0000000000000
-4.8904963978415 0.0000000000000
-4.4829550313547 0.0000000000000
-4.0754136648679 0.0000000000000
-3.6678722983812 0.0000000000000
-3.2603309318944 0.0000000000000
-2.8527895654076 0.0000000000000
-2.4452481989208 0.0000000000000
-2.0377068324340 0.0000000000000
-1.6301654659472 0.0000000000000
-1.2226240994604 0.0000000000000
-0.8150827329736 0.0000000000000
-0.4075413664868 0.0000000000000
0.0000000000000 0.0000000000000
0.4075413664868 0.0000000000000
0.8150827329736 0.0000000000000
1.2226240994604 0.0000000000000
1.6301654659472 0.0000000000000
2.0377068324340 0.0000000000000
2.4452481989208 0.0000000000000
2.8527895654076 0.0000000000000
3.2603309318944 0.0000000000000
3.6678722983812 0.0000000000000
4.0754136648679 0.0000000000000
4.4829550313547 0.0000000000000
4.8904963978415 0.0000000000000
5.2980377643283 0.0000000000000
5.7055791308151 0.0000000000000
6.1131204973019 0.0000000000000
6.5206618637887 0.0000000000000
6.9282032302755 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label x
"y-label ADMBASE::gxz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::gxz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::gxz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::gyy
"Time = 0.0000000000000
-6.9282032302755 1.1483279688308
-6.5206618637887 1.1566461204712
-6.1131204973019 1.1659057951834
-5.7055791308151 1.1762774712110
-5.2980377643283 1.1879795668519
-4.8904963978415 1.2012846611555
-4.4829550313547 1.2165282034985
-4.0754136648679 1.2341134316848
-3.6678722983812 1.2545062949768
-3.2603309318944 1.2781979917723
-2.8527895654076 1.3055807939836
-2.4452481989208 1.3365942448847
-2.0377068324340 1.3698233316813
-1.6301654659472 1.4006817405383
-1.2226240994604 1.4199854154323
-0.8150827329736 1.4182048411587
-0.4075413664868 1.3950268645505
0.0000000000000 1.3604372462933
0.4075413664868 1.3254726972427
0.8150827329736 1.2971491446396
1.2226240994604 1.2774461215120
1.6301654659472 1.2626648528667
2.0377068324340 1.2485043896842
2.4452481989208 1.2335940282551
2.8527895654076 1.2183238547052
3.2603309318944 1.2033839375936
3.6678722983812 1.1892691160557
4.0754136648679 1.1762395241518
4.4829550313547 1.1643872469282
4.8904963978415 1.1537011654157
5.2980377643283 1.1441121073796
5.7055791308151 1.1355214453048
6.1131204973019 1.1278190392660
6.5206618637887 1.1208939671118
6.9282032302755 1.1146411118913
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 1.5228526945902
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 1.0529213889344
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 1.2112155679857
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 1.2125562303741
"x-label x
"y-label ADMBASE::gyy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.2682364916870
-3.7647058823529 1.2795121931933
-3.5294117647059 1.2931192170066
-3.2941176470588 1.3090245044241
-3.0588235294118 1.3272450423575
-2.8235294117647 1.3477409135099
-2.5882352941176 1.3701525466307
-2.3529411764706 1.3929987995454
-2.1176470588235 1.4108318300361
-1.8823529411765 1.4023364195044
-1.6470588235294 1.2744118469615
-1.4117647058824 1.2089656099561
-1.1764705882353 1.4527481711356
-0.9411764705882 1.4846118398097
-0.7058823529412 1.4615139439505
-0.4705882352941 1.4270647578330
-0.2352941176471 1.3926016027128
0.0000000000000 1.3604372462933
0.2352941176471 1.3299550773475
0.4705882352941 1.2991262214046
0.7058823529412 1.2644738880994
0.9411764705882 1.2200781428163
1.1764705882353 1.1554741076278
1.4117647058824 1.0529213889344
1.6470588235294 1.0767992712380
1.8823529411765 1.1446770647866
2.1176470588235 1.1776109696644
2.3529411764706 1.1931330428477
2.5882352941176 1.1991391033793
2.8235294117647 1.1996517563044
3.0588235294118 1.1969084658952
3.2941176470588 1.1922212383734
3.5294117647059 1.1863819593109
3.7647058823529 1.1798721011358
4.0000000000000 1.1729765394677
"x-label y
"y-label ADMBASE::gyy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1915157333740
-3.7647058823529 1.2021977961465
-3.5294117647059 1.2130332627664
-3.2941176470588 1.2241329156896
-3.0588235294118 1.2355695557834
-2.8235294117647 1.2473791640688
-2.5882352941176 1.2595578764612
-2.3529411764706 1.2720545226292
-2.1176470588235 1.2847602424171
-1.8823529411765 1.2974959526546
-1.6470588235294 1.3100019899979
-1.4117647058824 1.3219356120520
-1.1764705882353 1.3328868773591
-0.9411764705882 1.3424217960810
-0.7058823529412 1.3501524819158
-0.4705882352941 1.3558072264020
-0.2352941176471 1.3592516171501
0.0000000000000 1.3604372462933
0.2352941176471 1.3593365339106
0.4705882352941 1.3559294732595
0.7058823529412 1.3502456346589
0.9411764705882 1.3424320996656
1.1764705882353 1.3327878074223
1.4117647058824 1.3217258416998
1.6470588235294 1.3096961803487
1.8823529411765 1.2971156943588
2.1176470588235 1.2843279255212
2.3529411764706 1.2715901325979
2.5882352941176 1.2590778074392
2.8235294117647 1.2468961601418
3.0588235294118 1.2350931701403
3.2941176470588 1.2236701409309
3.5294117647059 1.2125891632016
3.7647058823529 1.2017760790093
4.0000000000000 1.1911192504215
"x-label z
"y-label ADMBASE::gyy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1917619563861
-3.7647058823529 1.2024354203434
-3.5294117647059 1.2133060478581
-3.2941176470588 1.2244995128313
-3.0588235294118 1.2361080738977
-2.8235294117647 1.2481915089639
-2.5882352941176 1.2607734210573
-2.3529411764706 1.2738319837126
-2.1176470588235 1.2872853343976
-1.8823529411765 1.3009705107502
-1.6470588235294 1.3146175901134
-1.4117647058824 1.3278218463934
-1.1764705882353 1.3400235878781
-0.9411764705882 1.3505108854634
-0.7058823529412 1.3584680855482
-0.4705882352941 1.3630919339137
-0.2352941176471 1.3637894475574
0.0000000000000 1.3604372462933
0.2352941176471 1.3535622958706
0.4705882352941 1.3441444807643
0.7058823529412 1.3331185585007
0.9411764705882 1.3211436647816
1.1764705882353 1.3086467101647
1.4117647058824 1.2959228893431
1.6470588235294 1.2831953522285
1.8823529411765 1.2706357983643
2.1176470588235 1.2583698759661
2.3529411764706 1.2464800413787
2.5882352941176 1.2350101117767
2.8235294117647 1.2239703086378
3.0588235294118 1.2133423351120
3.2941176470588 1.2030826966902
3.5294117647059 1.1931245353088
3.7647058823529 1.1833767130466
4.0000000000000 1.1737206169030
"x-label diagonal
"y-label ADMBASE::gyz
"Time = 0.0000000000000
-6.9282032302755 0.0000000000000
-6.5206618637887 0.0000000000000
-6.1131204973019 0.0000000000000
-5.7055791308151 0.0000000000000
-5.2980377643283 0.0000000000000
-4.8904963978415 0.0000000000000
-4.4829550313547 0.0000000000000
-4.0754136648679 0.0000000000000
-3.6678722983812 0.0000000000000
-3.2603309318944 0.0000000000000
-2.8527895654076 0.0000000000000
-2.4452481989208 0.0000000000000
-2.0377068324340 0.0000000000000
-1.6301654659472 0.0000000000000
-1.2226240994604 0.0000000000000
-0.8150827329736 0.0000000000000
-0.4075413664868 0.0000000000000
0.0000000000000 0.0000000000000
0.4075413664868 0.0000000000000
0.8150827329736 0.0000000000000
1.2226240994604 0.0000000000000
1.6301654659472 0.0000000000000
2.0377068324340 0.0000000000000
2.4452481989208 0.0000000000000
2.8527895654076 0.0000000000000
3.2603309318944 0.0000000000000
3.6678722983812 0.0000000000000
4.0754136648679 0.0000000000000
4.4829550313547 0.0000000000000
4.8904963978415 0.0000000000000
5.2980377643283 0.0000000000000
5.7055791308151 0.0000000000000
6.1131204973019 0.0000000000000
6.5206618637887 0.0000000000000
6.9282032302755 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label x
"y-label ADMBASE::gyz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::gyz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::gyz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::gzz
"Time = 0.0000000000000
-6.9282032302755 1.1483279688308
-6.5206618637887 1.1566461204712
-6.1131204973019 1.1659057951834
-5.7055791308151 1.1762774712110
-5.2980377643283 1.1879795668519
-4.8904963978415 1.2012846611555
-4.4829550313547 1.2165282034985
-4.0754136648679 1.2341134316848
-3.6678722983812 1.2545062949768
-3.2603309318944 1.2781979917723
-2.8527895654076 1.3055807939836
-2.4452481989208 1.3365942448847
-2.0377068324340 1.3698233316813
-1.6301654659472 1.4006817405383
-1.2226240994604 1.4199854154323
-0.8150827329736 1.4182048411587
-0.4075413664868 1.3950268645505
0.0000000000000 1.3604372462933
0.4075413664868 1.3254726972427
0.8150827329736 1.2971491446396
1.2226240994604 1.2774461215120
1.6301654659472 1.2626648528667
2.0377068324340 1.2485043896842
2.4452481989208 1.2335940282551
2.8527895654076 1.2183238547052
3.2603309318944 1.2033839375936
3.6678722983812 1.1892691160557
4.0754136648679 1.1762395241518
4.4829550313547 1.1643872469282
4.8904963978415 1.1537011654157
5.2980377643283 1.1441121073796
5.7055791308151 1.1355214453048
6.1131204973019 1.1278190392660
6.5206618637887 1.1208939671118
6.9282032302755 1.1146411118913
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 1.5228526945902
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 1.0529213889344
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 1.2112155679857
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 1.2125562303741
"x-label x
"y-label ADMBASE::gzz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.2682364916870
-3.7647058823529 1.2795121931933
-3.5294117647059 1.2931192170066
-3.2941176470588 1.3090245044241
-3.0588235294118 1.3272450423575
-2.8235294117647 1.3477409135099
-2.5882352941176 1.3701525466307
-2.3529411764706 1.3929987995454
-2.1176470588235 1.4108318300361
-1.8823529411765 1.4023364195044
-1.6470588235294 1.2744118469615
-1.4117647058824 1.2089656099561
-1.1764705882353 1.4527481711356
-0.9411764705882 1.4846118398097
-0.7058823529412 1.4615139439505
-0.4705882352941 1.4270647578330
-0.2352941176471 1.3926016027128
0.0000000000000 1.3604372462933
0.2352941176471 1.3299550773475
0.4705882352941 1.2991262214046
0.7058823529412 1.2644738880994
0.9411764705882 1.2200781428163
1.1764705882353 1.1554741076278
1.4117647058824 1.0529213889344
1.6470588235294 1.0767992712380
1.8823529411765 1.1446770647866
2.1176470588235 1.1776109696644
2.3529411764706 1.1931330428477
2.5882352941176 1.1991391033793
2.8235294117647 1.1996517563044
3.0588235294118 1.1969084658952
3.2941176470588 1.1922212383734
3.5294117647059 1.1863819593109
3.7647058823529 1.1798721011358
4.0000000000000 1.1729765394677
"x-label y
"y-label ADMBASE::gzz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1915157333740
-3.7647058823529 1.2021977961465
-3.5294117647059 1.2130332627664
-3.2941176470588 1.2241329156896
-3.0588235294118 1.2355695557834
-2.8235294117647 1.2473791640688
-2.5882352941176 1.2595578764612
-2.3529411764706 1.2720545226292
-2.1176470588235 1.2847602424171
-1.8823529411765 1.2974959526546
-1.6470588235294 1.3100019899979
-1.4117647058824 1.3219356120520
-1.1764705882353 1.3328868773591
-0.9411764705882 1.3424217960810
-0.7058823529412 1.3501524819158
-0.4705882352941 1.3558072264020
-0.2352941176471 1.3592516171501
0.0000000000000 1.3604372462933
0.2352941176471 1.3593365339106
0.4705882352941 1.3559294732595
0.7058823529412 1.3502456346589
0.9411764705882 1.3424320996656
1.1764705882353 1.3327878074223
1.4117647058824 1.3217258416998
1.6470588235294 1.3096961803487
1.8823529411765 1.2971156943588
2.1176470588235 1.2843279255212
2.3529411764706 1.2715901325979
2.5882352941176 1.2590778074392
2.8235294117647 1.2468961601418
3.0588235294118 1.2350931701403
3.2941176470588 1.2236701409309
3.5294117647059 1.2125891632016
3.7647058823529 1.2017760790093
4.0000000000000 1.1911192504215
"x-label z
"y-label ADMBASE::gzz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1917619563861
-3.7647058823529 1.2024354203434
-3.5294117647059 1.2133060478581
-3.2941176470588 1.2244995128313
-3.0588235294118 1.2361080738977
-2.8235294117647 1.2481915089639
-2.5882352941176 1.2607734210573
-2.3529411764706 1.2738319837126
-2.1176470588235 1.2872853343976
-1.8823529411765 1.3009705107502
-1.6470588235294 1.3146175901134
-1.4117647058824 1.3278218463934
-1.1764705882353 1.3400235878781
-0.9411764705882 1.3505108854634
-0.7058823529412 1.3584680855482
-0.4705882352941 1.3630919339137
-0.2352941176471 1.3637894475574
0.0000000000000 1.3604372462933
0.2352941176471 1.3535622958706
0.4705882352941 1.3441444807643
0.7058823529412 1.3331185585007
0.9411764705882 1.3211436647816
1.1764705882353 1.3086467101647
1.4117647058824 1.2959228893431
1.6470588235294 1.2831953522285
1.8823529411765 1.2706357983643
2.1176470588235 1.2583698759661
2.3529411764706 1.2464800413787
2.5882352941176 1.2350101117767
2.8235294117647 1.2239703086378
3.0588235294118 1.2133423351120
3.2941176470588 1.2030826966902
3.5294117647059 1.1931245353088
3.7647058823529 1.1833767130466
4.0000000000000 1.1737206169030
"x-label diagonal
"y-label ADMCONSTRAINTS::ham
"Time = 0.0000000000000
-6.9282032302755 -0.0000185130436
-6.5206618637887 -0.0000185130436
-6.1131204973019 -0.0000026953269
-5.7055791308151 -0.0000094106635
-5.2980377643283 -0.0000047964495
-4.8904963978415 -0.0000091935233
-4.4829550313547 -0.0000092172321
-4.0754136648679 -0.0000148002699
-3.6678722983812 -0.0000186674953
-3.2603309318944 -0.0000281575666
-2.8527895654076 -0.0000398715442
-2.4452481989208 -0.0000689150210
-2.0377068324340 -0.0001597240867
-1.6301654659472 -0.0004432182365
-1.2226240994604 -0.0007484799278
-0.8150827329736 -0.0000529628818
-0.4075413664868 0.0007668502506
0.0000000000000 0.0007095694039
0.4075413664868 0.0004621027329
0.8150827329736 -0.0001501433271
1.2226240994604 -0.0004953580861
1.6301654659472 -0.0003009798161
2.0377068324340 -0.0001268462971
2.4452481989208 -0.0000624202604
2.8527895654076 -0.0000382422608
3.2603309318944 -0.0000264903714
3.6678722983812 -0.0000181434246
4.0754136648679 -0.0000131822235
4.4829550313547 -0.0000089100677
4.8904963978415 -0.0000068163621
5.2980377643283 -0.0000044944864
5.7055791308151 -0.0000043947151
6.1131204973019 -0.0000023752028
6.5206618637887 -0.0000061516651
6.9282032302755 -0.0000061516651
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 0.0338009192339
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 -0.0254509068712
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 0.0000798042367
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 0.0006369475227
"x-label x
"y-label ADMCONSTRAINTS::ham (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0001902423959
-3.7647058823529 0.0001902423959
-3.5294117647059 0.0003027944429
-3.2941176470588 0.0004792559647
-3.0588235294118 0.0008112160312
-2.8235294117647 0.0014506012868
-2.5882352941176 0.0028070818348
-2.3529411764706 0.0059411385282
-2.1176470588235 0.0138010005849
-1.8823529411765 0.0320162683342
-1.6470588235294 -0.0211049908076
-1.4117647058824 -0.0097314236607
-1.1764705882353 0.0338009192339
-0.9411764705882 0.0150137020931
-0.7058823529412 0.0057271864158
-0.4705882352941 0.0023217153575
-0.2352941176471 0.0010954158493
0.0000000000000 0.0007095694039
0.2352941176471 0.0007333668786
0.4705882352941 0.0010763307874
0.7058823529412 0.0018216982950
0.9411764705882 0.0031055203833
1.1764705882353 0.0044737090108
1.4117647058824 -0.0008529916702
1.6470588235294 -0.0024121281436
1.8823529411765 0.0045616061845
2.1176470588235 0.0029420095186
2.3529411764706 0.0017434715315
2.5882352941176 0.0010502065830
2.8235294117647 0.0006542678464
3.0588235294118 0.0004218803795
3.2941176470588 0.0002802876888
3.5294117647059 0.0001911735710
3.7647058823529 0.0001335940091
4.0000000000000 0.0001335940091
"x-label y
"y-label ADMCONSTRAINTS::ham (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000132338476
-3.7647058823529 0.0000132338476
-3.5294117647059 0.0000167134851
-3.2941176470588 0.0000176240292
-3.0588235294118 0.0000199023377
-2.8235294117647 0.0000187991236
-2.5882352941176 0.0000173498695
-2.3529411764706 0.0000104973973
-2.1176470588235 0.0000004620339
-1.8823529411765 -0.0000167931097
-1.6470588235294 -0.0000367775024
-1.4117647058824 -0.0000542787408
-1.1764705882353 -0.0000490662727
-0.9411764705882 0.0000083557600
-0.7058823529412 0.0001518681683
-0.4705882352941 0.0003779924200
-0.2352941176471 0.0006091230592
0.0000000000000 0.0007095694039
0.2352941176471 0.0006096766915
0.4705882352941 0.0003784890195
0.7058823529412 0.0001519646454
0.9411764705882 0.0000082113406
1.1764705882353 -0.0000491857671
1.4117647058824 -0.0000542726769
1.6470588235294 -0.0000366726751
1.8823529411765 -0.0000166535475
2.1176470588235 0.0000005906851
2.3529411764706 0.0000105951081
2.5882352941176 0.0000174133949
2.8235294117647 0.0000188346330
3.0588235294118 0.0000199166030
3.2941176470588 0.0000176269209
3.5294117647059 0.0000167062522
3.7647058823529 0.0000132309319
4.0000000000000 0.0000132309319
"x-label z
"y-label ADMCONSTRAINTS::ham (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000138132148
-3.7647058823529 0.0000138132148
-3.5294117647059 0.0000169173624
-3.2941176470588 0.0000180713628
-3.0588235294118 0.0000203048819
-2.8235294117647 0.0000193782259
-2.5882352941176 0.0000179288925
-2.3529411764706 0.0000110058126
-2.1176470588235 0.0000005364157
-1.8823529411765 -0.0000177574340
-1.6470588235294 -0.0000394537283
-1.4117647058824 -0.0000592826192
-1.1764705882353 -0.0000554410660
-0.9411764705882 0.0000046296660
-0.7058823529412 0.0001580193415
-0.4705882352941 0.0003984913594
-0.2352941176471 0.0006329301075
0.0000000000000 0.0007095694039
0.2352941176471 0.0005702485213
0.4705882352941 0.0003163913916
0.7058823529412 0.0000944597898
0.9411764705882 -0.0000309654797
1.1764705882353 -0.0000705054568
1.4117647058824 -0.0000641136408
1.6470588235294 -0.0000408443168
1.8823529411765 -0.0000186707515
2.1176470588235 -0.0000009783262
2.3529411764706 0.0000088969882
2.5882352941176 0.0000155563109
2.8235294117647 0.0000167814389
3.0588235294118 0.0000179486651
3.2941176470588 0.0000154907092
3.5294117647059 0.0000149376231
3.7647058823529 0.0000109456662
4.0000000000000 0.0000109456662
"x-label diagonal
"y-label ADMBASE::kxx
"Time = 0.0000000000000
-6.9282032302755 -0.0127751418883
-6.5206618637887 -0.0150783251966
-6.1131204973019 -0.0179790584865
-5.7055791308151 -0.0216870294469
-5.2980377643283 -0.0265073717736
-4.8904963978415 -0.0328952651738
-4.4829550313547 -0.0415483263048
-4.0754136648679 -0.0535667657627
-3.6678722983812 -0.0707348088023
-3.2603309318944 -0.0960076586977
-2.8527895654076 -0.1342682780730
-2.4452481989208 -0.1929794921693
-2.0377068324340 -0.2797601635294
-1.6301654659472 -0.3844197747936
-1.2226240994604 -0.4297686833836
-0.8150827329736 -0.2999409646162
-0.4075413664868 -0.0882933295652
0.0000000000000 0.0000000000000
0.4075413664868 -0.0857974329034
0.8150827329736 -0.2859039103000
1.2226240994604 -0.4074905106097
1.6301654659472 -0.3661786667392
2.0377068324340 -0.2686164578398
2.4452481989208 -0.1867548929655
2.8527895654076 -0.1308175431080
3.2603309318944 -0.0940614086820
3.6678722983812 -0.0696151814812
4.0754136648679 -0.0529134836467
4.4829550313547 -0.0411651695617
4.8904963978415 -0.0326719997565
5.2980377643283 -0.0263802298299
5.7055791308151 -0.0216182044358
6.1131204973019 -0.0179457110961
6.5206618637887 -0.0150664803094
6.9282032302755 -0.0127762039793
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 12.9946348905885
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 -12.9944358943451
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 0.0666257945189
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 0.2068386684602
"x-label x
"y-label ADMBASE::kxx (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kxx (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0069364172893
-3.7647058823529 -0.0082567657027
-3.5294117647059 -0.0098885419389
-3.2941176470588 -0.0119149112063
-3.0588235294118 -0.0144413779269
-2.8235294117647 -0.0175995321269
-2.5882352941176 -0.0215483016518
-2.3529411764706 -0.0264680900460
-2.1176470588235 -0.0325382056233
-1.8823529411765 -0.0398792062247
-1.6470588235294 -0.0484286291730
-1.4117647058824 -0.0577065455502
-1.1764705882353 -0.0664416883964
-0.9411764705882 -0.0721378726546
-0.7058823529412 -0.0709639990106
-0.4705882352941 -0.0587740498942
-0.2352941176471 -0.0338551708651
0.0000000000000 0.0000000000000
0.2352941176471 0.0338541133947
0.4705882352941 0.0587714003815
0.7058823529412 0.0709615510837
0.9411764705882 0.0721375958137
1.1764705882353 0.0664441577510
1.4117647058824 0.0577111246549
1.6470588235294 0.0484342828039
1.8823529411765 0.0398850512267
2.1176470588235 0.0325436814960
2.3529411764706 0.0264729227334
2.5882352941176 0.0215524092956
2.8235294117647 0.0176029405182
3.0588235294118 0.0144441627378
3.2941176470588 0.0119171640189
3.5294117647059 0.0098903525667
3.7647058823529 0.0082582142730
4.0000000000000 0.0069375716416
"x-label z
"y-label ADMBASE::kxx (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0069357007059
-3.7647058823529 0.0082559498151
-3.5294117647059 0.0098874302662
-3.2941176470588 0.0119131274982
-3.0588235294118 0.0144382318465
-2.8235294117647 0.0175938041529
-2.5882352941176 0.0215379115066
-2.3529411764706 0.0264496172711
-2.1176470588235 0.0325062770792
-1.8823529411765 0.0398259170618
-1.6470588235294 0.0483435383704
-1.4117647058824 0.0575784969224
-1.1764705882353 0.0662645243042
-0.9411764705882 0.0719215078265
-0.7058823529412 0.0707464693064
-0.4705882352941 0.0586167878184
-0.2352941176471 0.0337987996151
0.0000000000000 0.0000000000000
0.2352941176471 -0.0339262466369
0.4705882352941 -0.0590284817360
0.7058823529412 -0.0714159312280
0.9411764705882 -0.0727164728439
1.1764705882353 -0.0670542172727
1.4117647058824 -0.0582828322366
1.6470588235294 -0.0489318645366
1.8823529411765 -0.0402985080526
2.1176470588235 -0.0328776287432
2.3529411764706 -0.0267382390774
2.5882352941176 -0.0217614011015
2.8235294117647 -0.0177670336082
3.0588235294118 -0.0145730534383
3.2941176470588 -0.0120186962076
3.5294117647059 -0.0099707017703
3.7647058823529 -0.0083221667876
4.0000000000000 -0.0069888019920
"x-label diagonal
"y-label ADMBASE::kxy
"Time = 0.0000000000000
-6.9282032302755 0.0063234432172
-6.5206618637887 0.0072412402010
-6.1131204973019 0.0083120117766
-5.7055791308151 0.0095483981508
-5.2980377643283 0.0109441598166
-4.8904963978415 0.0124450948672
-4.4829550313547 0.0138827428148
-4.0754136648679 0.0148207698312
-3.6678722983812 0.0141896823935
-3.2603309318944 0.0093927927571
-2.8527895654076 -0.0059264951153
-2.4452481989208 -0.0473608266840
-2.0377068324340 -0.1512859064593
-1.6301654659472 -0.3846379956863
-1.2226240994604 -0.7796197184169
-0.8150827329736 -1.1224788195885
-0.4075413664868 -1.1434620276364
0.0000000000000 -1.0203234426089
0.4075413664868 -0.9424103038755
0.8150827329736 -0.8085786793540
1.2226240994604 -0.5341148599320
1.6301654659472 -0.2695926662158
2.0377068324340 -0.1143044896112
2.4452481989208 -0.0413778895184
2.8527895654076 -0.0097737663356
3.2603309318944 0.0033586640434
3.6678722983812 0.0084096450018
4.0754136648679 0.0099245355685
4.4829550313547 0.0099100619673
4.8904963978415 0.0092685364387
5.2980377643283 0.0084102334599
5.7055791308151 0.0075203583676
6.1131204973019 0.0066790140744
6.5206618637887 0.0059167380343
6.9282032302755 0.0052408568866
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 8.8247442345648
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 -90.1578262620044
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 0.1055365948969
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 0.5450478370222
"x-label x
"y-label ADMBASE::kxy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0894058701352
-3.7647058823529 0.0990072408499
-3.5294117647059 0.1079677676344
-3.2941176470588 0.1138948679587
-3.0588235294118 0.1111210424219
-2.8235294117647 0.0857619557516
-2.5882352941176 0.0012505957803
-2.3529411764706 -0.2509353642873
-2.1176470588235 -1.0615916924876
-1.8823529411765 -4.4149119077613
-1.6470588235294 -33.1421454362097
-1.4117647058824 -90.1578262620044
-1.1764705882353 -12.2352052097843
-0.9411764705882 -4.6385961747259
-0.7058823529412 -2.4528980069860
-0.4705882352941 -1.5741041310160
-0.2352941176471 -1.1777403035854
0.0000000000000 -1.0203234426089
0.2352941176471 -1.0260929344102
0.4705882352941 -1.1991239324690
0.7058823529412 -1.6316312640344
0.9411764705882 -2.6393959638030
1.1764705882353 -5.5682043239857
1.4117647058824 -26.7682837505541
1.6470588235294 -8.1999326044868
1.8823529411765 -0.6432600107213
2.1176470588235 0.2006950557712
2.3529411764706 0.3292830908713
2.5882352941176 0.3188938989800
2.8235294117647 0.2800147393183
3.0588235294118 0.2393176349739
3.2941176470588 0.2033301744630
3.5294117647059 0.1730635855490
3.7647058823529 0.1480094014381
4.0000000000000 0.1273313532209
"x-label y
"y-label ADMBASE::kxy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0949422116479
-3.7647058823529 -0.1080570061119
-3.5294117647059 -0.1236140452236
-3.2941176470588 -0.1421622874626
-3.0588235294118 -0.1643891128217
-2.8235294117647 -0.1911522712715
-2.5882352941176 -0.2235132158304
-2.3529411764706 -0.2627639101148
-2.1176470588235 -0.3104288367367
-1.8823529411765 -0.3682045644579
-1.6470588235294 -0.4377653028864
-1.4117647058824 -0.5203136138304
-1.1764705882353 -0.6157092638673
-0.9411764705882 -0.7210472105871
-0.7058823529412 -0.8288699443259
-0.4705882352941 -0.9260154074328
-0.2352941176471 -0.9951179818634
0.0000000000000 -1.0203234426089
0.2352941176471 -0.9950868992312
0.4705882352941 -0.9259736629956
0.7058823529412 -0.8288413521799
0.9411764705882 -0.7210444434508
1.1764705882353 -0.6157321471591
1.4117647058824 -0.5203549015302
1.6470588235294 -0.4378164082657
1.8823529411765 -0.3682585313403
2.1176470588235 -0.3104810789782
2.3529411764706 -0.2628118869740
2.5882352941176 -0.2235558230244
2.8235294117647 -0.1911892905364
3.0588235294118 -0.1644208128849
3.2941176470588 -0.1421891668058
3.5294117647059 -0.1236366794017
3.7647058823529 -0.1080759636761
4.0000000000000 -0.0949580118444
"x-label z
"y-label ADMBASE::kxy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0741253012943
-3.7647058823529 -0.0852210555023
-3.5294117647059 -0.0985907660591
-3.2941176470588 -0.1148108891955
-3.0588235294118 -0.1346275289061
-2.8235294117647 -0.1590072391870
-2.5882352941176 -0.1891981711655
-2.3529411764706 -0.2267957439755
-2.1176470588235 -0.2737936793691
-1.8823529411765 -0.3325720307584
-1.6470588235294 -0.4057150208091
-1.4117647058824 -0.4954502648780
-1.1764705882353 -0.6023737602742
-0.9411764705882 -0.7231152335603
-0.7058823529412 -0.8471369504810
-0.4705882352941 -0.9545700795642
-0.2352941176471 -1.0193071810389
0.0000000000000 -1.0203234426089
0.2352941176471 -0.9552982462942
0.4705882352941 -0.8432175212685
0.7058823529412 -0.7123214022854
0.9411764705882 -0.5856750473628
1.1764705882353 -0.4754439832066
1.4117647058824 -0.3849452504156
1.6470588235294 -0.3127887202075
1.8823529411765 -0.2559214534832
2.1176470588235 -0.2111662404941
2.3529411764706 -0.1757940916987
2.5882352941176 -0.1476385965771
2.8235294117647 -0.1250387650164
3.0588235294118 -0.1067385494908
3.2941176470588 -0.0917908985836
3.5294117647059 -0.0794796896260
3.7647058823529 -0.0692602387133
4.0000000000000 -0.0607152173054
"x-label diagonal
"y-label ADMBASE::kxz
"Time = 0.0000000000000
-6.9282032302755 0.0045230597833
-6.5206618637887 0.0052789654977
-6.1131204973019 0.0062156207807
-5.7055791308151 0.0073916119173
-5.2980377643283 0.0088905139852
-4.8904963978415 0.0108347141682
-4.4829550313547 0.0134089618031
-4.0754136648679 0.0169021079441
-3.6678722983812 0.0217839005878
-3.2603309318944 0.0288498281073
-2.8527895654076 0.0394883925862
-2.4452481989208 0.0560838601141
-2.0377068324340 0.0819728524267
-1.6301654659472 0.1170704613388
-1.2226240994604 0.1390020422873
-0.8150827329736 0.0944667312824
-0.4075413664868 -0.0123103229745
0.0000000000000 -0.1133692714010
0.4075413664868 -0.1806904013699
0.8150827329736 -0.1713230698402
1.2226240994604 -0.0732947398006
1.6301654659472 0.0147214826441
2.0377068324340 0.0477523871910
2.4452481989208 0.0498195594402
2.8527895654076 0.0424731129885
3.2603309318944 0.0341087092786
3.6678722983812 0.0269945294094
4.0754136648679 0.0214114607437
4.4829550313547 0.0171299598131
4.8904963978415 0.0138532688155
5.2980377643283 0.0113293038266
5.7055791308151 0.0093658916231
6.1131204973019 0.0078216727652
6.5206618637887 0.0065936323264
6.9282032302755 0.0056065478630
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 5.7560711348291
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 -22.7488316064761
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 0.0321526527155
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 0.1742481011393
"x-label x
"y-label ADMBASE::kxz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0044828454741
-3.7647058823529 -0.0048899426792
-3.5294117647059 -0.0053242807995
-3.2941176470588 -0.0057770839156
-3.0588235294118 -0.0062293975368
-2.8235294117647 -0.0066437119990
-2.5882352941176 -0.0069481658503
-2.3529411764706 -0.0070061195305
-2.1176470588235 -0.0065574015474
-1.8823529411765 -0.0051163772414
-1.6470588235294 -0.0019815305942
-1.4117647058824 -0.0011525795873
-1.1764705882353 -0.0081295115672
-0.9411764705882 -0.0174528417578
-0.7058823529412 -0.0297970727113
-0.4705882352941 -0.0471100526943
-0.2352941176471 -0.0728314466008
0.0000000000000 -0.1133692714010
0.2352941176471 -0.1816992848008
0.4705882352941 -0.3070140327694
0.7058823529412 -0.5650900821673
0.9411764705882 -1.1996131778842
1.1764705882353 -3.3542469913973
1.4117647058824 -22.7488316064761
1.6470588235294 -11.6026603250487
1.8823529411765 -2.5942580760622
2.1176470588235 -1.0600125633235
2.3529411764706 -0.5482700732278
2.5882352941176 -0.3239034153182
2.8235294117647 -0.2087129077113
3.0588235294118 -0.1430321224305
3.2941176470588 -0.1026464718495
3.5294117647059 -0.0763548196167
3.7647058823529 -0.0584539009765
4.0000000000000 -0.0458172563225
"x-label y
"y-label ADMBASE::kxz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0056358390476
-3.7647058823529 0.0066118631604
-3.5294117647059 0.0077872267769
-3.2941176470588 0.0092021412441
-3.0588235294118 0.0109004631468
-2.8235294117647 0.0129246564057
-2.5882352941176 0.0153041915141
-2.3529411764706 0.0180313863438
-2.1176470588235 0.0210142577984
-1.8823529411765 0.0239898349945
-1.6470588235294 0.0263763069603
-1.4117647058824 0.0270499432267
-1.1764705882353 0.0240851120437
-0.9411764705882 0.0146530053830
-0.7058823529412 -0.0044352499382
-0.4705882352941 -0.0348970921247
-0.2352941176471 -0.0740581862675
0.0000000000000 -0.1133692714010
0.2352941176471 -0.1417640998404
0.4705882352941 -0.1524383197395
0.7058823529412 -0.1463581991101
0.9411764705882 -0.1296222424778
1.1764705882353 -0.1088023083173
1.4117647058824 -0.0883701596279
1.6470588235294 -0.0704891794378
1.8823529411765 -0.0557767513249
2.1176470588235 -0.0440695686925
2.3529411764706 -0.0349111668546
2.5882352941176 -0.0277977097165
2.8235294117647 -0.0222787215933
3.0588235294118 -0.0179857603322
3.2941176470588 -0.0146304468981
3.5294117647059 -0.0119920524871
3.7647058823529 -0.0099034053977
4.0000000000000 -0.0082383663244
"x-label z
"y-label ADMBASE::kxz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0079471570588
-3.7647058823529 0.0087156676089
-3.5294117647059 0.0095311919699
-3.2941176470588 0.0103687173245
-3.0588235294118 0.0111811910463
-2.8235294117647 0.0118855202687
-2.5882352941176 0.0123406282173
-2.3529411764706 0.0123139823545
-2.1176470588235 0.0114329675511
-1.8823529411765 0.0091206718761
-1.6470588235294 0.0045279749699
-1.4117647058824 -0.0034928132324
-1.1764705882353 -0.0162575462815
-0.9411764705882 -0.0347488412507
-0.7058823529412 -0.0585218955659
-0.4705882352941 -0.0842257153395
-0.2352941176471 -0.1050827875288
0.0000000000000 -0.1133692714010
0.2352941176471 -0.1054790290659
0.4705882352941 -0.0848172730826
0.7058823529412 -0.0590756784055
0.9411764705882 -0.0351329282092
1.1764705882353 -0.0164512920319
1.4117647058824 -0.0035355394555
1.6470588235294 0.0045830790489
1.8823529411765 0.0092289015837
2.1176470588235 0.0115635777565
2.3529411764706 0.0124483541979
2.5882352941176 0.0124686815803
2.8235294117647 0.0120025456820
3.0588235294118 0.0112855989815
3.2941176470588 0.0104606001744
3.5294117647059 0.0096114632506
3.7647058823529 0.0087855717550
4.0000000000000 0.0080080022825
"x-label diagonal
"y-label ADMBASE::kyy
"Time = 0.0000000000000
-6.9282032302755 0.0290550437355
-6.5206618637887 0.0343379054866
-6.1131204973019 0.0409949111440
-5.7055791308151 0.0495059829051
-5.2980377643283 0.0605665220019
-4.8904963978415 0.0752076274849
-4.4829550313547 0.0949961687742
-4.0754136648679 0.1223737106362
-3.6678722983812 0.1612323245911
-3.2603309318944 0.2178576624485
-2.8527895654076 0.3022323163139
-2.4452481989208 0.4285316059865
-2.0377068324340 0.6079292405130
-1.6301654659472 0.8090633075210
-1.2226240994604 0.8681138121015
-0.8150827329736 0.5835235613848
-0.4075413664868 0.1758696859511
0.0000000000000 0.0000000000000
0.4075413664868 0.0771262360190
0.8150827329736 0.2894041525712
1.2226240994604 0.4375295802827
1.6301654659472 0.4289223639027
2.0377068324340 0.3466937956037
2.4452481989208 0.2630757234176
2.8527895654076 0.1979226954564
3.2603309318944 0.1505319875861
3.6678722983812 0.1163994067826
4.0754136648679 0.0915707035874
4.4829550313547 0.0732147265682
4.8904963978415 0.0594046093569
5.2980377643283 0.0488374520494
5.7055791308151 0.0406240559219
6.1131204973019 0.0341483508136
6.5206618637887 0.0289762675255
6.9282032302755 0.0247967817016
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 16.5319252200600
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 -16.5321783892659
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 0.1057290305036
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 0.2990000370222
"x-label x
"y-label ADMBASE::kyy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kyy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0069364172893
-3.7647058823529 0.0082567657027
-3.5294117647059 0.0098885419389
-3.2941176470588 0.0119149112063
-3.0588235294118 0.0144413779269
-2.8235294117647 0.0175995321269
-2.5882352941176 0.0215483016518
-2.3529411764706 0.0264680900460
-2.1176470588235 0.0325382056233
-1.8823529411765 0.0398792062247
-1.6470588235294 0.0484286291730
-1.4117647058824 0.0577065455502
-1.1764705882353 0.0664416883964
-0.9411764705882 0.0721378726546
-0.7058823529412 0.0709639990106
-0.4705882352941 0.0587740498942
-0.2352941176471 0.0338551708651
0.0000000000000 0.0000000000000
0.2352941176471 -0.0338541133947
0.4705882352941 -0.0587714003815
0.7058823529412 -0.0709615510837
0.9411764705882 -0.0721375958137
1.1764705882353 -0.0664441577510
1.4117647058824 -0.0577111246549
1.6470588235294 -0.0484342828039
1.8823529411765 -0.0398850512267
2.1176470588235 -0.0325436814960
2.3529411764706 -0.0264729227334
2.5882352941176 -0.0215524092956
2.8235294117647 -0.0176029405182
3.0588235294118 -0.0144441627378
3.2941176470588 -0.0119171640189
3.5294117647059 -0.0098903525667
3.7647058823529 -0.0082582142730
4.0000000000000 -0.0069375716416
"x-label z
"y-label ADMBASE::kyy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::kyz
"Time = 0.0000000000000
-6.9282032302755 0.0241325095154
-6.5206618637887 0.0282813000569
-6.1131204973019 0.0334363805288
-5.7055791308151 0.0399201501041
-5.2980377643283 0.0481851804465
-4.8904963978415 0.0588779078840
-4.4829550313547 0.0729379426814
-4.0754136648679 0.0917531333492
-3.6678722983812 0.1173956943044
-3.2603309318944 0.1529479641647
-2.8527895654076 0.2027937979862
-2.4452481989208 0.2721195879247
-2.0377068324340 0.3624121209526
-1.6301654659472 0.4533607093502
-1.2226240994604 0.4673062486980
-0.8150827329736 0.3136368529988
-0.4075413664868 0.0928140795164
0.0000000000000 0.0000000000000
0.4075413664868 0.0901903892289
0.8150827329736 0.2989588394547
1.2226240994604 0.4430822190064
1.6301654659472 0.4318482840559
2.0377068324340 0.3479761342013
2.4452481989208 0.2633423061975
2.8527895654076 0.1975819366334
3.2603309318944 0.1498474305022
3.6678722983812 0.1155374942337
4.0754136648679 0.0906341432393
4.4829550313547 0.0722653123481
4.8904963978415 0.0584782941218
5.2980377643283 0.0479540614374
5.7055791308151 0.0397934612562
6.1131204973019 0.0333743630414
6.5206618637887 0.0282590834773
6.9282032302755 0.0241345158273
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 21.5620008246736
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 -13.1895622472246
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 0.0933307873911
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 0.2581005410939
"x-label x
"y-label ADMBASE::kyz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kyz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0219653214163
-3.7647058823529 -0.0248512457916
-3.5294117647059 -0.0282114284729
-3.2941176470588 -0.0321235351150
-3.0588235294118 -0.0366697733635
-2.8235294117647 -0.0419282971258
-2.5882352941176 -0.0479555340683
-2.3529411764706 -0.0547526176442
-2.1176470588235 -0.0622053931033
-1.8823529411765 -0.0699840971982
-1.6470588235294 -0.0773908485803
-1.4117647058824 -0.0831653156459
-1.1764705882353 -0.0853319723522
-0.9411764705882 -0.0813319152478
-0.7058823529412 -0.0688768225691
-0.4705882352941 -0.0478259425610
-0.2352941176471 -0.0222382004702
0.0000000000000 0.0000000000000
0.2352941176471 0.0116166075374
0.4705882352941 0.0109476137965
0.7058823529412 0.0020871044436
0.9411764705882 -0.0091940073096
1.1764705882353 -0.0188909860273
1.4117647058824 -0.0254607902889
1.6470588235294 -0.0289656005004
1.8823529411765 -0.0301093033770
2.1176470588235 -0.0296721801875
2.3529411764706 -0.0282896919406
2.5882352941176 -0.0264122662936
2.8235294117647 -0.0243334765987
3.0588235294118 -0.0222326818612
3.2941176470588 -0.0202124448555
3.5294117647059 -0.0183262415206
3.7647058823529 -0.0165973914310
4.0000000000000 -0.0150314052235
"x-label z
"y-label ADMBASE::kyz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0219630522353
-3.7647058823529 0.0248487901299
-3.5294117647059 0.0282082569360
-3.2941176470588 0.0321187260981
-3.0588235294118 0.0366617847868
-2.8235294117647 0.0419146510701
-2.5882352941176 0.0479324109019
-2.3529411764706 0.0547144043549
-2.1176470588235 0.0621443532396
-1.8823529411765 0.0698905799418
-1.6470588235294 0.0772548701409
-1.4117647058824 0.0829807749764
-1.1764705882353 0.0851044380770
-0.9411764705882 0.0810879745102
-0.7058823529412 0.0686656907974
-0.4705882352941 0.0476979744012
-0.2352941176471 0.0222011722962
0.0000000000000 0.0000000000000
0.2352941176471 -0.0116413591401
0.4705882352941 -0.0109955014998
0.7058823529412 -0.0021004685655
0.9411764705882 0.0092677857546
1.1764705882353 0.0190644343226
1.4117647058824 0.0257130142220
1.6470588235294 0.0292631738895
1.8823529411765 0.0304214227456
2.1176470588235 0.0299766615012
2.3529411764706 0.0285732162689
2.5882352941176 0.0266683837028
2.8235294117647 0.0245603111642
3.0588235294118 0.0224310724492
3.2941176470588 0.0203846514110
3.5294117647059 0.0184751238684
3.7647058823529 0.0167259234457
4.0000000000000 0.0151424043160
"x-label diagonal
"y-label ADMBASE::kzz
"Time = 0.0000000000000
-6.9282032302755 -0.0162799018472
-6.5206618637887 -0.0192595802900
-6.1131204973019 -0.0230158526576
-5.7055791308151 -0.0278189534582
-5.2980377643283 -0.0340591502283
-4.8904963978415 -0.0423123623111
-4.4829550313547 -0.0534478424694
-4.0754136648679 -0.0688069448735
-3.6678722983812 -0.0904975157889
-3.2603309318944 -0.1218500037508
-2.8527895654076 -0.1679640382408
-2.4452481989208 -0.2355521138172
-2.0377068324340 -0.3281690769836
-1.6301654659472 -0.4246435327274
-1.2226240994604 -0.4383451287179
-0.8150827329736 -0.2835825967687
-0.4075413664868 -0.0875763563859
0.0000000000000 0.0000000000000
0.4075413664868 0.0086711968844
0.8150827329736 -0.0035002422712
1.2226240994604 -0.0300390696730
1.6301654659472 -0.0627436971635
2.0377068324340 -0.0780773377639
2.4452481989208 -0.0763208304521
2.8527895654076 -0.0671051523484
3.2603309318944 -0.0564705789041
3.6678722983812 -0.0467842253014
4.0754136648679 -0.0386572199407
4.4829550313547 -0.0320495570066
4.8904963978415 -0.0267326096004
5.2980377643283 -0.0224572222195
5.7055791308151 -0.0190058514861
6.1131204973019 -0.0162026397175
6.5206618637887 -0.0139097872162
6.9282032302755 -0.0120205777223
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 8.7173631117595
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 -8.7196417893523
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 0.0630612779540
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 0.1823930919365
"x-label x
"y-label ADMBASE::kzz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kzz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000000000000
-3.7647058823529 -0.0000000000000
-3.5294117647059 -0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 -0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 -0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 -0.0000000000000
-1.4117647058824 -0.0000000000000
-1.1764705882353 -0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 -0.0000000000000
-0.4705882352941 -0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 -0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 -0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 -0.0000000000000
2.3529411764706 -0.0000000000000
2.5882352941176 -0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 -0.0000000000000
3.2941176470588 -0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::kzz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0069357007059
-3.7647058823529 -0.0082559498151
-3.5294117647059 -0.0098874302662
-3.2941176470588 -0.0119131274982
-3.0588235294118 -0.0144382318465
-2.8235294117647 -0.0175938041529
-2.5882352941176 -0.0215379115066
-2.3529411764706 -0.0264496172711
-2.1176470588235 -0.0325062770792
-1.8823529411765 -0.0398259170618
-1.6470588235294 -0.0483435383704
-1.4117647058824 -0.0575784969224
-1.1764705882353 -0.0662645243042
-0.9411764705882 -0.0719215078265
-0.7058823529412 -0.0707464693064
-0.4705882352941 -0.0586167878184
-0.2352941176471 -0.0337987996151
0.0000000000000 0.0000000000000
0.2352941176471 0.0339262466369
0.4705882352941 0.0590284817360
0.7058823529412 0.0714159312280
0.9411764705882 0.0727164728439
1.1764705882353 0.0670542172727
1.4117647058824 0.0582828322366
1.6470588235294 0.0489318645366
1.8823529411765 0.0402985080526
2.1176470588235 0.0328776287432
2.3529411764706 0.0267382390774
2.5882352941176 0.0217614011015
2.8235294117647 0.0177670336082
3.0588235294118 0.0145730534383
3.2941176470588 0.0120186962076
3.5294117647059 0.0099707017703
3.7647058823529 0.0083221667876
4.0000000000000 0.0069888019920
"x-label diagonal
"y-label ADMCONSTRAINTS::momx
"Time = 0.0000000000000
-6.9282032302755 0.0000022124605
-6.5206618637887 0.0000022124605
-6.1131204973019 0.0000035530179
-5.7055791308151 0.0000057556996
-5.2980377643283 0.0000094153678
-4.8904963978415 0.0000155432903
-4.4829550313547 0.0000257967540
-4.0754136648679 0.0000425869279
-3.6678722983812 0.0000680192571
-3.2603309318944 0.0000969541671
-2.8527895654076 0.0000855842361
-2.4452481989208 -0.0001621246979
-2.0377068324340 -0.0012308298656
-1.6301654659472 -0.0034326979731
-1.2226240994604 -0.0017598120648
-0.8150827329736 0.0067395097038
-0.4075413664868 0.0048856975011
0.0000000000000 0.0000040272525
0.4075413664868 -0.0041034259676
0.8150827329736 -0.0052048722024
1.2226240994604 0.0015044382227
1.6301654659472 0.0027750763701
2.0377068324340 0.0010031292505
2.4452481989208 0.0001253934825
2.8527895654076 -0.0000810412874
3.2603309318944 -0.0000891352565
3.6678722983812 -0.0000628143755
4.0754136648679 -0.0000396867431
4.4829550313547 -0.0000242991366
4.8904963978415 -0.0000148188532
5.2980377643283 -0.0000091002985
5.7055791308151 -0.0000056513233
6.1131204973019 -0.0000035532094
6.5206618637887 -0.0000022612402
6.9282032302755 -0.0000022612402
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 1.1865142243526
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 -1.1864705986904
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 0.0008672570513
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 0.0110561169075
"x-label x
"y-label ADMCONSTRAINTS::momx (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000001026201
-3.7647058823529 0.0000001026201
-3.5294117647059 0.0000001520070
-3.2941176470588 0.0000002412747
-3.0588235294118 0.0000004097773
-2.8235294117647 0.0000007445347
-2.5882352941176 0.0000014450846
-2.3529411764706 0.0000029669975
-2.1176470588235 0.0000061837981
-1.8823529411765 0.0000110202581
-1.6470588235294 0.0000063445730
-1.4117647058824 0.0000012641061
-1.1764705882353 -0.0000021308519
-0.9411764705882 -0.0000026762591
-0.7058823529412 -0.0000008489494
-0.4705882352941 0.0000008910278
-0.2352941176471 0.0000024247945
0.0000000000000 0.0000040272525
0.2352941176471 0.0000060140108
0.4705882352941 0.0000087391024
0.7058823529412 0.0000125319095
0.9411764705882 0.0000169676543
1.1764705882353 0.0000169463810
1.4117647058824 0.0000019506643
1.6470588235294 0.0000046584931
1.8823529411765 0.0000098453002
2.1176470588235 0.0000063017844
2.3529411764706 0.0000034018165
2.5882352941176 0.0000018325111
2.8235294117647 0.0000010251152
3.0588235294118 0.0000006013385
3.2941176470588 0.0000003702787
3.5294117647059 0.0000002389091
3.7647058823529 0.0000001610779
4.0000000000000 0.0000001610779
"x-label y
"y-label ADMCONSTRAINTS::momx (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0002689617498
-3.7647058823529 -0.0002689617498
-3.5294117647059 -0.0003186440817
-3.2941176470588 -0.0003756652017
-3.0588235294118 -0.0004386352958
-2.8235294117647 -0.0005036182956
-2.5882352941176 -0.0005620519668
-2.3529411764706 -0.0005974459441
-2.1176470588235 -0.0005806138670
-1.8823529411765 -0.0004640505976
-1.6470588235294 -0.0001786907917
-1.4117647058824 0.0003574592029
-1.1764705882353 0.0011989044692
-0.9411764705882 0.0022750082117
-0.7058823529412 0.0032463689981
-0.4705882352941 0.0034629496417
-0.2352941176471 0.0023214190986
0.0000000000000 0.0000040272525
0.2352941176471 -0.0023134812635
0.4705882352941 -0.0034557875724
0.7058823529412 -0.0032409055719
0.9411764705882 -0.0022715185893
1.1764705882353 -0.0011969304830
1.4117647058824 -0.0003563457990
1.6470588235294 0.0001794211711
1.8823529411765 0.0004646401256
2.1176470588235 0.0005811495037
2.3529411764706 0.0005979430740
2.5882352941176 0.0005625037534
2.8235294117647 0.0005040167908
3.0588235294118 0.0004389774408
3.2941176470588 0.0003759527342
3.5294117647059 0.0003188817852
3.7647058823529 0.0002691557548
4.0000000000000 0.0002691557548
"x-label z
"y-label ADMCONSTRAINTS::momx (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000043773923
-3.7647058823529 -0.0000043773923
-3.5294117647059 -0.0000096362375
-3.2941176470588 -0.0000176966920
-3.0588235294118 -0.0000297572681
-2.8235294117647 -0.0000473070682
-2.5882352941176 -0.0000719035998
-2.3529411764706 -0.0001044466418
-2.1176470588235 -0.0001433714467
-1.8823529411765 -0.0001808463085
-1.6470588235294 -0.0001961420782
-1.4117647058824 -0.0001475439221
-1.1764705882353 0.0000277290174
-0.9411764705882 0.0003798210215
-0.7058823529412 0.0008481595106
-0.4705882352941 0.0011478481669
-0.2352941176471 0.0008780901448
0.0000000000000 0.0000040272525
0.2352941176471 -0.0008821675802
0.4705882352941 -0.0011706725177
0.7058823529412 -0.0008741589412
0.9411764705882 -0.0003953140536
1.1764705882353 -0.0000311973445
1.4117647058824 0.0001512269855
1.6470588235294 0.0002021529074
1.8823529411765 0.0001864871674
2.1176470588235 0.0001476864039
2.3529411764706 0.0001073847324
2.5882352941176 0.0000737407038
2.8235294117647 0.0000483652546
3.0588235294118 0.0000303035508
3.2941176470588 0.0000179240611
3.5294117647059 0.0000096742227
3.7647058823529 0.0000043089681
4.0000000000000 0.0000043089681
"x-label diagonal
"y-label ADMCONSTRAINTS::momy
"Time = 0.0000000000000
-6.9282032302755 -0.0000361675392
-6.5206618637887 -0.0000361675392
-6.1131204973019 -0.0000487571633
-5.7055791308151 -0.0000666321894
-5.2980377643283 -0.0000923691969
-4.8904963978415 -0.0001299250744
-4.4829550313547 -0.0001853703707
-4.0754136648679 -0.0002679013834
-3.6678722983812 -0.0003911508599
-3.2603309318944 -0.0005756603159
-2.8527895654076 -0.0008624114329
-2.4452481989208 -0.0014080569601
-2.0377068324340 -0.0029899876763
-1.6301654659472 -0.0080934605112
-1.2226240994604 -0.0150165145186
-0.8150827329736 -0.0042655191100
-0.4075413664868 0.0077771279152
0.0000000000000 0.0021275824513
0.4075413664868 -0.0018630237269
0.8150827329736 0.0037524114618
1.2226240994604 0.0063987093802
1.6301654659472 0.0026780092576
2.0377068324340 0.0007965049660
2.4452481989208 0.0004295278688
2.8527895654076 0.0003517462315
3.2603309318944 0.0002872495678
3.6678722983812 0.0002220279615
4.0754136648679 0.0001660976424
4.4829550313547 0.0001226047260
4.8904963978415 0.0000903147373
5.2980377643283 0.0000668006123
5.7055791308151 0.0000497679457
6.1131204973019 0.0000374051167
6.5206618637887 0.0000283786965
6.9282032302755 0.0000283786965
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 1.8261709268424
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 -1.0874740052552
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 0.0012801293657
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 0.0160472401401
"x-label x
"y-label ADMCONSTRAINTS::momy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0006588841574
-3.7647058823529 -0.0006588841574
-3.5294117647059 -0.0012749608997
-3.2941176470588 -0.0025260630201
-3.0588235294118 -0.0052096120961
-2.8235294117647 -0.0113988752967
-2.5882352941176 -0.0271258235846
-2.3529411764706 -0.0727849335632
-2.1176470588235 -0.2342405767084
-1.8823529411765 -1.0874740052552
-1.6470588235294 -0.7959607874131
-1.4117647058824 0.5737827250944
-1.1764705882353 1.8261709268424
-0.9411764705882 0.3076401743915
-0.7058823529412 0.0875903140593
-0.4705882352941 0.0299306120036
-0.2352941176471 0.0105500094833
0.0000000000000 0.0021275824513
0.2352941176471 -0.0037562812611
0.4705882352941 -0.0118103978344
0.7058823529412 -0.0292835837802
0.9411764705882 -0.0776021140996
1.1764705882353 -0.2764261074908
1.4117647058824 -0.0526461224728
1.6470588235294 0.0874239174900
1.8823529411765 0.1653588516174
2.1176470588235 0.0474933520701
2.3529411764706 0.0163030547367
2.5882352941176 0.0060155811305
2.8235294117647 0.0022545738980
3.0588235294118 0.0007856559264
3.2941176470588 0.0001930617510
3.5294117647059 -0.0000436652757
3.7647058823529 -0.0001303802260
4.0000000000000 -0.0001303802260
"x-label y
"y-label ADMCONSTRAINTS::momy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000270234730
-3.7647058823529 0.0000270234730
-3.5294117647059 0.0000317134356
-3.2941176470588 0.0000364443176
-3.0588235294118 0.0000403210726
-2.8235294117647 0.0000415697204
-2.5882352941176 0.0000369228869
-2.3529411764706 0.0000207629575
-2.1176470588235 -0.0000157590002
-1.8823529411765 -0.0000846757592
-1.6470588235294 -0.0001975136581
-1.4117647058824 -0.0003521704359
-1.1764705882353 -0.0005028786176
-0.9411764705882 -0.0005181196385
-0.7058823529412 -0.0001821992772
-0.4705882352941 0.0006358832788
-0.2352941176471 0.0016475432277
0.0000000000000 0.0021275824513
0.2352941176471 0.0016464436082
0.4705882352941 0.0006344529240
0.7058823529412 -0.0001834309733
0.9411764705882 -0.0005191085706
1.1764705882353 -0.0005036989328
1.4117647058824 -0.0003528425722
1.6470588235294 -0.0001980347641
1.8823529411765 -0.0000850565977
2.1176470588235 -0.0000160252265
2.3529411764706 0.0000205816646
2.5882352941176 0.0000368005800
2.8235294117647 0.0000414867774
3.0588235294118 0.0000402638338
3.2941176470588 0.0000364037174
3.5294117647059 0.0000316836173
3.7647058823529 0.0000270007016
4.0000000000000 0.0000270007016
"x-label z
"y-label ADMCONSTRAINTS::momy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000385871922
-3.7647058823529 0.0000385871922
-3.5294117647059 0.0000422798296
-3.2941176470588 0.0000448782613
-3.0588235294118 0.0000451738522
-2.8235294117647 0.0000413397697
-2.5882352941176 0.0000308796846
-2.3529411764706 0.0000109914121
-2.1176470588235 -0.0000199190132
-1.8823529411765 -0.0000580674086
-1.6470588235294 -0.0000850737584
-1.4117647058824 -0.0000519546444
-1.1764705882353 0.0001376372972
-0.9411764705882 0.0006142542455
-0.7058823529412 0.0014342730647
-0.4705882352941 0.0023561676427
-0.2352941176471 0.0027554853474
0.0000000000000 0.0021275824513
0.2352941176471 0.0008137587286
0.4705882352941 -0.0002762558533
0.7058823529412 -0.0006694720245
0.9411764705882 -0.0005591288028
1.1764705882353 -0.0003050870707
1.4117647058824 -0.0001049258534
1.6470588235294 0.0000022414550
1.8823529411765 0.0000416037825
2.1176470588235 0.0000452478655
2.3529411764706 0.0000347916232
2.5882352941176 0.0000214098645
2.8235294117647 0.0000097219761
3.0588235294118 0.0000010220678
3.2941176470588 -0.0000048108202
3.5294117647059 -0.0000083598823
3.7647058823529 -0.0000102580428
4.0000000000000 -0.0000102580428
"x-label diagonal
"y-label ADMCONSTRAINTS::momz
"Time = 0.0000000000000
-6.9282032302755 -0.0000109988368
-6.5206618637887 -0.0000109988368
-6.1131204973019 -0.0000142260886
-5.7055791308151 -0.0000184566833
-5.2980377643283 -0.0000239124212
-4.8904963978415 -0.0000306705778
-4.4829550313547 -0.0000382436726
-4.0754136648679 -0.0000443869744
-3.6678722983812 -0.0000417609143
-3.2603309318944 -0.0000086087480
-2.8527895654076 0.0001167020090
-2.4452481989208 0.0004968771860
-2.0377068324340 0.0014616510305
-1.6301654659472 0.0029797481736
-1.2226240994604 0.0020237798884
-0.8150827329736 -0.0031451339382
-0.4075413664868 -0.0029513840325
0.0000000000000 -0.0015408918237
0.4075413664868 -0.0016079987899
0.8150827329736 0.0023143476711
1.2226240994604 0.0037113339972
1.6301654659472 0.0013407746240
2.0377068324340 0.0004679176726
2.4452481989208 0.0003780642698
2.8527895654076 0.0003305117723
3.2603309318944 0.0002567319909
3.6678722983812 0.0001863462224
4.0754136648679 0.0001316651421
4.4829550313547 0.0000925248019
4.8904963978415 0.0000653511473
5.2980377643283 0.0000466231372
5.7055791308151 0.0000336683883
6.1131204973019 0.0000246270977
6.5206618637887 0.0000182455121
6.9282032302755 0.0000182455121
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 0.4227708491450
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 -0.4227758618005
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 0.0008121046615
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 0.0079372349096
"x-label x
"y-label ADMCONSTRAINTS::momz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000008763990
-3.7647058823529 -0.0000008763990
-3.5294117647059 0.0000001316881
-3.2941176470588 0.0000018772906
-3.0588235294118 0.0000047297222
-2.8235294117647 0.0000091672731
-2.5882352941176 0.0000156242579
-2.3529411764706 0.0000237877677
-2.1176470588235 0.0000301030233
-1.8823529411765 0.0000207757151
-1.6470588235294 -0.0000130334315
-1.4117647058824 0.0000045380337
-1.1764705882353 0.0000186906573
-0.9411764705882 -0.0000091997841
-0.7058823529412 -0.0000833700508
-0.4705882352941 -0.0002609024188
-0.2352941176471 -0.0006570730130
0.0000000000000 -0.0015408918237
0.2352941176471 -0.0035897324715
0.4705882352941 -0.0086634462414
0.7058823529412 -0.0224596092322
0.9411764705882 -0.0651945866162
1.1764705882353 -0.2573001820544
1.4117647058824 -0.0485133518224
1.6470588235294 0.0878036280607
1.8823529411765 0.1846548650052
2.1176470588235 0.0605782619551
2.3529411764706 0.0246311476824
2.5882352941176 0.0113550718401
2.8235294117647 0.0057613634230
3.0588235294118 0.0031523783761
3.2941176470588 0.0018327414547
3.5294117647059 0.0011198242225
3.7647058823529 0.0007131635695
4.0000000000000 0.0007131635695
"x-label y
"y-label ADMCONSTRAINTS::momz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000397037213
-3.7647058823529 -0.0000397037213
-3.5294117647059 -0.0000440182788
-3.2941176470588 -0.0000474972818
-3.0588235294118 -0.0000490440378
-2.8235294117647 -0.0000469822982
-2.5882352941176 -0.0000390035577
-2.3529411764706 -0.0000225032169
-2.1176470588235 0.0000040004035
-1.8823529411765 0.0000369504750
-1.6470588235294 0.0000591346764
-1.4117647058824 0.0000249697499
-1.1764705882353 -0.0001538181359
-0.9411764705882 -0.0005916313917
-0.7058823529412 -0.0013202943147
-0.4705882352941 -0.0020814125313
-0.2352941176471 -0.0022855758578
0.0000000000000 -0.0015408918237
0.2352941176471 -0.0002882270247
0.4705882352941 0.0006065356273
0.7058823529412 0.0008040663517
0.9411764705882 0.0005741143762
1.1764705882353 0.0002716241905
1.4117647058824 0.0000621795839
1.6470588235294 -0.0000394177134
1.8823529411765 -0.0000700951390
2.1176470588235 -0.0000660474427
2.3529411764706 -0.0000497433266
2.5882352941176 -0.0000321543577
2.8235294117647 -0.0000174903922
3.0588235294118 -0.0000066849327
3.2941176470588 0.0000006490873
3.5294117647059 0.0000052798401
3.7647058823529 0.0000079667431
4.0000000000000 0.0000079667431
"x-label z
"y-label ADMCONSTRAINTS::momz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000294714726
-3.7647058823529 -0.0000294714726
-3.5294117647059 -0.0000353621615
-3.2941176470588 -0.0000417542452
-3.0588235294118 -0.0000479409902
-2.8235294117647 -0.0000524016172
-2.5882352941176 -0.0000521906555
-2.3529411764706 -0.0000420500657
-2.1176470588235 -0.0000133985454
-1.8823529411765 0.0000460006319
-1.6470588235294 0.0001492949193
-1.4117647058824 0.0002994610395
-1.1764705882353 0.0004627769994
-0.9411764705882 0.0005300110691
-0.7058823529412 0.0003127203714
-0.4705882352941 -0.0003168774177
-0.2352941176471 -0.0011362245047
0.0000000000000 -0.0015408918237
0.2352941176471 -0.0011558773892
0.4705882352941 -0.0003330075319
0.7058823529412 0.0003133853351
0.9411764705882 0.0005418786388
1.1764705882353 0.0004756193745
1.4117647058824 0.0003079312685
1.6470588235294 0.0001528768721
1.8823529411765 0.0000461736187
2.1176470588235 -0.0000150209092
2.3529411764706 -0.0000443416840
2.5882352941176 -0.0000545237329
2.8235294117647 -0.0000544895757
3.0588235294118 -0.0000496906442
3.2941176470588 -0.0000431672064
3.5294117647059 -0.0000364787593
3.7647058823529 -0.0000303422611
4.0000000000000 -0.0000303422611
"x-label diagonal
"y-label STATICCONFORMAL::psi
"Time = 0.0000000000000
-6.9282032302755 1.1759038459241
-6.5206618637887 1.1865857110707
-6.1131204973019 1.1986420565675
-5.7055791308151 1.2123533514264
-5.2980377643283 1.2280801535320
-4.8904963978415 1.2462925779744
-4.4829550313547 1.2676125877610
-4.0754136648679 1.2928746682409
-3.6678722983812 1.3232110478537
-3.2603309318944 1.3601625181445
-2.8527895654076 1.4057870172952
-2.4452481989208 1.4626230700851
-2.0377068324340 1.5329802875769
-1.6301654659472 1.6161015722121
-1.2226240994604 1.7017287492827
-0.8150827329736 1.7684839934587
-0.4075413664868 1.8068060912988
0.0000000000000 1.8333333333333
0.4075413664868 1.8564843502623
0.8150827329736 1.8522356557149
1.2226240994604 1.7944621074585
1.6301654659472 1.6993695693269
2.0377068324340 1.6011492613574
2.4452481989208 1.5169065844096
2.8527895654076 1.4490504127510
3.2603309318944 1.3950394308980
3.6678722983812 1.3517360814305
4.0754136648679 1.3165452458155
4.4829550313547 1.2875216519530
4.8904963978415 1.2632432782615
5.2980377643283 1.2426701247217
5.7055791308151 1.2250337444779
6.1131204973019 1.2097584327813
6.5206618637887 1.1964064791874
6.9282032302755 1.1846402375706
"x-label time
"y-label STATICCONFORMAL::psi
"psi v time
0.0000000000000 9.6717171717172
"x-label time
"y-label STATICCONFORMAL::psi
"psi v time
0.0000000000000 1.1759038459241
"x-label time
"y-label STATICCONFORMAL::psi
"psi v time
0.0000000000000 1.3506315967167
"x-label time
"y-label STATICCONFORMAL::psi
"psi v time
0.0000000000000 1.3609258434852
"x-label x
"y-label STATICCONFORMAL::psi (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.3363636363636
-3.7647058823529 1.3632373213379
-3.5294117647059 1.3954996186117
-3.2941176470588 1.4351302423816
-3.0588235294118 1.4852708460134
-2.8235294117647 1.5512471655329
-2.5882352941176 1.6429126968695
-2.3529411764706 1.7808633851013
-2.1176470588235 2.0168408826945
-1.8823529411765 2.5294314381271
-1.6470588235294 4.6383177570093
-1.4117647058824 6.9242424242424
-1.1764705882353 2.8256743256743
-0.9411764705882 2.2019657577679
-0.7058823529412 1.9696296296296
-0.4705882352941 1.8663113006397
-0.2352941176471 1.8275522270398
0.0000000000000 1.8333333333333
0.2352941176471 1.8811588490343
0.4705882352941 1.9823027718550
0.7058823529412 2.1711111111111
0.9411764705882 2.5469245402663
1.1764705882353 3.5049950049950
1.4117647058824 9.6717171717172
1.6470588235294 6.2588785046729
1.8823529411765 3.1093645484950
2.1176470588235 2.3524970963995
2.3529411764706 2.0090813371940
2.5882352941176 1.8114913474626
2.8235294117647 1.6823129251701
3.0588235294118 1.5908094948265
3.2941176470588 1.5223272654129
3.5294117647059 1.4689804220697
3.7647058823529 1.4261408982079
4.0000000000000 1.3909090909091
"x-label y
"y-label STATICCONFORMAL::psi (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.2926028679903
-3.7647058823529 1.3084491865950
-3.5294117647059 1.3259505336207
-3.2941176470588 1.3453458895468
-3.0588235294118 1.3669114123290
-2.8235294117647 1.3909626883015
-2.5882352941176 1.4178531520112
-2.3529411764706 1.4479644489680
-2.1176470588235 1.4816811173169
-1.8823529411765 1.5193364208804
-1.6470588235294 1.5611080573723
-1.4117647058824 1.6068333272440
-1.1764705882353 1.6557111811299
-0.9411764705882 1.7058865787568
-0.7058823529412 1.7540155851675
-0.4705882352941 1.7951220729898
-0.2352941176471 1.8232662719902
0.0000000000000 1.8333333333333
0.2352941176471 1.8232662719902
0.4705882352941 1.7951220729898
0.7058823529412 1.7540155851675
0.9411764705882 1.7058865787568
1.1764705882353 1.6557111811299
1.4117647058824 1.6068333272440
1.6470588235294 1.5611080573723
1.8823529411765 1.5193364208804
2.1176470588235 1.4816811173169
2.3529411764706 1.4479644489680
2.5882352941176 1.4178531520112
2.8235294117647 1.3909626883015
3.0588235294118 1.3669114123290
3.2941176470588 1.3453458895468
3.5294117647059 1.3259505336207
3.7647058823529 1.3084491865950
4.0000000000000 1.2926028679903
"x-label z
"y-label STATICCONFORMAL::psi (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.2926028679903
-3.7647058823529 1.3084491865950
-3.5294117647059 1.3259505336207
-3.2941176470588 1.3453458895468
-3.0588235294118 1.3669114123290
-2.8235294117647 1.3909626883015
-2.5882352941176 1.4178531520112
-2.3529411764706 1.4479644489680
-2.1176470588235 1.4816811173169
-1.8823529411765 1.5193364208804
-1.6470588235294 1.5611080573723
-1.4117647058824 1.6068333272440
-1.1764705882353 1.6557111811299
-0.9411764705882 1.7058865787568
-0.7058823529412 1.7540155851675
-0.4705882352941 1.7951220729898
-0.2352941176471 1.8232662719902
0.0000000000000 1.8333333333333
0.2352941176471 1.8232662719902
0.4705882352941 1.7951220729898
0.7058823529412 1.7540155851675
0.9411764705882 1.7058865787568
1.1764705882353 1.6557111811299
1.4117647058824 1.6068333272440
1.6470588235294 1.5611080573723
1.8823529411765 1.5193364208804
2.1176470588235 1.4816811173169
2.3529411764706 1.4479644489680
2.5882352941176 1.4178531520112
2.8235294117647 1.3909626883015
3.0588235294118 1.3669114123290
3.2941176470588 1.3453458895468
3.5294117647059 1.3259505336207
3.7647058823529 1.3084491865950
4.0000000000000 1.2926028679903
# $Header$
ActiveThorns = "Boundary CartGrid3D Time CoordBase SymBase LocalReduce"
ActiveThorns = "PUGH PUGHReduce PUGHSlab"
ActiveThorns = "IOASCII IOBasic IOUtil LocalReduce"
ActiveThorns = "TmunuBase ADMBase StaticConformal"
ActiveThorns = "ADMConstraints ADMCoupling ADMMacros SpaceMask"
ActiveThorns = "BAM_Elliptic EllBase"
Cactus::cctk_itlast = 0
Time::dtfac = 0.25
Grid::type = "byrange"
Grid::domain = "full"
Grid::xmin = -4
Grid::xmax = 4
Grid::ymin = -4
Grid::ymax = 4
Grid::zmin = -4
Grid::zmax = 4
Driver::global_nx = 35
Driver::global_ny = 35
Driver::global_nz = 35
# BAM requires this specific processor topology setup algorithm in PUGH
PUGH::processor_topology = "automatic_old"
ADMBase::initial_data = "BrBr"
BAM_Elliptic::redblack_decouple = "yes"
BAM_Elliptic::bam_persist = "yes"
BAM_Elliptic::brbr_tolres2 = 1e-6
BAM_Elliptic::brbr_maxcycles = 100
BAM_Elliptic::brbr_mincycles = 3
BAM_Elliptic::bhm1 = 1.5
BAM_Elliptic::bhx1 = 1.5
BAM_Elliptic::bhpy1 = 2.0
BAM_Elliptic::bhsy1 = 0.5
BAM_Elliptic::bhsz1 = -0.5
BAM_Elliptic::bhm2 = 1.0
BAM_Elliptic::bhx2 = -1.5
BAM_Elliptic::bhpy2 = -2.0
BAM_Elliptic::bhsx2 = -1.0
BAM_Elliptic::bhsz2 = -1.0
BAM_Elliptic::bam_bound = "bamrobin"
ADMBase::metric_type = "static conformal"
StaticConformal::conformal_storage = "factor+derivs+2nd derivs"
ADMBase::lapse_evolution_method = "static"
ADMBase::initial_lapse = "one"
IO::out_dir = $parfile
IO::out_fileinfo = "axis labels"
IOBasic::outScalar_every = 1
IOBasic::outScalar_vars = "staticconformal::psi admbase::metric admbase::curv admconstraints::hamiltonian admconstraints::momentum"
IOASCII::out1D_every = 1
IOASCII::out1D_vars = "staticconformal::psi admbase::metric admbase::curv admconstraints::hamiltonian admconstraints::momentum"
# 1D ASCII output created by CarpetIOASCII
#
# alp d (alp)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0.971686764674217
0 0 0 0 0 512 512 512 0 -57 3 3 0.968965085984356
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0.966716643085138
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0.965518097225981
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0.965768223997869
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0.967378134997027
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0.969846165096544
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0.972615667037917
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0.975311191214066
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0.977755108581314
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0.979896161202685
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0.981744401292436
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0.983333062630193
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0.98470033984553
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0.985881943263156
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0.986908702731988
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0.987806304047424
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0.988595813060972
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0.989294409117129
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0.989916099066487
0 0 0 0 0 10240 10240 10240 0 0 60 60 0.990472335219736
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::alp (alp)
# 1:iteration 2:time 3:data
0 0 0.993058598194887
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::alp (alp)
# 1:iteration 2:time 3:data
0 0 0.835437180480016
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::alp (alp)
# 1:iteration 2:time 3:data
0 0 0.984095468461247
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::alp (alp)
# 1:iteration 2:time 3:data
0 0 0.984138073487657
# 1D ASCII output created by CarpetIOASCII
#
# alp x (alp)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0.971686764674217
0 0 0 0 0 512 0 0 0 -57 0 0 0.968590255831246
0 0 0 0 0 1024 0 0 0 -54 0 0 0.964733270245097
0 0 0 0 0 1536 0 0 0 -51 0 0 0.959796440855496
0 0 0 0 0 2048 0 0 0 -48 0 0 0.95325246576955
0 0 0 0 0 2560 0 0 0 -45 0 0 0.944163978555737
0 0 0 0 0 3072 0 0 0 -42 0 0 0.930688731379778
0 0 0 0 0 3584 0 0 0 -39 0 0 0.908827789211565
0 0 0 0 0 4096 0 0 0 -36 0 0 0.877571738746699
0 0 0 0 0 4608 0 0 0 -33 0 0 0.847932835979458
0 0 0 0 0 5120 0 0 0 -30 0 0 0.835437180480016
0 0 0 0 0 5632 0 0 0 -27 0 0 0.847932835979458
0 0 0 0 0 6144 0 0 0 -24 0 0 0.877571738746699
0 0 0 0 0 6656 0 0 0 -21 0 0 0.908827789211565
0 0 0 0 0 7168 0 0 0 -18 0 0 0.930688731379778
0 0 0 0 0 7680 0 0 0 -15 0 0 0.944163978555737
0 0 0 0 0 8192 0 0 0 -12 0 0 0.95325246576955
0 0 0 0 0 8704 0 0 0 -9 0 0 0.959796440855496
0 0 0 0 0 9216 0 0 0 -6 0 0 0.964733270245097
0 0 0 0 0 9728 0 0 0 -3 0 0 0.968590255831246
0 0 0 0 0 10240 0 0 0 0 0 0 0.971686764674217
0 0 0 0 0 10752 0 0 0 3 0 0 0.974227526881276
0 0 0 0 0 11264 0 0 0 6 0 0 0.976349836174037
0 0 0 0 0 11776 0 0 0 9 0 0 0.978149203586999
0 0 0 0 0 12288 0 0 0 12 0 0 0.979694128349802
0 0 0 0 0 12800 0 0 0 15 0 0 0.981035016442416
0 0 0 0 0 13312 0 0 0 18 0 0 0.982209784441468
0 0 0 0 0 13824 0 0 0 21 0 0 0.983247502105247
0 0 0 0 0 14336 0 0 0 24 0 0 0.984170830373543
0 0 0 0 0 14848 0 0 0 27 0 0 0.984997695247917
0 0 0 0 0 15360 0 0 0 30 0 0 0.985742463087677
0 0 0 0 0 15872 0 0 0 33 0 0 0.986416782387632
0 0 0 0 0 16384 0 0 0 36 0 0 0.987030197468873
0 0 0 0 0 16896 0 0 0 39 0 0 0.987590603069623
0 0 0 0 0 17408 0 0 0 42 0 0 0.988104585964339
0 0 0 0 0 17920 0 0 0 45 0 0 0.988577685062457
0 0 0 0 0 18432 0 0 0 48 0 0 0.989014591814054
0 0 0 0 0 18944 0 0 0 51 0 0 0.989419306316515
0 0 0 0 0 19456 0 0 0 54 0 0 0.989795260140451
0 0 0 0 0 19968 0 0 0 57 0 0 0.990145413868575
0 0 0 0 0 20480 0 0 0 60 0 0 0.990472335219736
# 1D ASCII output created by CarpetIOASCII
#
# alp y (alp)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0.971686764674217
0 0 0 0 0 10240 512 0 0 0 3 0 0.971825298416918
0 0 0 0 0 10240 1024 0 0 0 6 0 0.972228953980846
0 0 0 0 0 10240 1536 0 0 0 9 0 0.972864638166075
0 0 0 0 0 10240 2048 0 0 0 12 0 0.973685176457097
0 0 0 0 0 10240 2560 0 0 0 15 0 0.974637967535109
0 0 0 0 0 10240 3072 0 0 0 18 0 0.975672522308712
0 0 0 0 0 10240 3584 0 0 0 21 0 0.976745383783114
0 0 0 0 0 10240 4096 0 0 0 24 0 0.977822278878331
0 0 0 0 0 10240 4608 0 0 0 27 0 0.978878179395313
0 0 0 0 0 10240 5120 0 0 0 30 0 0.979896161202685
0 0 0 0 0 10240 5632 0 0 0 33 0 0.980865791910691
0 0 0 0 0 10240 6144 0 0 0 36 0 0.981781507596056
0 0 0 0 0 10240 6656 0 0 0 39 0 0.982641205359921
0 0 0 0 0 10240 7168 0 0 0 42 0 0.983445124788971
0 0 0 0 0 10240 7680 0 0 0 45 0 0.984195009109493
0 0 0 0 0 10240 8192 0 0 0 48 0 0.984893502313972
0 0 0 0 0 10240 8704 0 0 0 51 0 0.985543730584329
0 0 0 0 0 10240 9216 0 0 0 54 0 0.986149020718892
0 0 0 0 0 10240 9728 0 0 0 57 0 0.986712716953883
0 0 0 0 0 10240 10240 0 0 0 60 0 0.987238066625416
# 1D ASCII output created by CarpetIOASCII
#
# alp z (alp)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0.971686764674217
0 0 0 0 0 10240 0 512 0 0 0 3 0.971825298416918
0 0 0 0 0 10240 0 1024 0 0 0 6 0.972228953980846
0 0 0 0 0 10240 0 1536 0 0 0 9 0.972864638166075
0 0 0 0 0 10240 0 2048 0 0 0 12 0.973685176457097
0 0 0 0 0 10240 0 2560 0 0 0 15 0.974637967535109
0 0 0 0 0 10240 0 3072 0 0 0 18 0.975672522308712
0 0 0 0 0 10240 0 3584 0 0 0 21 0.976745383783114
0 0 0 0 0 10240 0 4096 0 0 0 24 0.977822278878331
0 0 0 0 0 10240 0 4608 0 0 0 27 0.978878179395313
0 0 0 0 0 10240 0 5120 0 0 0 30 0.979896161202685
0 0 0 0 0 10240 0 5632 0 0 0 33 0.980865791910691
0 0 0 0 0 10240 0 6144 0 0 0 36 0.981781507596056
0 0 0 0 0 10240 0 6656 0 0 0 39 0.982641205359921
0 0 0 0 0 10240 0 7168 0 0 0 42 0.983445124788971
0 0 0 0 0 10240 0 7680 0 0 0 45 0.984195009109493
0 0 0 0 0 10240 0 8192 0 0 0 48 0.984893502313972
0 0 0 0 0 10240 0 8704 0 0 0 51 0.985543730584329
0 0 0 0 0 10240 0 9216 0 0 0 54 0.986149020718892
0 0 0 0 0 10240 0 9728 0 0 0 57 0.986712716953883
0 0 0 0 0 10240 0 10240 0 0 0 60 0.987238066625416
# 1D ASCII output created by CarpetIOASCII
#
# betax d (betax)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betax (betax)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betax (betax)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betax (betax)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betax (betax)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betax x (betax)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betax y (betax)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betax z (betax)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# betay d (betay)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betay (betay)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betay (betay)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betay (betay)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betay (betay)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betay x (betay)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betay y (betay)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betay z (betay)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# betaz d (betaz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betaz (betaz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betaz (betaz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betaz (betaz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betaz (betaz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betaz x (betaz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betaz y (betaz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betaz z (betaz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# eps d (eps)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::eps (eps)
# 1:iteration 2:time 3:data
0 0 0.0395816753545219
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::eps (eps)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::eps (eps)
# 1:iteration 2:time 3:data
0 0 2.74375408312622e-05
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::eps (eps)
# 1:iteration 2:time 3:data
0 0 0.000711156033793938
# 1D ASCII output created by CarpetIOASCII
#
# eps x (eps)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0.00441183710365711
0 0 0 0 0 4096 0 0 0 -36 0 0 0.0186857612565818
0 0 0 0 0 4608 0 0 0 -33 0 0 0.0333565612244157
0 0 0 0 0 5120 0 0 0 -30 0 0 0.0395816753545219
0 0 0 0 0 5632 0 0 0 -27 0 0 0.0324109175393343
0 0 0 0 0 6144 0 0 0 -24 0 0 0.0177128785693346
0 0 0 0 0 6656 0 0 0 -21 0 0 0.00403949161461798
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# eps y (eps)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# eps z (eps)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# gxx d (gxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.1734918979707
0 0 0 0 0 512 512 512 0 -57 3 3 1.18353358386562
0 0 0 0 0 1024 1024 1024 0 -54 6 6 1.19266165583264
0 0 0 0 0 1536 1536 1536 0 -51 9 9 1.19938032450798
0 0 0 0 0 2048 2048 2048 0 -48 12 12 1.20263675226259
0 0 0 0 0 2560 2560 2560 0 -45 15 15 1.20260062368105
0 0 0 0 0 3072 3072 3072 0 -42 18 18 1.2002990252603
0 0 0 0 0 3584 3584 3584 0 -39 21 21 1.19682698147513
0 0 0 0 0 4096 4096 4096 0 -36 24 24 1.19289778760987
0 0 0 0 0 4608 4608 4608 0 -33 27 27 1.18882160996483
0 0 0 0 0 5120 5120 5120 0 -30 30 30 1.18466061733399
0 0 0 0 0 5632 5632 5632 0 -27 33 33 1.18037351207249
0 0 0 0 0 6144 6144 6144 0 -24 36 36 1.17590331934878
0 0 0 0 0 6656 6656 6656 0 -21 39 39 1.17121669572677
0 0 0 0 0 7168 7168 7168 0 -18 42 42 1.16631357394207
0 0 0 0 0 7680 7680 7680 0 -15 45 45 1.16122291348897
0 0 0 0 0 8192 8192 8192 0 -12 48 48 1.15599366089986
0 0 0 0 0 8704 8704 8704 0 -9 51 51 1.15068514670822
0 0 0 0 0 9216 9216 9216 0 -6 54 54 1.14535884368671
0 0 0 0 0 9728 9728 9728 0 -3 57 57 1.1400723241299
0 0 0 0 0 10240 10240 10240 0 0 60 60 1.13487554025373
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxx (gxx)
# 1:iteration 2:time 3:data
0 0 686.377333038804
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxx (gxx)
# 1:iteration 2:time 3:data
0 0 1.10197208653032
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxx (gxx)
# 1:iteration 2:time 3:data
0 0 1.25144747615579
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxx (gxx)
# 1:iteration 2:time 3:data
0 0 2.98987086486607
# 1D ASCII output created by CarpetIOASCII
#
# gxx x (gxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.1734918979707
0 0 0 0 0 512 0 0 0 -57 0 0 1.18448800799278
0 0 0 0 0 1024 0 0 0 -54 0 0 1.19767278323484
0 0 0 0 0 1536 0 0 0 -51 0 0 1.2136556971554
0 0 0 0 0 2048 0 0 0 -48 0 0 1.2333378380441
0 0 0 0 0 2560 0 0 0 -45 0 0 1.25885526505363
0 0 0 0 0 3072 0 0 0 -42 0 0 1.29603373866772
0 0 0 0 0 3584 0 0 0 -39 0 0 1.35685684553245
0 0 0 0 0 4096 0 0 0 -36 0 0 1.44929830196765
0 0 0 0 0 4608 0 0 0 -33 0 0 1.54073221840566
0 0 0 0 0 5120 0 0 0 -30 0 0 1.58753151902271
0 0 0 0 0 5632 0 0 0 -27 0 0 1.56376303856355
0 0 0 0 0 6144 0 0 0 -24 0 0 1.48927908796317
0 0 0 0 0 6656 0 0 0 -21 0 0 1.4182765509982
0 0 0 0 0 7168 0 0 0 -18 0 0 1.37945123516311
0 0 0 0 0 7680 0 0 0 -15 0 0 1.36562225267368
0 0 0 0 0 8192 0 0 0 -12 0 0 1.36602078998664
0 0 0 0 0 8704 0 0 0 -9 0 0 1.37463727625676
0 0 0 0 0 9216 0 0 0 -6 0 0 1.38979650666294
0 0 0 0 0 9728 0 0 0 -3 0 0 1.41228149352765
0 0 0 0 0 10240 0 0 0 0 0 0 1.44396569857354
0 0 0 0 0 10752 0 0 0 3 0 0 1.48733352266753
0 0 0 0 0 11264 0 0 0 6 0 0 1.5459111605823
0 0 0 0 0 11776 0 0 0 9 0 0 1.62573229696319
0 0 0 0 0 12288 0 0 0 12 0 0 1.73844441543411
0 0 0 0 0 12800 0 0 0 15 0 0 1.90812430557792
0 0 0 0 0 13312 0 0 0 18 0 0 2.18934466998244
0 0 0 0 0 13824 0 0 0 21 0 0 2.73067498195917
0 0 0 0 0 14336 0 0 0 24 0 0 4.11141289593952
0 0 0 0 0 14848 0 0 0 27 0 0 11.4664118368896
0 0 0 0 0 15360 0 0 0 30 0 0 686.377333038804
0 0 0 0 0 15872 0 0 0 33 0 0 11.4516134742636
0 0 0 0 0 16384 0 0 0 36 0 0 4.09570278988254
0 0 0 0 0 16896 0 0 0 39 0 0 2.71344248045287
0 0 0 0 0 17408 0 0 0 42 0 0 2.17046177372236
0 0 0 0 0 17920 0 0 0 45 0 0 1.88603020602571
0 0 0 0 0 18432 0 0 0 48 0 0 1.71226534819883
0 0 0 0 0 18944 0 0 0 51 0 0 1.59546750087221
0 0 0 0 0 19456 0 0 0 54 0 0 1.51168977862773
0 0 0 0 0 19968 0 0 0 57 0 0 1.44870580165417
0 0 0 0 0 20480 0 0 0 60 0 0 1.3996424084202
# 1D ASCII output created by CarpetIOASCII
#
# gxx y (gxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44396569857354
0 0 0 0 0 10240 512 0 0 0 3 0 1.44145856353721
0 0 0 0 0 10240 1024 0 0 0 6 0 1.43423544386466
0 0 0 0 0 10240 1536 0 0 0 9 0 1.42295258969466
0 0 0 0 0 10240 2048 0 0 0 12 0 1.40853276496764
0 0 0 0 0 10240 2560 0 0 0 15 0 1.39188387885619
0 0 0 0 0 10240 3072 0 0 0 18 0 1.37385886350972
0 0 0 0 0 10240 3584 0 0 0 21 0 1.35527270101446
0 0 0 0 0 10240 4096 0 0 0 24 0 1.33679139358296
0 0 0 0 0 10240 4608 0 0 0 27 0 1.31887264450081
0 0 0 0 0 10240 5120 0 0 0 30 0 1.3017921762318
0 0 0 0 0 10240 5632 0 0 0 33 0 1.28569662142782
0 0 0 0 0 10240 6144 0 0 0 36 0 1.2706473289087
0 0 0 0 0 10240 6656 0 0 0 39 0 1.25665010251725
0 0 0 0 0 10240 7168 0 0 0 42 0 1.24367523893592
0 0 0 0 0 10240 7680 0 0 0 45 0 1.23167154331119
0 0 0 0 0 10240 8192 0 0 0 48 0 1.22057619871408
0 0 0 0 0 10240 8704 0 0 0 51 0 1.21032152845121
0 0 0 0 0 10240 9216 0 0 0 54 0 1.20083940253314
0 0 0 0 0 10240 9728 0 0 0 57 0 1.19206394122313
0 0 0 0 0 10240 10240 0 0 0 60 0 1.18393304322663
# 1D ASCII output created by CarpetIOASCII
#
# gxx z (gxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44396569857354
0 0 0 0 0 10240 0 512 0 0 0 3 1.44145856353721
0 0 0 0 0 10240 0 1024 0 0 0 6 1.43423544386466
0 0 0 0 0 10240 0 1536 0 0 0 9 1.42295258969466
0 0 0 0 0 10240 0 2048 0 0 0 12 1.40853276496764
0 0 0 0 0 10240 0 2560 0 0 0 15 1.39188387885619
0 0 0 0 0 10240 0 3072 0 0 0 18 1.37385886350972
0 0 0 0 0 10240 0 3584 0 0 0 21 1.35527270101446
0 0 0 0 0 10240 0 4096 0 0 0 24 1.33679139358296
0 0 0 0 0 10240 0 4608 0 0 0 27 1.31887264450081
0 0 0 0 0 10240 0 5120 0 0 0 30 1.3017921762318
0 0 0 0 0 10240 0 5632 0 0 0 33 1.28569662142782
0 0 0 0 0 10240 0 6144 0 0 0 36 1.2706473289087
0 0 0 0 0 10240 0 6656 0 0 0 39 1.25665010251725
0 0 0 0 0 10240 0 7168 0 0 0 42 1.24367523893592
0 0 0 0 0 10240 0 7680 0 0 0 45 1.23167154331119
0 0 0 0 0 10240 0 8192 0 0 0 48 1.22057619871408
0 0 0 0 0 10240 0 8704 0 0 0 51 1.21032152845121
0 0 0 0 0 10240 0 9216 0 0 0 54 1.20083940253314
0 0 0 0 0 10240 0 9728 0 0 0 57 1.19206394122313
0 0 0 0 0 10240 0 10240 0 0 0 60 1.18393304322663
# 1D ASCII output created by CarpetIOASCII
#
# gxy d (gxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxy (gxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxy (gxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxy (gxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxy (gxy)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxy x (gxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxy y (gxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxy z (gxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# gxz d (gxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxz (gxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxz (gxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxz (gxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxz (gxz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxz x (gxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxz y (gxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxz z (gxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# gyy d (gyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.1734918979707
0 0 0 0 0 512 512 512 0 -57 3 3 1.18353358386562
0 0 0 0 0 1024 1024 1024 0 -54 6 6 1.19266165583264
0 0 0 0 0 1536 1536 1536 0 -51 9 9 1.19938032450798
0 0 0 0 0 2048 2048 2048 0 -48 12 12 1.20263675226259
0 0 0 0 0 2560 2560 2560 0 -45 15 15 1.20260062368105
0 0 0 0 0 3072 3072 3072 0 -42 18 18 1.2002990252603
0 0 0 0 0 3584 3584 3584 0 -39 21 21 1.19682698147513
0 0 0 0 0 4096 4096 4096 0 -36 24 24 1.19289778760987
0 0 0 0 0 4608 4608 4608 0 -33 27 27 1.18882160996483
0 0 0 0 0 5120 5120 5120 0 -30 30 30 1.18466061733399
0 0 0 0 0 5632 5632 5632 0 -27 33 33 1.18037351207249
0 0 0 0 0 6144 6144 6144 0 -24 36 36 1.17590331934878
0 0 0 0 0 6656 6656 6656 0 -21 39 39 1.17121669572677
0 0 0 0 0 7168 7168 7168 0 -18 42 42 1.16631357394207
0 0 0 0 0 7680 7680 7680 0 -15 45 45 1.16122291348897
0 0 0 0 0 8192 8192 8192 0 -12 48 48 1.15599366089986
0 0 0 0 0 8704 8704 8704 0 -9 51 51 1.15068514670822
0 0 0 0 0 9216 9216 9216 0 -6 54 54 1.14535884368671
0 0 0 0 0 9728 9728 9728 0 -3 57 57 1.1400723241299
0 0 0 0 0 10240 10240 10240 0 0 60 60 1.13487554025373
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyy (gyy)
# 1:iteration 2:time 3:data
0 0 686.377333038804
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyy (gyy)
# 1:iteration 2:time 3:data
0 0 1.10197208653032
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyy (gyy)
# 1:iteration 2:time 3:data
0 0 1.25144747615579
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyy (gyy)
# 1:iteration 2:time 3:data
0 0 2.98987086486607
# 1D ASCII output created by CarpetIOASCII
#
# gyy x (gyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.1734918979707
0 0 0 0 0 512 0 0 0 -57 0 0 1.18448800799278
0 0 0 0 0 1024 0 0 0 -54 0 0 1.19767278323484
0 0 0 0 0 1536 0 0 0 -51 0 0 1.2136556971554
0 0 0 0 0 2048 0 0 0 -48 0 0 1.2333378380441
0 0 0 0 0 2560 0 0 0 -45 0 0 1.25885526505363
0 0 0 0 0 3072 0 0 0 -42 0 0 1.29603373866772
0 0 0 0 0 3584 0 0 0 -39 0 0 1.35685684553245
0 0 0 0 0 4096 0 0 0 -36 0 0 1.44929830196765
0 0 0 0 0 4608 0 0 0 -33 0 0 1.54073221840566
0 0 0 0 0 5120 0 0 0 -30 0 0 1.58753151902271
0 0 0 0 0 5632 0 0 0 -27 0 0 1.56376303856355
0 0 0 0 0 6144 0 0 0 -24 0 0 1.48927908796317
0 0 0 0 0 6656 0 0 0 -21 0 0 1.4182765509982
0 0 0 0 0 7168 0 0 0 -18 0 0 1.37945123516311
0 0 0 0 0 7680 0 0 0 -15 0 0 1.36562225267368
0 0 0 0 0 8192 0 0 0 -12 0 0 1.36602078998664
0 0 0 0 0 8704 0 0 0 -9 0 0 1.37463727625676
0 0 0 0 0 9216 0 0 0 -6 0 0 1.38979650666294
0 0 0 0 0 9728 0 0 0 -3 0 0 1.41228149352765
0 0 0 0 0 10240 0 0 0 0 0 0 1.44396569857354
0 0 0 0 0 10752 0 0 0 3 0 0 1.48733352266753
0 0 0 0 0 11264 0 0 0 6 0 0 1.5459111605823
0 0 0 0 0 11776 0 0 0 9 0 0 1.62573229696319
0 0 0 0 0 12288 0 0 0 12 0 0 1.73844441543411
0 0 0 0 0 12800 0 0 0 15 0 0 1.90812430557792
0 0 0 0 0 13312 0 0 0 18 0 0 2.18934466998244
0 0 0 0 0 13824 0 0 0 21 0 0 2.73067498195917
0 0 0 0 0 14336 0 0 0 24 0 0 4.11141289593952
0 0 0 0 0 14848 0 0 0 27 0 0 11.4664118368896
0 0 0 0 0 15360 0 0 0 30 0 0 686.377333038804
0 0 0 0 0 15872 0 0 0 33 0 0 11.4516134742636
0 0 0 0 0 16384 0 0 0 36 0 0 4.09570278988254
0 0 0 0 0 16896 0 0 0 39 0 0 2.71344248045287
0 0 0 0 0 17408 0 0 0 42 0 0 2.17046177372236
0 0 0 0 0 17920 0 0 0 45 0 0 1.88603020602571
0 0 0 0 0 18432 0 0 0 48 0 0 1.71226534819883
0 0 0 0 0 18944 0 0 0 51 0 0 1.59546750087221
0 0 0 0 0 19456 0 0 0 54 0 0 1.51168977862773
0 0 0 0 0 19968 0 0 0 57 0 0 1.44870580165417
0 0 0 0 0 20480 0 0 0 60 0 0 1.3996424084202
# 1D ASCII output created by CarpetIOASCII
#
# gyy y (gyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44396569857354
0 0 0 0 0 10240 512 0 0 0 3 0 1.44145856353721
0 0 0 0 0 10240 1024 0 0 0 6 0 1.43423544386466
0 0 0 0 0 10240 1536 0 0 0 9 0 1.42295258969466
0 0 0 0 0 10240 2048 0 0 0 12 0 1.40853276496764
0 0 0 0 0 10240 2560 0 0 0 15 0 1.39188387885619
0 0 0 0 0 10240 3072 0 0 0 18 0 1.37385886350972
0 0 0 0 0 10240 3584 0 0 0 21 0 1.35527270101446
0 0 0 0 0 10240 4096 0 0 0 24 0 1.33679139358296
0 0 0 0 0 10240 4608 0 0 0 27 0 1.31887264450081
0 0 0 0 0 10240 5120 0 0 0 30 0 1.3017921762318
0 0 0 0 0 10240 5632 0 0 0 33 0 1.28569662142782
0 0 0 0 0 10240 6144 0 0 0 36 0 1.2706473289087
0 0 0 0 0 10240 6656 0 0 0 39 0 1.25665010251725
0 0 0 0 0 10240 7168 0 0 0 42 0 1.24367523893592
0 0 0 0 0 10240 7680 0 0 0 45 0 1.23167154331119
0 0 0 0 0 10240 8192 0 0 0 48 0 1.22057619871408
0 0 0 0 0 10240 8704 0 0 0 51 0 1.21032152845121
0 0 0 0 0 10240 9216 0 0 0 54 0 1.20083940253314
0 0 0 0 0 10240 9728 0 0 0 57 0 1.19206394122313
0 0 0 0 0 10240 10240 0 0 0 60 0 1.18393304322663
# 1D ASCII output created by CarpetIOASCII
#
# gyy z (gyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44396569857354
0 0 0 0 0 10240 0 512 0 0 0 3 1.44145856353721
0 0 0 0 0 10240 0 1024 0 0 0 6 1.43423544386466
0 0 0 0 0 10240 0 1536 0 0 0 9 1.42295258969466
0 0 0 0 0 10240 0 2048 0 0 0 12 1.40853276496764
0 0 0 0 0 10240 0 2560 0 0 0 15 1.39188387885619
0 0 0 0 0 10240 0 3072 0 0 0 18 1.37385886350972
0 0 0 0 0 10240 0 3584 0 0 0 21 1.35527270101446
0 0 0 0 0 10240 0 4096 0 0 0 24 1.33679139358296
0 0 0 0 0 10240 0 4608 0 0 0 27 1.31887264450081
0 0 0 0 0 10240 0 5120 0 0 0 30 1.3017921762318
0 0 0 0 0 10240 0 5632 0 0 0 33 1.28569662142782
0 0 0 0 0 10240 0 6144 0 0 0 36 1.2706473289087
0 0 0 0 0 10240 0 6656 0 0 0 39 1.25665010251725
0 0 0 0 0 10240 0 7168 0 0 0 42 1.24367523893592
0 0 0 0 0 10240 0 7680 0 0 0 45 1.23167154331119
0 0 0 0 0 10240 0 8192 0 0 0 48 1.22057619871408
0 0 0 0 0 10240 0 8704 0 0 0 51 1.21032152845121
0 0 0 0 0 10240 0 9216 0 0 0 54 1.20083940253314
0 0 0 0 0 10240 0 9728 0 0 0 57 1.19206394122313
0 0 0 0 0 10240 0 10240 0 0 0 60 1.18393304322663
# 1D ASCII output created by CarpetIOASCII
#
# gyz d (gyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyz (gyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyz (gyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyz (gyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyz (gyz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gyz x (gyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gyz y (gyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gyz z (gyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# gzz d (gzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.1734918979707
0 0 0 0 0 512 512 512 0 -57 3 3 1.18353358386562
0 0 0 0 0 1024 1024 1024 0 -54 6 6 1.19266165583264
0 0 0 0 0 1536 1536 1536 0 -51 9 9 1.19938032450798
0 0 0 0 0 2048 2048 2048 0 -48 12 12 1.20263675226259
0 0 0 0 0 2560 2560 2560 0 -45 15 15 1.20260062368105
0 0 0 0 0 3072 3072 3072 0 -42 18 18 1.2002990252603
0 0 0 0 0 3584 3584 3584 0 -39 21 21 1.19682698147513
0 0 0 0 0 4096 4096 4096 0 -36 24 24 1.19289778760987
0 0 0 0 0 4608 4608 4608 0 -33 27 27 1.18882160996483
0 0 0 0 0 5120 5120 5120 0 -30 30 30 1.18466061733399
0 0 0 0 0 5632 5632 5632 0 -27 33 33 1.18037351207249
0 0 0 0 0 6144 6144 6144 0 -24 36 36 1.17590331934878
0 0 0 0 0 6656 6656 6656 0 -21 39 39 1.17121669572677
0 0 0 0 0 7168 7168 7168 0 -18 42 42 1.16631357394207
0 0 0 0 0 7680 7680 7680 0 -15 45 45 1.16122291348897
0 0 0 0 0 8192 8192 8192 0 -12 48 48 1.15599366089986
0 0 0 0 0 8704 8704 8704 0 -9 51 51 1.15068514670822
0 0 0 0 0 9216 9216 9216 0 -6 54 54 1.14535884368671
0 0 0 0 0 9728 9728 9728 0 -3 57 57 1.1400723241299
0 0 0 0 0 10240 10240 10240 0 0 60 60 1.13487554025373
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gzz (gzz)
# 1:iteration 2:time 3:data
0 0 686.377333038804
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gzz (gzz)
# 1:iteration 2:time 3:data
0 0 1.10197208653032
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gzz (gzz)
# 1:iteration 2:time 3:data
0 0 1.25144747615579
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gzz (gzz)
# 1:iteration 2:time 3:data
0 0 2.98987086486607
# 1D ASCII output created by CarpetIOASCII
#
# gzz x (gzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.1734918979707
0 0 0 0 0 512 0 0 0 -57 0 0 1.18448800799278
0 0 0 0 0 1024 0 0 0 -54 0 0 1.19767278323484
0 0 0 0 0 1536 0 0 0 -51 0 0 1.2136556971554
0 0 0 0 0 2048 0 0 0 -48 0 0 1.2333378380441
0 0 0 0 0 2560 0 0 0 -45 0 0 1.25885526505363
0 0 0 0 0 3072 0 0 0 -42 0 0 1.29603373866772
0 0 0 0 0 3584 0 0 0 -39 0 0 1.35685684553245
0 0 0 0 0 4096 0 0 0 -36 0 0 1.44929830196765
0 0 0 0 0 4608 0 0 0 -33 0 0 1.54073221840566
0 0 0 0 0 5120 0 0 0 -30 0 0 1.58753151902271
0 0 0 0 0 5632 0 0 0 -27 0 0 1.56376303856355
0 0 0 0 0 6144 0 0 0 -24 0 0 1.48927908796317
0 0 0 0 0 6656 0 0 0 -21 0 0 1.4182765509982
0 0 0 0 0 7168 0 0 0 -18 0 0 1.37945123516311
0 0 0 0 0 7680 0 0 0 -15 0 0 1.36562225267368
0 0 0 0 0 8192 0 0 0 -12 0 0 1.36602078998664
0 0 0 0 0 8704 0 0 0 -9 0 0 1.37463727625676
0 0 0 0 0 9216 0 0 0 -6 0 0 1.38979650666294
0 0 0 0 0 9728 0 0 0 -3 0 0 1.41228149352765
0 0 0 0 0 10240 0 0 0 0 0 0 1.44396569857354
0 0 0 0 0 10752 0 0 0 3 0 0 1.48733352266753
0 0 0 0 0 11264 0 0 0 6 0 0 1.5459111605823
0 0 0 0 0 11776 0 0 0 9 0 0 1.62573229696319
0 0 0 0 0 12288 0 0 0 12 0 0 1.73844441543411
0 0 0 0 0 12800 0 0 0 15 0 0 1.90812430557792
0 0 0 0 0 13312 0 0 0 18 0 0 2.18934466998244
0 0 0 0 0 13824 0 0 0 21 0 0 2.73067498195917
0 0 0 0 0 14336 0 0 0 24 0 0 4.11141289593952
0 0 0 0 0 14848 0 0 0 27 0 0 11.4664118368896
0 0 0 0 0 15360 0 0 0 30 0 0 686.377333038804
0 0 0 0 0 15872 0 0 0 33 0 0 11.4516134742636
0 0 0 0 0 16384 0 0 0 36 0 0 4.09570278988254
0 0 0 0 0 16896 0 0 0 39 0 0 2.71344248045287
0 0 0 0 0 17408 0 0 0 42 0 0 2.17046177372236
0 0 0 0 0 17920 0 0 0 45 0 0 1.88603020602571
0 0 0 0 0 18432 0 0 0 48 0 0 1.71226534819883
0 0 0 0 0 18944 0 0 0 51 0 0 1.59546750087221
0 0 0 0 0 19456 0 0 0 54 0 0 1.51168977862773
0 0 0 0 0 19968 0 0 0 57 0 0 1.44870580165417
0 0 0 0 0 20480 0 0 0 60 0 0 1.3996424084202
# 1D ASCII output created by CarpetIOASCII
#
# gzz y (gzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44396569857354
0 0 0 0 0 10240 512 0 0 0 3 0 1.44145856353721
0 0 0 0 0 10240 1024 0 0 0 6 0 1.43423544386466
0 0 0 0 0 10240 1536 0 0 0 9 0 1.42295258969466
0 0 0 0 0 10240 2048 0 0 0 12 0 1.40853276496764
0 0 0 0 0 10240 2560 0 0 0 15 0 1.39188387885619
0 0 0 0 0 10240 3072 0 0 0 18 0 1.37385886350972
0 0 0 0 0 10240 3584 0 0 0 21 0 1.35527270101446
0 0 0 0 0 10240 4096 0 0 0 24 0 1.33679139358296
0 0 0 0 0 10240 4608 0 0 0 27 0 1.31887264450081
0 0 0 0 0 10240 5120 0 0 0 30 0 1.3017921762318
0 0 0 0 0 10240 5632 0 0 0 33 0 1.28569662142782
0 0 0 0 0 10240 6144 0 0 0 36 0 1.2706473289087
0 0 0 0 0 10240 6656 0 0 0 39 0 1.25665010251725
0 0 0 0 0 10240 7168 0 0 0 42 0 1.24367523893592
0 0 0 0 0 10240 7680 0 0 0 45 0 1.23167154331119
0 0 0 0 0 10240 8192 0 0 0 48 0 1.22057619871408
0 0 0 0 0 10240 8704 0 0 0 51 0 1.21032152845121
0 0 0 0 0 10240 9216 0 0 0 54 0 1.20083940253314
0 0 0 0 0 10240 9728 0 0 0 57 0 1.19206394122313
0 0 0 0 0 10240 10240 0 0 0 60 0 1.18393304322663
# 1D ASCII output created by CarpetIOASCII
#
# gzz z (gzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44396569857354
0 0 0 0 0 10240 0 512 0 0 0 3 1.44145856353721
0 0 0 0 0 10240 0 1024 0 0 0 6 1.43423544386466
0 0 0 0 0 10240 0 1536 0 0 0 9 1.42295258969466
0 0 0 0 0 10240 0 2048 0 0 0 12 1.40853276496764
0 0 0 0 0 10240 0 2560 0 0 0 15 1.39188387885619
0 0 0 0 0 10240 0 3072 0 0 0 18 1.37385886350972
0 0 0 0 0 10240 0 3584 0 0 0 21 1.35527270101446
0 0 0 0 0 10240 0 4096 0 0 0 24 1.33679139358296
0 0 0 0 0 10240 0 4608 0 0 0 27 1.31887264450081
0 0 0 0 0 10240 0 5120 0 0 0 30 1.3017921762318
0 0 0 0 0 10240 0 5632 0 0 0 33 1.28569662142782
0 0 0 0 0 10240 0 6144 0 0 0 36 1.2706473289087
0 0 0 0 0 10240 0 6656 0 0 0 39 1.25665010251725
0 0 0 0 0 10240 0 7168 0 0 0 42 1.24367523893592
0 0 0 0 0 10240 0 7680 0 0 0 45 1.23167154331119
0 0 0 0 0 10240 0 8192 0 0 0 48 1.22057619871408
0 0 0 0 0 10240 0 8704 0 0 0 51 1.21032152845121
0 0 0 0 0 10240 0 9216 0 0 0 54 1.20083940253314
0 0 0 0 0 10240 0 9728 0 0 0 57 1.19206394122313
0 0 0 0 0 10240 0 10240 0 0 0 60 1.18393304322663
# 1D ASCII output created by CarpetIOASCII
#
# kxx d (kxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxx (kxx)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxx (kxx)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxx (kxx)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxx (kxx)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxx x (kxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxx y (kxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxx z (kxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# kxy d (kxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxy (kxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxy (kxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxy (kxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxy (kxy)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxy x (kxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxy y (kxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxy z (kxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# kxz d (kxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxz (kxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxz (kxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxz (kxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxz (kxz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxz x (kxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxz y (kxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxz z (kxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# kyy d (kyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyy (kyy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyy (kyy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyy (kyy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyy (kyy)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyy x (kyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyy y (kyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyy z (kyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# kyz d (kyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyz (kyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyz (kyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyz (kyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyz (kyz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyz x (kyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyz y (kyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyz z (kyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# kzz d (kzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kzz (kzz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kzz (kzz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kzz (kzz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kzz (kzz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kzz x (kzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kzz y (kzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kzz z (kzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# press d (press)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::press (press)
# 1:iteration 2:time 3:data
0 0 1.56670902387077e-05
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::press (press)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::press (press)
# 1:iteration 2:time 3:data
0 0 5.05742904401525e-09
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::press (press)
# 1:iteration 2:time 3:data
0 0 1.78035955198505e-07
# 1D ASCII output created by CarpetIOASCII
#
# press x (press)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 1.94643066292056e-07
0 0 0 0 0 4096 0 0 0 -36 0 0 3.49157673737973e-06
0 0 0 0 0 4608 0 0 0 -33 0 0 1.11266017671819e-05
0 0 0 0 0 5120 0 0 0 -30 0 0 1.56670902387077e-05
0 0 0 0 0 5632 0 0 0 -27 0 0 1.05046757574152e-05
0 0 0 0 0 6144 0 0 0 -24 0 0 3.13746067211994e-06
0 0 0 0 0 6656 0 0 0 -21 0 0 1.6317492504569e-07
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# press y (press)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# press z (press)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# puncture_u d (puncture_u)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0.0130287894990631
0 0 0 0 0 512 512 512 0 -57 3 3 0.014324504374539
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0.0154201276834907
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0.016009921385605
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0.0158910229161676
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0.0151267275295532
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0.0139639104004239
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0.0126624511563192
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0.0113975566861353
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0.0102531848648781
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0.00925355786119621
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0.00839314595765608
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0.00765534347322333
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0.00702158544948283
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0.00647480813826607
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0.00600038462440438
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0.00558616354224807
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0.00522221080607641
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0.00490045750680095
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0.00461434847558266
0 0 0 0 0 10240 10240 10240 0 0 60 60 0.0043585379182479
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# TWOPUNCTURES::puncture_u (puncture_u)
# 1:iteration 2:time 3:data
0 0 0.0808184444666426
# Scalar ASCII output created by CarpetIOScalar
#
# TWOPUNCTURES::puncture_u (puncture_u)
# 1:iteration 2:time 3:data
0 0 0.00317032302816797
# Scalar ASCII output created by CarpetIOScalar
#
# TWOPUNCTURES::puncture_u (puncture_u)
# 1:iteration 2:time 3:data
0 0 0.00731812180563583
# Scalar ASCII output created by CarpetIOScalar
#
# TWOPUNCTURES::puncture_u (puncture_u)
# 1:iteration 2:time 3:data
0 0 0.00850277357265274
# 1D ASCII output created by CarpetIOASCII
#
# puncture_u x (puncture_u)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0.0130287894990631
0 0 0 0 0 512 0 0 0 -57 0 0 0.0145006122638555
0 0 0 0 0 1024 0 0 0 -54 0 0 0.0163654179094299
0 0 0 0 0 1536 0 0 0 -51 0 0 0.018735929819908
0 0 0 0 0 2048 0 0 0 -48 0 0 0.0217786115888127
0 0 0 0 0 2560 0 0 0 -45 0 0 0.025905636253964
0 0 0 0 0 3072 0 0 0 -42 0 0 0.0322523678048841
0 0 0 0 0 3584 0 0 0 -39 0 0 0.0430465707785428
0 0 0 0 0 4096 0 0 0 -36 0 0 0.0593304257043384
0 0 0 0 0 4608 0 0 0 -33 0 0 0.0744370000179641
0 0 0 0 0 5120 0 0 0 -30 0 0 0.0808184444666426
0 0 0 0 0 5632 0 0 0 -27 0 0 0.0744002103774854
0 0 0 0 0 6144 0 0 0 -24 0 0 0.0584028612890786
0 0 0 0 0 6656 0 0 0 -21 0 0 0.0422705305214643
0 0 0 0 0 7168 0 0 0 -18 0 0 0.0316603722524186
0 0 0 0 0 7680 0 0 0 -15 0 0 0.0254617494740125
0 0 0 0 0 8192 0 0 0 -12 0 0 0.0215723567337287
0 0 0 0 0 8704 0 0 0 -9 0 0 0.018694399243074
0 0 0 0 0 9216 0 0 0 -6 0 0 0.0163254707302645
0 0 0 0 0 9728 0 0 0 -3 0 0 0.0143775087531684
0 0 0 0 0 10240 0 0 0 0 0 0 0.0128652063150754
0 0 0 0 0 10752 0 0 0 3 0 0 0.0117455987251847
0 0 0 0 0 11264 0 0 0 6 0 0 0.0108879319881139
0 0 0 0 0 11776 0 0 0 9 0 0 0.0101299916701006
0 0 0 0 0 12288 0 0 0 12 0 0 0.00937102122427378
0 0 0 0 0 12800 0 0 0 15 0 0 0.00864126191954523
0 0 0 0 0 13312 0 0 0 18 0 0 0.00807261314769977
0 0 0 0 0 13824 0 0 0 21 0 0 0.00770867115690967
0 0 0 0 0 14336 0 0 0 24 0 0 0.00729327954459679
0 0 0 0 0 14848 0 0 0 27 0 0 0.00683216621786225
0 0 0 0 0 15360 0 0 0 30 0 0 0.00663462500823804
0 0 0 0 0 15872 0 0 0 33 0 0 0.00623815682244353
0 0 0 0 0 16384 0 0 0 36 0 0 0.00593105389307235
0 0 0 0 0 16896 0 0 0 39 0 0 0.00567577044862433
0 0 0 0 0 17408 0 0 0 42 0 0 0.00544123970007901
0 0 0 0 0 17920 0 0 0 45 0 0 0.00522417698441044
0 0 0 0 0 18432 0 0 0 48 0 0 0.00502350894328257
0 0 0 0 0 18944 0 0 0 51 0 0 0.00483768018842466
0 0 0 0 0 19456 0 0 0 54 0 0 0.00466512475583751
0 0 0 0 0 19968 0 0 0 57 0 0 0.00450446387106632
0 0 0 0 0 20480 0 0 0 60 0 0 0.00435450651176804
# 1D ASCII output created by CarpetIOASCII
#
# puncture_u y (puncture_u)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0.0128652063150754
0 0 0 0 0 10240 512 0 0 0 3 0 0.0128026355778902
0 0 0 0 0 10240 1024 0 0 0 6 0 0.0126320974733998
0 0 0 0 0 10240 1536 0 0 0 9 0 0.012369663515628
0 0 0 0 0 10240 2048 0 0 0 12 0 0.0120378981704507
0 0 0 0 0 10240 2560 0 0 0 15 0 0.0116417731576441
0 0 0 0 0 10240 3072 0 0 0 18 0 0.011185898726704
0 0 0 0 0 10240 3584 0 0 0 21 0 0.0106939728998936
0 0 0 0 0 10240 4096 0 0 0 24 0 0.0101935908472216
0 0 0 0 0 10240 4608 0 0 0 27 0 0.00970326124827105
0 0 0 0 0 10240 5120 0 0 0 30 0 0.00923223021347453
0 0 0 0 0 10240 5632 0 0 0 33 0 0.00878459317321954
0 0 0 0 0 10240 6144 0 0 0 36 0 0.00836215338233114
0 0 0 0 0 10240 6656 0 0 0 39 0 0.00796556184266645
0 0 0 0 0 10240 7168 0 0 0 42 0 0.00759467780492803
0 0 0 0 0 10240 7680 0 0 0 45 0 0.00724875394787101
0 0 0 0 0 10240 8192 0 0 0 48 0 0.00692661631223329
0 0 0 0 0 10240 8704 0 0 0 51 0 0.00662683795788798
0 0 0 0 0 10240 9216 0 0 0 54 0 0.00634787800772025
0 0 0 0 0 10240 9728 0 0 0 57 0 0.00608817889767127
0 0 0 0 0 10240 10240 0 0 0 60 0 0.00584622722660906
# 1D ASCII output created by CarpetIOASCII
#
# puncture_u z (puncture_u)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0.0128652063150754
0 0 0 0 0 10240 0 512 0 0 0 3 0.0128026355778901
0 0 0 0 0 10240 0 1024 0 0 0 6 0.0126320974733998
0 0 0 0 0 10240 0 1536 0 0 0 9 0.012369663515628
0 0 0 0 0 10240 0 2048 0 0 0 12 0.0120378981704507
0 0 0 0 0 10240 0 2560 0 0 0 15 0.011641773157644
0 0 0 0 0 10240 0 3072 0 0 0 18 0.011185898726704
0 0 0 0 0 10240 0 3584 0 0 0 21 0.0106939728998936
0 0 0 0 0 10240 0 4096 0 0 0 24 0.0101935908472216
0 0 0 0 0 10240 0 4608 0 0 0 27 0.00970326124827103
0 0 0 0 0 10240 0 5120 0 0 0 30 0.0092322302134745
0 0 0 0 0 10240 0 5632 0 0 0 33 0.00878459317321951
0 0 0 0 0 10240 0 6144 0 0 0 36 0.00836215338233112
0 0 0 0 0 10240 0 6656 0 0 0 39 0.00796556184266643
0 0 0 0 0 10240 0 7168 0 0 0 42 0.00759467780492801
0 0 0 0 0 10240 0 7680 0 0 0 45 0.00724875394787099
0 0 0 0 0 10240 0 8192 0 0 0 48 0.00692661631223327
0 0 0 0 0 10240 0 8704 0 0 0 51 0.00662683795788795
0 0 0 0 0 10240 0 9216 0 0 0 54 0.00634787800772022
0 0 0 0 0 10240 0 9728 0 0 0 57 0.00608817889767125
0 0 0 0 0 10240 0 10240 0 0 0 60 0.00584622722660904
# 1D ASCII output created by CarpetIOASCII
#
# rho d (rho)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::rho (rho)
# 1:iteration 2:time 3:data
0 0 0.000395816753545219
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::rho (rho)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::rho (rho)
# 1:iteration 2:time 3:data
0 0 2.74375408312621e-07
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::rho (rho)
# 1:iteration 2:time 3:data
0 0 7.11156033793939e-06
# 1D ASCII output created by CarpetIOASCII
#
# rho x (rho)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 4.41183710365711e-05
0 0 0 0 0 4096 0 0 0 -36 0 0 0.000186857612565818
0 0 0 0 0 4608 0 0 0 -33 0 0 0.000333565612244157
0 0 0 0 0 5120 0 0 0 -30 0 0 0.000395816753545219
0 0 0 0 0 5632 0 0 0 -27 0 0 0.000324109175393343
0 0 0 0 0 6144 0 0 0 -24 0 0 0.000177128785693346
0 0 0 0 0 6656 0 0 0 -21 0 0 4.03949161461798e-05
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# rho y (rho)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# rho z (rho)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[0] d (vel[0])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[0] (vel[0])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[0] (vel[0])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[0] (vel[0])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[0] (vel[0])
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[0] x (vel[0])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[0] y (vel[0])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[0] z (vel[0])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[1] d (vel[1])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[1] (vel[1])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[1] (vel[1])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[1] (vel[1])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[1] (vel[1])
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[1] x (vel[1])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[1] y (vel[1])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[1] z (vel[1])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[2] d (vel[2])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[2] (vel[2])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[2] (vel[2])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[2] (vel[2])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[2] (vel[2])
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[2] x (vel[2])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[2] y (vel[2])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[2] z (vel[2])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# w_lorentz d (w_lorentz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1
0 0 0 0 0 512 512 512 0 -57 3 3 1
0 0 0 0 0 1024 1024 1024 0 -54 6 6 1
0 0 0 0 0 1536 1536 1536 0 -51 9 9 1
0 0 0 0 0 2048 2048 2048 0 -48 12 12 1
0 0 0 0 0 2560 2560 2560 0 -45 15 15 1
0 0 0 0 0 3072 3072 3072 0 -42 18 18 1
0 0 0 0 0 3584 3584 3584 0 -39 21 21 1
0 0 0 0 0 4096 4096 4096 0 -36 24 24 1
0 0 0 0 0 4608 4608 4608 0 -33 27 27 1
0 0 0 0 0 5120 5120 5120 0 -30 30 30 1
0 0 0 0 0 5632 5632 5632 0 -27 33 33 1
0 0 0 0 0 6144 6144 6144 0 -24 36 36 1
0 0 0 0 0 6656 6656 6656 0 -21 39 39 1
0 0 0 0 0 7168 7168 7168 0 -18 42 42 1
0 0 0 0 0 7680 7680 7680 0 -15 45 45 1
0 0 0 0 0 8192 8192 8192 0 -12 48 48 1
0 0 0 0 0 8704 8704 8704 0 -9 51 51 1
0 0 0 0 0 9216 9216 9216 0 -6 54 54 1
0 0 0 0 0 9728 9728 9728 0 -3 57 57 1
0 0 0 0 0 10240 10240 10240 0 0 60 60 1
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::w_lorentz (w_lorentz)
# 1:iteration 2:time 3:data
0 0 1
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::w_lorentz (w_lorentz)
# 1:iteration 2:time 3:data
0 0 1
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::w_lorentz (w_lorentz)
# 1:iteration 2:time 3:data
0 0 1
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::w_lorentz (w_lorentz)
# 1:iteration 2:time 3:data
0 0 1
# 1D ASCII output created by CarpetIOASCII
#
# w_lorentz x (w_lorentz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1
0 0 0 0 0 512 0 0 0 -57 0 0 1
0 0 0 0 0 1024 0 0 0 -54 0 0 1
0 0 0 0 0 1536 0 0 0 -51 0 0 1
0 0 0 0 0 2048 0 0 0 -48 0 0 1
0 0 0 0 0 2560 0 0 0 -45 0 0 1
0 0 0 0 0 3072 0 0 0 -42 0 0 1
0 0 0 0 0 3584 0 0 0 -39 0 0 1
0 0 0 0 0 4096 0 0 0 -36 0 0 1
0 0 0 0 0 4608 0 0 0 -33 0 0 1
0 0 0 0 0 5120 0 0 0 -30 0 0 1
0 0 0 0 0 5632 0 0 0 -27 0 0 1
0 0 0 0 0 6144 0 0 0 -24 0 0 1
0 0 0 0 0 6656 0 0 0 -21 0 0 1
0 0 0 0 0 7168 0 0 0 -18 0 0 1
0 0 0 0 0 7680 0 0 0 -15 0 0 1
0 0 0 0 0 8192 0 0 0 -12 0 0 1
0 0 0 0 0 8704 0 0 0 -9 0 0 1
0 0 0 0 0 9216 0 0 0 -6 0 0 1
0 0 0 0 0 9728 0 0 0 -3 0 0 1
0 0 0 0 0 10240 0 0 0 0 0 0 1
0 0 0 0 0 10752 0 0 0 3 0 0 1
0 0 0 0 0 11264 0 0 0 6 0 0 1
0 0 0 0 0 11776 0 0 0 9 0 0 1
0 0 0 0 0 12288 0 0 0 12 0 0 1
0 0 0 0 0 12800 0 0 0 15 0 0 1
0 0 0 0 0 13312 0 0 0 18 0 0 1
0 0 0 0 0 13824 0 0 0 21 0 0 1
0 0 0 0 0 14336 0 0 0 24 0 0 1
0 0 0 0 0 14848 0 0 0 27 0 0 1
0 0 0 0 0 15360 0 0 0 30 0 0 1
0 0 0 0 0 15872 0 0 0 33 0 0 1
0 0 0 0 0 16384 0 0 0 36 0 0 1
0 0 0 0 0 16896 0 0 0 39 0 0 1
0 0 0 0 0 17408 0 0 0 42 0 0 1
0 0 0 0 0 17920 0 0 0 45 0 0 1
0 0 0 0 0 18432 0 0 0 48 0 0 1
0 0 0 0 0 18944 0 0 0 51 0 0 1
0 0 0 0 0 19456 0 0 0 54 0 0 1
0 0 0 0 0 19968 0 0 0 57 0 0 1
0 0 0 0 0 20480 0 0 0 60 0 0 1
# 1D ASCII output created by CarpetIOASCII
#
# w_lorentz y (w_lorentz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1
0 0 0 0 0 10240 512 0 0 0 3 0 1
0 0 0 0 0 10240 1024 0 0 0 6 0 1
0 0 0 0 0 10240 1536 0 0 0 9 0 1
0 0 0 0 0 10240 2048 0 0 0 12 0 1
0 0 0 0 0 10240 2560 0 0 0 15 0 1
0 0 0 0 0 10240 3072 0 0 0 18 0 1
0 0 0 0 0 10240 3584 0 0 0 21 0 1
0 0 0 0 0 10240 4096 0 0 0 24 0 1
0 0 0 0 0 10240 4608 0 0 0 27 0 1
0 0 0 0 0 10240 5120 0 0 0 30 0 1
0 0 0 0 0 10240 5632 0 0 0 33 0 1
0 0 0 0 0 10240 6144 0 0 0 36 0 1
0 0 0 0 0 10240 6656 0 0 0 39 0 1
0 0 0 0 0 10240 7168 0 0 0 42 0 1
0 0 0 0 0 10240 7680 0 0 0 45 0 1
0 0 0 0 0 10240 8192 0 0 0 48 0 1
0 0 0 0 0 10240 8704 0 0 0 51 0 1
0 0 0 0 0 10240 9216 0 0 0 54 0 1
0 0 0 0 0 10240 9728 0 0 0 57 0 1
0 0 0 0 0 10240 10240 0 0 0 60 0 1
# 1D ASCII output created by CarpetIOASCII
#
# w_lorentz z (w_lorentz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1
0 0 0 0 0 10240 0 512 0 0 0 3 1
0 0 0 0 0 10240 0 1024 0 0 0 6 1
0 0 0 0 0 10240 0 1536 0 0 0 9 1
0 0 0 0 0 10240 0 2048 0 0 0 12 1
0 0 0 0 0 10240 0 2560 0 0 0 15 1
0 0 0 0 0 10240 0 3072 0 0 0 18 1
0 0 0 0 0 10240 0 3584 0 0 0 21 1
0 0 0 0 0 10240 0 4096 0 0 0 24 1
0 0 0 0 0 10240 0 4608 0 0 0 27 1
0 0 0 0 0 10240 0 5120 0 0 0 30 1
0 0 0 0 0 10240 0 5632 0 0 0 33 1
0 0 0 0 0 10240 0 6144 0 0 0 36 1
0 0 0 0 0 10240 0 6656 0 0 0 39 1
0 0 0 0 0 10240 0 7168 0 0 0 42 1
0 0 0 0 0 10240 0 7680 0 0 0 45 1
0 0 0 0 0 10240 0 8192 0 0 0 48 1
0 0 0 0 0 10240 0 8704 0 0 0 51 1
0 0 0 0 0 10240 0 9216 0 0 0 54 1
0 0 0 0 0 10240 0 9728 0 0 0 57 1
0 0 0 0 0 10240 0 10240 0 0 0 60 1
ActiveThorns = "Boundary CartGrid3D Time CoordBase SymBase LocalReduce"
ActiveThorns = "Loopcontrol InitBase Carpet CarpetLib CarpetInterp CarpetReduce CarpetSlab CarpetIOASCII CarpetIOBasic IOUtil CarpetIOScalar CarpetIOHDF5"
ActiveThorns = "ADMBase"
ActiveThorns = "StaticConformal"
ActiveThorns = "ADMCoupling ADMMacros"
ActiveThorns = "TmunuBase Constants SpaceMask HydroBase"
ActiveThorns = "TOVSolver eos_omni"
ActiveThorns = "TwoPunctures"
ActiveThorns = "coordgauge boundary"
Carpet::init_each_timelevel = "no"
InitBase::initial_data_setup_method = "init_all_levels"
Cactus::cctk_itlast = 0
Time::dtfac = 0.25
CoordBase::domainsize = minmax
driver::ghost_size = 3
Carpet::domain_from_coordbase = "yes"
CoordBase::xmin = -60.0
CoordBase::ymin = 0.0
CoordBase::zmin = 0.0
CoordBase::xmax = 60.0
CoordBase::ymax = 60.0
CoordBase::zmax = 60.0
CoordBase::dx = 3.0
CoordBase::dy = 3.0
CoordBase::dz = 3.0
CartGrid3D::type = "coordbase"
CartGrid3D::domain = "full"
CartGrid3D::avoid_origin = "no"
ADMBase::initial_data = "twopunctures"
ADMBase::initial_lapse = "tov"
ADMBase::initial_shift = "tov"
TwoPunctures::keep_u_around = yes
TwoPunctures::schedule_in_ADMBase_InitialData = no
TwoPunctures::npoints_A = 20
TwoPunctures::npoints_B = 20
TwoPunctures::npoints_phi = 4
TwoPunctures::Newton_tol = 1.e-10
TwoPunctures::grid_setup_method = "evaluation"
TwoPunctures::TP_Extend_Radius = 1.14
TwoPunctures::par_b = 30
TwoPunctures::par_m_plus = 5.0
TwoPunctures::par_m_minus = 0.0
TwoPunctures::Newton_maxit = 100
TwoPunctures::use_sources = 1
TwoPunctures::do_residuum_debug_output = "no"
TwoPunctures::do_initial_debug_output = "no"
TwoPunctures::rescale_sources = "yes"
TwoPunctures::TP_Tiny = 1.e-10
SpaceMask::use_mask = yes
TOVSolver::TOV_Enforce_Interpolation = "yes"
TOVSolver::TOV_Num_Radial = 1000000
TOVSolver::TOV_dr[0] = 5.e-5
TOVSolver::TOV_Position_x[0] = -30
TOVSolver::TOV_Rho_Central[0] = 5.e-4
TOVSolver::TOV_Gamma = 2.0
TOVSolver::TOV_K = 100.0
IO::out_dir = $parfile
IO::out_fileinfo= "axis labels"
Carpet::max_refinement_levels = 10
carpet::enable_all_storage = no
Carpet::prolongation_order_space = 3
Carpet::prolongation_order_time = 2
Carpet::convergence_level = 0
Carpet::init_3_timelevels = no
CarpetIOScalar::outScalar_reductions = "minimum maximum norm1 norm2"
IOScalar::outScalar_every = 512
IOScalar::outScalar_vars = "admbase::metric admbase::curv TwoPunctures::puncture_u HydroBase::w_lorentz hydrobase::rho hydrobase::press hydrobase::eps HydroBase::vel admbase::lapse admbase::shift"
IOASCII::out1D_every = 512
IOASCII::out1D_vars = "admbase::metric admbase::curv TwoPunctures::puncture_u HydroBase::w_lorentz hydrobase::rho hydrobase::press hydrobase::eps HydroBase::vel admbase::lapse admbase::shift"
admbase::metric_type = "physical"
boundary::radpower = 2
admmacros::spatial_order = 4
# 1D ASCII output created by CarpetIOASCII
#
# alp d (alp)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0.971686764674217
0 0 0 0 0 512 512 512 0 -57 3 3 0.968965085984356
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0.966716643085138
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0.965518097225981
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0.965768223997869
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0.967378134997027
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0.969846165096544
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0.972615667037917
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0.975311191214066
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0.977755108581314
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0.979896161202685
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0.981744401292436
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0.983333062630193
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0.98470033984553
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0.985881943263156
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0.986908702731988
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0.987806304047424
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0.988595813060972
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0.989294409117129
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0.989916099066487
0 0 0 0 0 10240 10240 10240 0 0 60 60 0.990472335219736
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::alp (alp)
# 1:iteration 2:time 3:data
0 0 0.993058598194887
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::alp (alp)
# 1:iteration 2:time 3:data
0 0 0.835437180480016
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::alp (alp)
# 1:iteration 2:time 3:data
0 0 0.984095468461247
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::alp (alp)
# 1:iteration 2:time 3:data
0 0 0.984138073487657
# 1D ASCII output created by CarpetIOASCII
#
# alp x (alp)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0.971686764674217
0 0 0 0 0 512 0 0 0 -57 0 0 0.968590255831246
0 0 0 0 0 1024 0 0 0 -54 0 0 0.964733270245097
0 0 0 0 0 1536 0 0 0 -51 0 0 0.959796440855496
0 0 0 0 0 2048 0 0 0 -48 0 0 0.95325246576955
0 0 0 0 0 2560 0 0 0 -45 0 0 0.944163978555737
0 0 0 0 0 3072 0 0 0 -42 0 0 0.930688731379778
0 0 0 0 0 3584 0 0 0 -39 0 0 0.908827789211565
0 0 0 0 0 4096 0 0 0 -36 0 0 0.877571738746699
0 0 0 0 0 4608 0 0 0 -33 0 0 0.847932835979458
0 0 0 0 0 5120 0 0 0 -30 0 0 0.835437180480016
0 0 0 0 0 5632 0 0 0 -27 0 0 0.847932835979458
0 0 0 0 0 6144 0 0 0 -24 0 0 0.877571738746699
0 0 0 0 0 6656 0 0 0 -21 0 0 0.908827789211565
0 0 0 0 0 7168 0 0 0 -18 0 0 0.930688731379778
0 0 0 0 0 7680 0 0 0 -15 0 0 0.944163978555737
0 0 0 0 0 8192 0 0 0 -12 0 0 0.95325246576955
0 0 0 0 0 8704 0 0 0 -9 0 0 0.959796440855496
0 0 0 0 0 9216 0 0 0 -6 0 0 0.964733270245097
0 0 0 0 0 9728 0 0 0 -3 0 0 0.968590255831246
0 0 0 0 0 10240 0 0 0 0 0 0 0.971686764674217
0 0 0 0 0 10752 0 0 0 3 0 0 0.974227526881276
0 0 0 0 0 11264 0 0 0 6 0 0 0.976349836174037
0 0 0 0 0 11776 0 0 0 9 0 0 0.978149203586999
0 0 0 0 0 12288 0 0 0 12 0 0 0.979694128349802
0 0 0 0 0 12800 0 0 0 15 0 0 0.981035016442416
0 0 0 0 0 13312 0 0 0 18 0 0 0.982209784441468
0 0 0 0 0 13824 0 0 0 21 0 0 0.983247502105247
0 0 0 0 0 14336 0 0 0 24 0 0 0.984170830373543
0 0 0 0 0 14848 0 0 0 27 0 0 0.984997695247917
0 0 0 0 0 15360 0 0 0 30 0 0 0.985742463087677
0 0 0 0 0 15872 0 0 0 33 0 0 0.986416782387632
0 0 0 0 0 16384 0 0 0 36 0 0 0.987030197468873
0 0 0 0 0 16896 0 0 0 39 0 0 0.987590603069623
0 0 0 0 0 17408 0 0 0 42 0 0 0.988104585964339
0 0 0 0 0 17920 0 0 0 45 0 0 0.988577685062457
0 0 0 0 0 18432 0 0 0 48 0 0 0.989014591814054
0 0 0 0 0 18944 0 0 0 51 0 0 0.989419306316515
0 0 0 0 0 19456 0 0 0 54 0 0 0.989795260140451
0 0 0 0 0 19968 0 0 0 57 0 0 0.990145413868575
0 0 0 0 0 20480 0 0 0 60 0 0 0.990472335219736
# 1D ASCII output created by CarpetIOASCII
#
# alp y (alp)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0.971686764674217
0 0 0 0 0 10240 512 0 0 0 3 0 0.971825298416918
0 0 0 0 0 10240 1024 0 0 0 6 0 0.972228953980846
0 0 0 0 0 10240 1536 0 0 0 9 0 0.972864638166075
0 0 0 0 0 10240 2048 0 0 0 12 0 0.973685176457097
0 0 0 0 0 10240 2560 0 0 0 15 0 0.974637967535109
0 0 0 0 0 10240 3072 0 0 0 18 0 0.975672522308712
0 0 0 0 0 10240 3584 0 0 0 21 0 0.976745383783114
0 0 0 0 0 10240 4096 0 0 0 24 0 0.977822278878331
0 0 0 0 0 10240 4608 0 0 0 27 0 0.978878179395313
0 0 0 0 0 10240 5120 0 0 0 30 0 0.979896161202685
0 0 0 0 0 10240 5632 0 0 0 33 0 0.980865791910691
0 0 0 0 0 10240 6144 0 0 0 36 0 0.981781507596056
0 0 0 0 0 10240 6656 0 0 0 39 0 0.982641205359921
0 0 0 0 0 10240 7168 0 0 0 42 0 0.983445124788971
0 0 0 0 0 10240 7680 0 0 0 45 0 0.984195009109493
0 0 0 0 0 10240 8192 0 0 0 48 0 0.984893502313972
0 0 0 0 0 10240 8704 0 0 0 51 0 0.985543730584329
0 0 0 0 0 10240 9216 0 0 0 54 0 0.986149020718892
0 0 0 0 0 10240 9728 0 0 0 57 0 0.986712716953883
0 0 0 0 0 10240 10240 0 0 0 60 0 0.987238066625416
# 1D ASCII output created by CarpetIOASCII
#
# alp z (alp)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0.971686764674217
0 0 0 0 0 10240 0 512 0 0 0 3 0.971825298416918
0 0 0 0 0 10240 0 1024 0 0 0 6 0.972228953980846
0 0 0 0 0 10240 0 1536 0 0 0 9 0.972864638166075
0 0 0 0 0 10240 0 2048 0 0 0 12 0.973685176457097
0 0 0 0 0 10240 0 2560 0 0 0 15 0.974637967535109
0 0 0 0 0 10240 0 3072 0 0 0 18 0.975672522308712
0 0 0 0 0 10240 0 3584 0 0 0 21 0.976745383783114
0 0 0 0 0 10240 0 4096 0 0 0 24 0.977822278878331
0 0 0 0 0 10240 0 4608 0 0 0 27 0.978878179395313
0 0 0 0 0 10240 0 5120 0 0 0 30 0.979896161202685
0 0 0 0 0 10240 0 5632 0 0 0 33 0.980865791910691
0 0 0 0 0 10240 0 6144 0 0 0 36 0.981781507596056
0 0 0 0 0 10240 0 6656 0 0 0 39 0.982641205359921
0 0 0 0 0 10240 0 7168 0 0 0 42 0.983445124788971
0 0 0 0 0 10240 0 7680 0 0 0 45 0.984195009109493
0 0 0 0 0 10240 0 8192 0 0 0 48 0.984893502313972
0 0 0 0 0 10240 0 8704 0 0 0 51 0.985543730584329
0 0 0 0 0 10240 0 9216 0 0 0 54 0.986149020718892
0 0 0 0 0 10240 0 9728 0 0 0 57 0.986712716953883
0 0 0 0 0 10240 0 10240 0 0 0 60 0.987238066625416
# 1D ASCII output created by CarpetIOASCII
#
# betax d (betax)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betax (betax)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betax (betax)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betax (betax)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betax (betax)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betax x (betax)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betax y (betax)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betax z (betax)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# betay d (betay)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betay (betay)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betay (betay)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betay (betay)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betay (betay)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betay x (betay)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betay y (betay)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betay z (betay)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# betaz d (betaz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betaz (betaz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betaz (betaz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betaz (betaz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::betaz (betaz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betaz x (betaz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betaz y (betaz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# betaz z (betaz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# eps d (eps)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::eps (eps)
# 1:iteration 2:time 3:data
0 0 0.0395773053415419
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::eps (eps)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::eps (eps)
# 1:iteration 2:time 3:data
0 0 2.74350886431042e-05
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::eps (eps)
# 1:iteration 2:time 3:data
0 0 0.000711052473401356
# 1D ASCII output created by CarpetIOASCII
#
# eps x (eps)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0.00441047742504047
0 0 0 0 0 4096 0 0 0 -36 0 0 0.0186863594402129
0 0 0 0 0 4608 0 0 0 -33 0 0 0.0333699562448265
0 0 0 0 0 5120 0 0 0 -30 0 0 0.0395773053415419
0 0 0 0 0 5632 0 0 0 -27 0 0 0.0324063385270614
0 0 0 0 0 6144 0 0 0 -24 0 0 0.0177142121005451
0 0 0 0 0 6656 0 0 0 -21 0 0 0.00403920939339777
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# eps y (eps)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# eps z (eps)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# gxx d (gxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.17340342514937
0 0 0 0 0 512 512 512 0 -57 3 3 1.18352015377882
0 0 0 0 0 1024 1024 1024 0 -54 6 6 1.19266290100926
0 0 0 0 0 1536 1536 1536 0 -51 9 9 1.19938658090841
0 0 0 0 0 2048 2048 2048 0 -48 12 12 1.2026333443445
0 0 0 0 0 2560 2560 2560 0 -45 15 15 1.20258189529904
0 0 0 0 0 3072 3072 3072 0 -42 18 18 1.20030431604169
0 0 0 0 0 3584 3584 3584 0 -39 21 21 1.1968318049508
0 0 0 0 0 4096 4096 4096 0 -36 24 24 1.1928977891403
0 0 0 0 0 4608 4608 4608 0 -33 27 27 1.18881520922047
0 0 0 0 0 5120 5120 5120 0 -30 30 30 1.18467063844599
0 0 0 0 0 5632 5632 5632 0 -27 33 33 1.18037503290425
0 0 0 0 0 6144 6144 6144 0 -24 36 36 1.17590263190488
0 0 0 0 0 6656 6656 6656 0 -21 39 39 1.17120004748409
0 0 0 0 0 7168 7168 7168 0 -18 42 42 1.16632049032981
0 0 0 0 0 7680 7680 7680 0 -15 45 45 1.16122392126254
0 0 0 0 0 8192 8192 8192 0 -12 48 48 1.1559949431607
0 0 0 0 0 8704 8704 8704 0 -9 51 51 1.15068543778611
0 0 0 0 0 9216 9216 9216 0 -6 54 54 1.1453567523134
0 0 0 0 0 9728 9728 9728 0 -3 57 57 1.14007021133872
0 0 0 0 0 10240 10240 10240 0 0 60 60 1.13487745782187
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxx (gxx)
# 1:iteration 2:time 3:data
0 0 686.366862226809
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxx (gxx)
# 1:iteration 2:time 3:data
0 0 1.10197490519566
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxx (gxx)
# 1:iteration 2:time 3:data
0 0 1.25144733968352
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxx (gxx)
# 1:iteration 2:time 3:data
0 0 2.98983328740263
# 1D ASCII output created by CarpetIOASCII
#
# gxx x (gxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.17340342514937
0 0 0 0 0 512 0 0 0 -57 0 0 1.18447526493991
0 0 0 0 0 1024 0 0 0 -54 0 0 1.19767184453747
0 0 0 0 0 1536 0 0 0 -51 0 0 1.21371753684595
0 0 0 0 0 2048 0 0 0 -48 0 0 1.23339587681581
0 0 0 0 0 2560 0 0 0 -45 0 0 1.25882786886801
0 0 0 0 0 3072 0 0 0 -42 0 0 1.29585901049065
0 0 0 0 0 3584 0 0 0 -39 0 0 1.35706689642413
0 0 0 0 0 4096 0 0 0 -36 0 0 1.4492746789576
0 0 0 0 0 4608 0 0 0 -33 0 0 1.54041297115361
0 0 0 0 0 5120 0 0 0 -30 0 0 1.5876224988402
0 0 0 0 0 5632 0 0 0 -27 0 0 1.56387698254415
0 0 0 0 0 6144 0 0 0 -24 0 0 1.48922205453986
0 0 0 0 0 6656 0 0 0 -21 0 0 1.41832629725117
0 0 0 0 0 7168 0 0 0 -18 0 0 1.37917569255764
0 0 0 0 0 7680 0 0 0 -15 0 0 1.3654689198856
0 0 0 0 0 8192 0 0 0 -12 0 0 1.3660755830698
0 0 0 0 0 8704 0 0 0 -9 0 0 1.37487792034644
0 0 0 0 0 9216 0 0 0 -6 0 0 1.38979685244917
0 0 0 0 0 9728 0 0 0 -3 0 0 1.41227533882004
0 0 0 0 0 10240 0 0 0 0 0 0 1.44375252068931
0 0 0 0 0 10752 0 0 0 3 0 0 1.48730246887666
0 0 0 0 0 11264 0 0 0 6 0 0 1.54592744878001
0 0 0 0 0 11776 0 0 0 9 0 0 1.62620598048945
0 0 0 0 0 12288 0 0 0 12 0 0 1.73845166844476
0 0 0 0 0 12800 0 0 0 15 0 0 1.90809934189492
0 0 0 0 0 13312 0 0 0 18 0 0 2.18921554531053
0 0 0 0 0 13824 0 0 0 21 0 0 2.73069816036964
0 0 0 0 0 14336 0 0 0 24 0 0 4.11142803439409
0 0 0 0 0 14848 0 0 0 27 0 0 11.4663573492773
0 0 0 0 0 15360 0 0 0 30 0 0 686.366862226809
0 0 0 0 0 15872 0 0 0 33 0 0 11.4515925145962
0 0 0 0 0 16384 0 0 0 36 0 0 4.09571989172296
0 0 0 0 0 16896 0 0 0 39 0 0 2.71344430482964
0 0 0 0 0 17408 0 0 0 42 0 0 2.17046284422645
0 0 0 0 0 17920 0 0 0 45 0 0 1.88603031613218
0 0 0 0 0 18432 0 0 0 48 0 0 1.7122655283149
0 0 0 0 0 18944 0 0 0 51 0 0 1.59546731612092
0 0 0 0 0 19456 0 0 0 54 0 0 1.51168992005407
0 0 0 0 0 19968 0 0 0 57 0 0 1.44870600040929
0 0 0 0 0 20480 0 0 0 60 0 0 1.39964308195822
# 1D ASCII output created by CarpetIOASCII
#
# gxx y (gxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44375252068931
0 0 0 0 0 10240 512 0 0 0 3 0 1.44120083184873
0 0 0 0 0 10240 1024 0 0 0 6 0 1.43396533403779
0 0 0 0 0 10240 1536 0 0 0 9 0 1.42265075064451
0 0 0 0 0 10240 2048 0 0 0 12 0 1.40853377533237
0 0 0 0 0 10240 2560 0 0 0 15 0 1.39195148173754
0 0 0 0 0 10240 3072 0 0 0 18 0 1.37386724169529
0 0 0 0 0 10240 3584 0 0 0 21 0 1.35524939721954
0 0 0 0 0 10240 4096 0 0 0 24 0 1.33673005881713
0 0 0 0 0 10240 4608 0 0 0 27 0 1.31891305005842
0 0 0 0 0 10240 5120 0 0 0 30 0 1.3018806583135
0 0 0 0 0 10240 5632 0 0 0 33 0 1.28566167323213
0 0 0 0 0 10240 6144 0 0 0 36 0 1.27067033681416
0 0 0 0 0 10240 6656 0 0 0 39 0 1.25671423316781
0 0 0 0 0 10240 7168 0 0 0 42 0 1.24364460618567
0 0 0 0 0 10240 7680 0 0 0 45 0 1.23166071037658
0 0 0 0 0 10240 8192 0 0 0 48 0 1.22059232426535
0 0 0 0 0 10240 8704 0 0 0 51 0 1.21036020663183
0 0 0 0 0 10240 9216 0 0 0 54 0 1.20080790499371
0 0 0 0 0 10240 9728 0 0 0 57 0 1.19205484566278
0 0 0 0 0 10240 10240 0 0 0 60 0 1.18392608737795
# 1D ASCII output created by CarpetIOASCII
#
# gxx z (gxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44375252068931
0 0 0 0 0 10240 0 512 0 0 0 3 1.44120083184873
0 0 0 0 0 10240 0 1024 0 0 0 6 1.43396533403779
0 0 0 0 0 10240 0 1536 0 0 0 9 1.42265075064451
0 0 0 0 0 10240 0 2048 0 0 0 12 1.40853377533236
0 0 0 0 0 10240 0 2560 0 0 0 15 1.39195148173754
0 0 0 0 0 10240 0 3072 0 0 0 18 1.37386724169529
0 0 0 0 0 10240 0 3584 0 0 0 21 1.35524939721954
0 0 0 0 0 10240 0 4096 0 0 0 24 1.33673005881713
0 0 0 0 0 10240 0 4608 0 0 0 27 1.31891305005842
0 0 0 0 0 10240 0 5120 0 0 0 30 1.3018806583135
0 0 0 0 0 10240 0 5632 0 0 0 33 1.28566167323213
0 0 0 0 0 10240 0 6144 0 0 0 36 1.27067033681416
0 0 0 0 0 10240 0 6656 0 0 0 39 1.25671423316781
0 0 0 0 0 10240 0 7168 0 0 0 42 1.24364460618567
0 0 0 0 0 10240 0 7680 0 0 0 45 1.23166071037658
0 0 0 0 0 10240 0 8192 0 0 0 48 1.22059232426535
0 0 0 0 0 10240 0 8704 0 0 0 51 1.21036020663183
0 0 0 0 0 10240 0 9216 0 0 0 54 1.20080790499371
0 0 0 0 0 10240 0 9728 0 0 0 57 1.19205484566278
0 0 0 0 0 10240 0 10240 0 0 0 60 1.18392608737795
# 1D ASCII output created by CarpetIOASCII
#
# gxy d (gxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxy (gxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxy (gxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxy (gxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxy (gxy)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxy x (gxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxy y (gxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxy z (gxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# gxz d (gxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxz (gxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxz (gxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxz (gxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gxz (gxz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxz x (gxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxz y (gxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gxz z (gxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# gyy d (gyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.17340342514937
0 0 0 0 0 512 512 512 0 -57 3 3 1.18352015377882
0 0 0 0 0 1024 1024 1024 0 -54 6 6 1.19266290100926
0 0 0 0 0 1536 1536 1536 0 -51 9 9 1.19938658090841
0 0 0 0 0 2048 2048 2048 0 -48 12 12 1.2026333443445
0 0 0 0 0 2560 2560 2560 0 -45 15 15 1.20258189529904
0 0 0 0 0 3072 3072 3072 0 -42 18 18 1.20030431604169
0 0 0 0 0 3584 3584 3584 0 -39 21 21 1.1968318049508
0 0 0 0 0 4096 4096 4096 0 -36 24 24 1.1928977891403
0 0 0 0 0 4608 4608 4608 0 -33 27 27 1.18881520922047
0 0 0 0 0 5120 5120 5120 0 -30 30 30 1.18467063844599
0 0 0 0 0 5632 5632 5632 0 -27 33 33 1.18037503290425
0 0 0 0 0 6144 6144 6144 0 -24 36 36 1.17590263190488
0 0 0 0 0 6656 6656 6656 0 -21 39 39 1.17120004748409
0 0 0 0 0 7168 7168 7168 0 -18 42 42 1.16632049032981
0 0 0 0 0 7680 7680 7680 0 -15 45 45 1.16122392126254
0 0 0 0 0 8192 8192 8192 0 -12 48 48 1.1559949431607
0 0 0 0 0 8704 8704 8704 0 -9 51 51 1.15068543778611
0 0 0 0 0 9216 9216 9216 0 -6 54 54 1.1453567523134
0 0 0 0 0 9728 9728 9728 0 -3 57 57 1.14007021133872
0 0 0 0 0 10240 10240 10240 0 0 60 60 1.13487745782187
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyy (gyy)
# 1:iteration 2:time 3:data
0 0 686.366862226809
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyy (gyy)
# 1:iteration 2:time 3:data
0 0 1.10197490519566
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyy (gyy)
# 1:iteration 2:time 3:data
0 0 1.25144733968352
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyy (gyy)
# 1:iteration 2:time 3:data
0 0 2.98983328740263
# 1D ASCII output created by CarpetIOASCII
#
# gyy x (gyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.17340342514937
0 0 0 0 0 512 0 0 0 -57 0 0 1.18447526493991
0 0 0 0 0 1024 0 0 0 -54 0 0 1.19767184453747
0 0 0 0 0 1536 0 0 0 -51 0 0 1.21371753684595
0 0 0 0 0 2048 0 0 0 -48 0 0 1.23339587681581
0 0 0 0 0 2560 0 0 0 -45 0 0 1.25882786886801
0 0 0 0 0 3072 0 0 0 -42 0 0 1.29585901049065
0 0 0 0 0 3584 0 0 0 -39 0 0 1.35706689642413
0 0 0 0 0 4096 0 0 0 -36 0 0 1.4492746789576
0 0 0 0 0 4608 0 0 0 -33 0 0 1.54041297115361
0 0 0 0 0 5120 0 0 0 -30 0 0 1.5876224988402
0 0 0 0 0 5632 0 0 0 -27 0 0 1.56387698254415
0 0 0 0 0 6144 0 0 0 -24 0 0 1.48922205453986
0 0 0 0 0 6656 0 0 0 -21 0 0 1.41832629725117
0 0 0 0 0 7168 0 0 0 -18 0 0 1.37917569255764
0 0 0 0 0 7680 0 0 0 -15 0 0 1.3654689198856
0 0 0 0 0 8192 0 0 0 -12 0 0 1.3660755830698
0 0 0 0 0 8704 0 0 0 -9 0 0 1.37487792034644
0 0 0 0 0 9216 0 0 0 -6 0 0 1.38979685244917
0 0 0 0 0 9728 0 0 0 -3 0 0 1.41227533882004
0 0 0 0 0 10240 0 0 0 0 0 0 1.44375252068931
0 0 0 0 0 10752 0 0 0 3 0 0 1.48730246887666
0 0 0 0 0 11264 0 0 0 6 0 0 1.54592744878001
0 0 0 0 0 11776 0 0 0 9 0 0 1.62620598048945
0 0 0 0 0 12288 0 0 0 12 0 0 1.73845166844476
0 0 0 0 0 12800 0 0 0 15 0 0 1.90809934189492
0 0 0 0 0 13312 0 0 0 18 0 0 2.18921554531053
0 0 0 0 0 13824 0 0 0 21 0 0 2.73069816036964
0 0 0 0 0 14336 0 0 0 24 0 0 4.11142803439409
0 0 0 0 0 14848 0 0 0 27 0 0 11.4663573492773
0 0 0 0 0 15360 0 0 0 30 0 0 686.366862226809
0 0 0 0 0 15872 0 0 0 33 0 0 11.4515925145962
0 0 0 0 0 16384 0 0 0 36 0 0 4.09571989172296
0 0 0 0 0 16896 0 0 0 39 0 0 2.71344430482964
0 0 0 0 0 17408 0 0 0 42 0 0 2.17046284422645
0 0 0 0 0 17920 0 0 0 45 0 0 1.88603031613218
0 0 0 0 0 18432 0 0 0 48 0 0 1.7122655283149
0 0 0 0 0 18944 0 0 0 51 0 0 1.59546731612092
0 0 0 0 0 19456 0 0 0 54 0 0 1.51168992005407
0 0 0 0 0 19968 0 0 0 57 0 0 1.44870600040929
0 0 0 0 0 20480 0 0 0 60 0 0 1.39964308195822
# 1D ASCII output created by CarpetIOASCII
#
# gyy y (gyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44375252068931
0 0 0 0 0 10240 512 0 0 0 3 0 1.44120083184873
0 0 0 0 0 10240 1024 0 0 0 6 0 1.43396533403779
0 0 0 0 0 10240 1536 0 0 0 9 0 1.42265075064451
0 0 0 0 0 10240 2048 0 0 0 12 0 1.40853377533237
0 0 0 0 0 10240 2560 0 0 0 15 0 1.39195148173754
0 0 0 0 0 10240 3072 0 0 0 18 0 1.37386724169529
0 0 0 0 0 10240 3584 0 0 0 21 0 1.35524939721954
0 0 0 0 0 10240 4096 0 0 0 24 0 1.33673005881713
0 0 0 0 0 10240 4608 0 0 0 27 0 1.31891305005842
0 0 0 0 0 10240 5120 0 0 0 30 0 1.3018806583135
0 0 0 0 0 10240 5632 0 0 0 33 0 1.28566167323213
0 0 0 0 0 10240 6144 0 0 0 36 0 1.27067033681416
0 0 0 0 0 10240 6656 0 0 0 39 0 1.25671423316781
0 0 0 0 0 10240 7168 0 0 0 42 0 1.24364460618567
0 0 0 0 0 10240 7680 0 0 0 45 0 1.23166071037658
0 0 0 0 0 10240 8192 0 0 0 48 0 1.22059232426535
0 0 0 0 0 10240 8704 0 0 0 51 0 1.21036020663183
0 0 0 0 0 10240 9216 0 0 0 54 0 1.20080790499371
0 0 0 0 0 10240 9728 0 0 0 57 0 1.19205484566278
0 0 0 0 0 10240 10240 0 0 0 60 0 1.18392608737795
# 1D ASCII output created by CarpetIOASCII
#
# gyy z (gyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44375252068931
0 0 0 0 0 10240 0 512 0 0 0 3 1.44120083184873
0 0 0 0 0 10240 0 1024 0 0 0 6 1.43396533403779
0 0 0 0 0 10240 0 1536 0 0 0 9 1.42265075064451
0 0 0 0 0 10240 0 2048 0 0 0 12 1.40853377533236
0 0 0 0 0 10240 0 2560 0 0 0 15 1.39195148173754
0 0 0 0 0 10240 0 3072 0 0 0 18 1.37386724169529
0 0 0 0 0 10240 0 3584 0 0 0 21 1.35524939721954
0 0 0 0 0 10240 0 4096 0 0 0 24 1.33673005881713
0 0 0 0 0 10240 0 4608 0 0 0 27 1.31891305005842
0 0 0 0 0 10240 0 5120 0 0 0 30 1.3018806583135
0 0 0 0 0 10240 0 5632 0 0 0 33 1.28566167323213
0 0 0 0 0 10240 0 6144 0 0 0 36 1.27067033681416
0 0 0 0 0 10240 0 6656 0 0 0 39 1.25671423316781
0 0 0 0 0 10240 0 7168 0 0 0 42 1.24364460618567
0 0 0 0 0 10240 0 7680 0 0 0 45 1.23166071037658
0 0 0 0 0 10240 0 8192 0 0 0 48 1.22059232426535
0 0 0 0 0 10240 0 8704 0 0 0 51 1.21036020663183
0 0 0 0 0 10240 0 9216 0 0 0 54 1.20080790499371
0 0 0 0 0 10240 0 9728 0 0 0 57 1.19205484566278
0 0 0 0 0 10240 0 10240 0 0 0 60 1.18392608737795
# 1D ASCII output created by CarpetIOASCII
#
# gyz d (gyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyz (gyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyz (gyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyz (gyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gyz (gyz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gyz x (gyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gyz y (gyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# gyz z (gyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# gzz d (gzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.17340342514937
0 0 0 0 0 512 512 512 0 -57 3 3 1.18352015377882
0 0 0 0 0 1024 1024 1024 0 -54 6 6 1.19266290100926
0 0 0 0 0 1536 1536 1536 0 -51 9 9 1.19938658090841
0 0 0 0 0 2048 2048 2048 0 -48 12 12 1.2026333443445
0 0 0 0 0 2560 2560 2560 0 -45 15 15 1.20258189529904
0 0 0 0 0 3072 3072 3072 0 -42 18 18 1.20030431604169
0 0 0 0 0 3584 3584 3584 0 -39 21 21 1.1968318049508
0 0 0 0 0 4096 4096 4096 0 -36 24 24 1.1928977891403
0 0 0 0 0 4608 4608 4608 0 -33 27 27 1.18881520922047
0 0 0 0 0 5120 5120 5120 0 -30 30 30 1.18467063844599
0 0 0 0 0 5632 5632 5632 0 -27 33 33 1.18037503290425
0 0 0 0 0 6144 6144 6144 0 -24 36 36 1.17590263190488
0 0 0 0 0 6656 6656 6656 0 -21 39 39 1.17120004748409
0 0 0 0 0 7168 7168 7168 0 -18 42 42 1.16632049032981
0 0 0 0 0 7680 7680 7680 0 -15 45 45 1.16122392126254
0 0 0 0 0 8192 8192 8192 0 -12 48 48 1.1559949431607
0 0 0 0 0 8704 8704 8704 0 -9 51 51 1.15068543778611
0 0 0 0 0 9216 9216 9216 0 -6 54 54 1.1453567523134
0 0 0 0 0 9728 9728 9728 0 -3 57 57 1.14007021133872
0 0 0 0 0 10240 10240 10240 0 0 60 60 1.13487745782187
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gzz (gzz)
# 1:iteration 2:time 3:data
0 0 686.366862226809
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gzz (gzz)
# 1:iteration 2:time 3:data
0 0 1.10197490519566
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gzz (gzz)
# 1:iteration 2:time 3:data
0 0 1.25144733968352
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::gzz (gzz)
# 1:iteration 2:time 3:data
0 0 2.98983328740263
# 1D ASCII output created by CarpetIOASCII
#
# gzz x (gzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1.17340342514937
0 0 0 0 0 512 0 0 0 -57 0 0 1.18447526493991
0 0 0 0 0 1024 0 0 0 -54 0 0 1.19767184453747
0 0 0 0 0 1536 0 0 0 -51 0 0 1.21371753684595
0 0 0 0 0 2048 0 0 0 -48 0 0 1.23339587681581
0 0 0 0 0 2560 0 0 0 -45 0 0 1.25882786886801
0 0 0 0 0 3072 0 0 0 -42 0 0 1.29585901049065
0 0 0 0 0 3584 0 0 0 -39 0 0 1.35706689642413
0 0 0 0 0 4096 0 0 0 -36 0 0 1.4492746789576
0 0 0 0 0 4608 0 0 0 -33 0 0 1.54041297115361
0 0 0 0 0 5120 0 0 0 -30 0 0 1.5876224988402
0 0 0 0 0 5632 0 0 0 -27 0 0 1.56387698254415
0 0 0 0 0 6144 0 0 0 -24 0 0 1.48922205453986
0 0 0 0 0 6656 0 0 0 -21 0 0 1.41832629725117
0 0 0 0 0 7168 0 0 0 -18 0 0 1.37917569255764
0 0 0 0 0 7680 0 0 0 -15 0 0 1.3654689198856
0 0 0 0 0 8192 0 0 0 -12 0 0 1.3660755830698
0 0 0 0 0 8704 0 0 0 -9 0 0 1.37487792034644
0 0 0 0 0 9216 0 0 0 -6 0 0 1.38979685244917
0 0 0 0 0 9728 0 0 0 -3 0 0 1.41227533882004
0 0 0 0 0 10240 0 0 0 0 0 0 1.44375252068931
0 0 0 0 0 10752 0 0 0 3 0 0 1.48730246887666
0 0 0 0 0 11264 0 0 0 6 0 0 1.54592744878001
0 0 0 0 0 11776 0 0 0 9 0 0 1.62620598048945
0 0 0 0 0 12288 0 0 0 12 0 0 1.73845166844476
0 0 0 0 0 12800 0 0 0 15 0 0 1.90809934189492
0 0 0 0 0 13312 0 0 0 18 0 0 2.18921554531053
0 0 0 0 0 13824 0 0 0 21 0 0 2.73069816036964
0 0 0 0 0 14336 0 0 0 24 0 0 4.11142803439409
0 0 0 0 0 14848 0 0 0 27 0 0 11.4663573492773
0 0 0 0 0 15360 0 0 0 30 0 0 686.366862226809
0 0 0 0 0 15872 0 0 0 33 0 0 11.4515925145962
0 0 0 0 0 16384 0 0 0 36 0 0 4.09571989172296
0 0 0 0 0 16896 0 0 0 39 0 0 2.71344430482964
0 0 0 0 0 17408 0 0 0 42 0 0 2.17046284422645
0 0 0 0 0 17920 0 0 0 45 0 0 1.88603031613218
0 0 0 0 0 18432 0 0 0 48 0 0 1.7122655283149
0 0 0 0 0 18944 0 0 0 51 0 0 1.59546731612092
0 0 0 0 0 19456 0 0 0 54 0 0 1.51168992005407
0 0 0 0 0 19968 0 0 0 57 0 0 1.44870600040929
0 0 0 0 0 20480 0 0 0 60 0 0 1.39964308195822
# 1D ASCII output created by CarpetIOASCII
#
# gzz y (gzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44375252068931
0 0 0 0 0 10240 512 0 0 0 3 0 1.44120083184873
0 0 0 0 0 10240 1024 0 0 0 6 0 1.43396533403779
0 0 0 0 0 10240 1536 0 0 0 9 0 1.42265075064451
0 0 0 0 0 10240 2048 0 0 0 12 0 1.40853377533237
0 0 0 0 0 10240 2560 0 0 0 15 0 1.39195148173754
0 0 0 0 0 10240 3072 0 0 0 18 0 1.37386724169529
0 0 0 0 0 10240 3584 0 0 0 21 0 1.35524939721954
0 0 0 0 0 10240 4096 0 0 0 24 0 1.33673005881713
0 0 0 0 0 10240 4608 0 0 0 27 0 1.31891305005842
0 0 0 0 0 10240 5120 0 0 0 30 0 1.3018806583135
0 0 0 0 0 10240 5632 0 0 0 33 0 1.28566167323213
0 0 0 0 0 10240 6144 0 0 0 36 0 1.27067033681416
0 0 0 0 0 10240 6656 0 0 0 39 0 1.25671423316781
0 0 0 0 0 10240 7168 0 0 0 42 0 1.24364460618567
0 0 0 0 0 10240 7680 0 0 0 45 0 1.23166071037658
0 0 0 0 0 10240 8192 0 0 0 48 0 1.22059232426535
0 0 0 0 0 10240 8704 0 0 0 51 0 1.21036020663183
0 0 0 0 0 10240 9216 0 0 0 54 0 1.20080790499371
0 0 0 0 0 10240 9728 0 0 0 57 0 1.19205484566278
0 0 0 0 0 10240 10240 0 0 0 60 0 1.18392608737795
# 1D ASCII output created by CarpetIOASCII
#
# gzz z (gzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1.44375252068931
0 0 0 0 0 10240 0 512 0 0 0 3 1.44120083184873
0 0 0 0 0 10240 0 1024 0 0 0 6 1.43396533403779
0 0 0 0 0 10240 0 1536 0 0 0 9 1.42265075064451
0 0 0 0 0 10240 0 2048 0 0 0 12 1.40853377533236
0 0 0 0 0 10240 0 2560 0 0 0 15 1.39195148173754
0 0 0 0 0 10240 0 3072 0 0 0 18 1.37386724169529
0 0 0 0 0 10240 0 3584 0 0 0 21 1.35524939721954
0 0 0 0 0 10240 0 4096 0 0 0 24 1.33673005881713
0 0 0 0 0 10240 0 4608 0 0 0 27 1.31891305005842
0 0 0 0 0 10240 0 5120 0 0 0 30 1.3018806583135
0 0 0 0 0 10240 0 5632 0 0 0 33 1.28566167323213
0 0 0 0 0 10240 0 6144 0 0 0 36 1.27067033681416
0 0 0 0 0 10240 0 6656 0 0 0 39 1.25671423316781
0 0 0 0 0 10240 0 7168 0 0 0 42 1.24364460618567
0 0 0 0 0 10240 0 7680 0 0 0 45 1.23166071037658
0 0 0 0 0 10240 0 8192 0 0 0 48 1.22059232426535
0 0 0 0 0 10240 0 8704 0 0 0 51 1.21036020663183
0 0 0 0 0 10240 0 9216 0 0 0 54 1.20080790499371
0 0 0 0 0 10240 0 9728 0 0 0 57 1.19205484566278
0 0 0 0 0 10240 0 10240 0 0 0 60 1.18392608737795
# 1D ASCII output created by CarpetIOASCII
#
# kxx d (kxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxx (kxx)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxx (kxx)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxx (kxx)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxx (kxx)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxx x (kxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxx y (kxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxx z (kxx)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# kxy d (kxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxy (kxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxy (kxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxy (kxy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxy (kxy)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxy x (kxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxy y (kxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxy z (kxy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# kxz d (kxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxz (kxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxz (kxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxz (kxz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kxz (kxz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxz x (kxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxz y (kxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kxz z (kxz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# kyy d (kyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyy (kyy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyy (kyy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyy (kyy)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyy (kyy)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyy x (kyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyy y (kyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyy z (kyy)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# kyz d (kyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyz (kyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyz (kyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyz (kyz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kyz (kyz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyz x (kyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyz y (kyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kyz z (kyz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# kzz d (kzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kzz (kzz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kzz (kzz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kzz (kzz)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# ADMBASE::kzz (kzz)
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kzz x (kzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kzz y (kzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# kzz z (kzz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# press d (press)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::press (press)
# 1:iteration 2:time 3:data
0 0 1.56636309809764e-05
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::press (press)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::press (press)
# 1:iteration 2:time 3:data
0 0 5.05595619930186e-09
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::press (press)
# 1:iteration 2:time 3:data
0 0 1.77988083793962e-07
# 1D ASCII output created by CarpetIOASCII
#
# press x (press)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 1.94523111167916e-07
0 0 0 0 0 4096 0 0 0 -36 0 0 3.49180029128833e-06
0 0 0 0 0 4608 0 0 0 -33 0 0 1.11355397978164e-05
0 0 0 0 0 5120 0 0 0 -30 0 0 1.56636309809764e-05
0 0 0 0 0 5632 0 0 0 -27 0 0 1.0501707767305e-05
0 0 0 0 0 6144 0 0 0 -24 0 0 3.13793310343097e-06
0 0 0 0 0 6656 0 0 0 -21 0 0 1.63152125237128e-07
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# press y (press)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# press z (press)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# puncture_u d (puncture_u)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0.0130091716182025
0 0 0 0 0 512 512 512 0 -57 3 3 0.014321545440819
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0.0154204004448552
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0.0160112861133035
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0.0158902810445355
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0.0151226504260598
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0.0139650638324822
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0.0126635049993207
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0.0113975570213326
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0.0102517793551712
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0.00925576413335204
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0.00839348170020259
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0.00765519127883082
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0.00701788859138489
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0.00647634879851501
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0.00600060984916485
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0.00558645108314117
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0.00522227630464349
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0.00489998526362965
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0.00461386973793455
0 0 0 0 0 10240 10240 10240 0 0 60 60 0.00435897391109113
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# TWOPUNCTURES::puncture_u (puncture_u)
# 1:iteration 2:time 3:data
0 0 0.0808345262411888
# Scalar ASCII output created by CarpetIOScalar
#
# TWOPUNCTURES::puncture_u (puncture_u)
# 1:iteration 2:time 3:data
0 0 0.00316994132432474
# Scalar ASCII output created by CarpetIOScalar
#
# TWOPUNCTURES::puncture_u (puncture_u)
# 1:iteration 2:time 3:data
0 0 0.00731813623838801
# Scalar ASCII output created by CarpetIOScalar
#
# TWOPUNCTURES::puncture_u (puncture_u)
# 1:iteration 2:time 3:data
0 0 0.00850243965420273
# 1D ASCII output created by CarpetIOASCII
#
# puncture_u x (puncture_u)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0.0130091716182025
0 0 0 0 0 512 0 0 0 -57 0 0 0.0144978063958022
0 0 0 0 0 1024 0 0 0 -54 0 0 0.0163652129291403
0 0 0 0 0 1536 0 0 0 -51 0 0 0.0187492996963606
0 0 0 0 0 2048 0 0 0 -48 0 0 0.0217910092286605
0 0 0 0 0 2560 0 0 0 -45 0 0 0.0258998732117248
0 0 0 0 0 3072 0 0 0 -42 0 0 0.0322164042443747
0 0 0 0 0 3584 0 0 0 -39 0 0 0.0430883383096973
0 0 0 0 0 4096 0 0 0 -36 0 0 0.0593259546539905
0 0 0 0 0 4608 0 0 0 -33 0 0 0.0743792827784682
0 0 0 0 0 5120 0 0 0 -30 0 0 0.0808345262411888
0 0 0 0 0 5632 0 0 0 -27 0 0 0.07442058039121
0 0 0 0 0 6144 0 0 0 -24 0 0 0.0583922847490564
0 0 0 0 0 6656 0 0 0 -21 0 0 0.0422800996850387
0 0 0 0 0 7168 0 0 0 -18 0 0 0.0316062492926163
0 0 0 0 0 7680 0 0 0 -15 0 0 0.0254314038977294
0 0 0 0 0 8192 0 0 0 -12 0 0 0.0215831976560582
0 0 0 0 0 8704 0 0 0 -9 0 0 0.018741784758895
0 0 0 0 0 9216 0 0 0 -6 0 0 0.0163255382660966
0 0 0 0 0 9728 0 0 0 -3 0 0 0.0143763210519737
0 0 0 0 0 10240 0 0 0 0 0 0 0.0128247451351201
0 0 0 0 0 10752 0 0 0 3 0 0 0.011739834356394
0 0 0 0 0 11264 0 0 0 6 0 0 0.010890869116467
0 0 0 0 0 11776 0 0 0 9 0 0 0.0102122337467781
0 0 0 0 0 12288 0 0 0 12 0 0 0.00937221889390502
0 0 0 0 0 12800 0 0 0 15 0 0 0.00863741780959683
0 0 0 0 0 13312 0 0 0 18 0 0 0.00805467724490476
0 0 0 0 0 13824 0 0 0 21 0 0 0.00771139900239788
0 0 0 0 0 14336 0 0 0 24 0 0 0.00729459031803058
0 0 0 0 0 14848 0 0 0 27 0 0 0.00682998012851579
0 0 0 0 0 15360 0 0 0 30 0 0 0.00661510407144292
0 0 0 0 0 15872 0 0 0 33 0 0 0.00623731508880679
0 0 0 0 0 16384 0 0 0 36 0 0 0.00593253892521191
0 0 0 0 0 16896 0 0 0 39 0 0 0.00567598618032644
0 0 0 0 0 17408 0 0 0 42 0 0 0.00544138936297847
0 0 0 0 0 17920 0 0 0 45 0 0 0.0052241940881605
0 0 0 0 0 18432 0 0 0 48 0 0 0.00502353902579797
0 0 0 0 0 18944 0 0 0 51 0 0 0.00483764765262119
0 0 0 0 0 19456 0 0 0 54 0 0 0.00466515069006339
0 0 0 0 0 19968 0 0 0 57 0 0 0.00450450150010851
0 0 0 0 0 20480 0 0 0 60 0 0 0.0043546373664384
# 1D ASCII output created by CarpetIOASCII
#
# puncture_u y (puncture_u)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0.0128247451351201
0 0 0 0 0 10240 512 0 0 0 3 0 0.0127536537117543
0 0 0 0 0 10240 1024 0 0 0 6 0 0.0125805691835753
0 0 0 0 0 10240 1536 0 0 0 9 0 0.0123117397002642
0 0 0 0 0 10240 2048 0 0 0 12 0 0.0120380935336914
0 0 0 0 0 10240 2560 0 0 0 15 0 0.0116549616469626
0 0 0 0 0 10240 3072 0 0 0 18 0 0.0111875492908265
0 0 0 0 0 10240 3584 0 0 0 21 0 0.0106893347002228
0 0 0 0 0 10240 4096 0 0 0 24 0 0.0101812567757114
0 0 0 0 0 10240 4608 0 0 0 27 0 0.00971146899560262
0 0 0 0 0 10240 5120 0 0 0 30 0 0.00925038027193534
0 0 0 0 0 10240 5632 0 0 0 33 0 0.00877735689397838
0 0 0 0 0 10240 6144 0 0 0 36 0 0.008366959510775
0 0 0 0 0 10240 6656 0 0 0 39 0 0.00797906970310382
0 0 0 0 0 10240 7168 0 0 0 42 0 0.00758817501432744
0 0 0 0 0 10240 7680 0 0 0 45 0 0.00724643753279889
0 0 0 0 0 10240 8192 0 0 0 48 0 0.00693008790484062
0 0 0 0 0 10240 8704 0 0 0 51 0 0.00663521759617813
0 0 0 0 0 10240 9216 0 0 0 54 0 0.00634101353455646
0 0 0 0 0 10240 9728 0 0 0 57 0 0.00608618571984242
0 0 0 0 0 10240 10240 0 0 0 60 0 0.00584469509619151
# 1D ASCII output created by CarpetIOASCII
#
# puncture_u z (puncture_u)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0.0128247451351201
0 0 0 0 0 10240 0 512 0 0 0 3 0.0127536537117542
0 0 0 0 0 10240 0 1024 0 0 0 6 0.0125805691835753
0 0 0 0 0 10240 0 1536 0 0 0 9 0.0123117397002641
0 0 0 0 0 10240 0 2048 0 0 0 12 0.0120380935336913
0 0 0 0 0 10240 0 2560 0 0 0 15 0.0116549616469625
0 0 0 0 0 10240 0 3072 0 0 0 18 0.0111875492908265
0 0 0 0 0 10240 0 3584 0 0 0 21 0.0106893347002228
0 0 0 0 0 10240 0 4096 0 0 0 24 0.0101812567757114
0 0 0 0 0 10240 0 4608 0 0 0 27 0.00971146899560259
0 0 0 0 0 10240 0 5120 0 0 0 30 0.00925038027193532
0 0 0 0 0 10240 0 5632 0 0 0 33 0.00877735689397835
0 0 0 0 0 10240 0 6144 0 0 0 36 0.00836695951077497
0 0 0 0 0 10240 0 6656 0 0 0 39 0.00797906970310379
0 0 0 0 0 10240 0 7168 0 0 0 42 0.00758817501432742
0 0 0 0 0 10240 0 7680 0 0 0 45 0.00724643753279887
0 0 0 0 0 10240 0 8192 0 0 0 48 0.0069300879048406
0 0 0 0 0 10240 0 8704 0 0 0 51 0.00663521759617811
0 0 0 0 0 10240 0 9216 0 0 0 54 0.00634101353455644
0 0 0 0 0 10240 0 9728 0 0 0 57 0.0060861857198424
0 0 0 0 0 10240 0 10240 0 0 0 60 0.00584469509619149
# 1D ASCII output created by CarpetIOASCII
#
# rho d (rho)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::rho (rho)
# 1:iteration 2:time 3:data
0 0 0.000395773053415419
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::rho (rho)
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::rho (rho)
# 1:iteration 2:time 3:data
0 0 2.74350886431042e-07
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::rho (rho)
# 1:iteration 2:time 3:data
0 0 7.11052473401357e-06
# 1D ASCII output created by CarpetIOASCII
#
# rho x (rho)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 4.41047742504047e-05
0 0 0 0 0 4096 0 0 0 -36 0 0 0.000186863594402129
0 0 0 0 0 4608 0 0 0 -33 0 0 0.000333699562448265
0 0 0 0 0 5120 0 0 0 -30 0 0 0.000395773053415419
0 0 0 0 0 5632 0 0 0 -27 0 0 0.000324063385270614
0 0 0 0 0 6144 0 0 0 -24 0 0 0.000177142121005451
0 0 0 0 0 6656 0 0 0 -21 0 0 4.03920939339777e-05
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# rho y (rho)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# rho z (rho)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[0] d (vel[0])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[0] (vel[0])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[0] (vel[0])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[0] (vel[0])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[0] (vel[0])
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[0] x (vel[0])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[0] y (vel[0])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[0] z (vel[0])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[1] d (vel[1])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[1] (vel[1])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[1] (vel[1])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[1] (vel[1])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[1] (vel[1])
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[1] x (vel[1])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[1] y (vel[1])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[1] z (vel[1])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[2] d (vel[2])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 512 512 0 -57 3 3 0
0 0 0 0 0 1024 1024 1024 0 -54 6 6 0
0 0 0 0 0 1536 1536 1536 0 -51 9 9 0
0 0 0 0 0 2048 2048 2048 0 -48 12 12 0
0 0 0 0 0 2560 2560 2560 0 -45 15 15 0
0 0 0 0 0 3072 3072 3072 0 -42 18 18 0
0 0 0 0 0 3584 3584 3584 0 -39 21 21 0
0 0 0 0 0 4096 4096 4096 0 -36 24 24 0
0 0 0 0 0 4608 4608 4608 0 -33 27 27 0
0 0 0 0 0 5120 5120 5120 0 -30 30 30 0
0 0 0 0 0 5632 5632 5632 0 -27 33 33 0
0 0 0 0 0 6144 6144 6144 0 -24 36 36 0
0 0 0 0 0 6656 6656 6656 0 -21 39 39 0
0 0 0 0 0 7168 7168 7168 0 -18 42 42 0
0 0 0 0 0 7680 7680 7680 0 -15 45 45 0
0 0 0 0 0 8192 8192 8192 0 -12 48 48 0
0 0 0 0 0 8704 8704 8704 0 -9 51 51 0
0 0 0 0 0 9216 9216 9216 0 -6 54 54 0
0 0 0 0 0 9728 9728 9728 0 -3 57 57 0
0 0 0 0 0 10240 10240 10240 0 0 60 60 0
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[2] (vel[2])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[2] (vel[2])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[2] (vel[2])
# 1:iteration 2:time 3:data
0 0 0
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::vel[2] (vel[2])
# 1:iteration 2:time 3:data
0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[2] x (vel[2])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 0
0 0 0 0 0 512 0 0 0 -57 0 0 0
0 0 0 0 0 1024 0 0 0 -54 0 0 0
0 0 0 0 0 1536 0 0 0 -51 0 0 0
0 0 0 0 0 2048 0 0 0 -48 0 0 0
0 0 0 0 0 2560 0 0 0 -45 0 0 0
0 0 0 0 0 3072 0 0 0 -42 0 0 0
0 0 0 0 0 3584 0 0 0 -39 0 0 0
0 0 0 0 0 4096 0 0 0 -36 0 0 0
0 0 0 0 0 4608 0 0 0 -33 0 0 0
0 0 0 0 0 5120 0 0 0 -30 0 0 0
0 0 0 0 0 5632 0 0 0 -27 0 0 0
0 0 0 0 0 6144 0 0 0 -24 0 0 0
0 0 0 0 0 6656 0 0 0 -21 0 0 0
0 0 0 0 0 7168 0 0 0 -18 0 0 0
0 0 0 0 0 7680 0 0 0 -15 0 0 0
0 0 0 0 0 8192 0 0 0 -12 0 0 0
0 0 0 0 0 8704 0 0 0 -9 0 0 0
0 0 0 0 0 9216 0 0 0 -6 0 0 0
0 0 0 0 0 9728 0 0 0 -3 0 0 0
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10752 0 0 0 3 0 0 0
0 0 0 0 0 11264 0 0 0 6 0 0 0
0 0 0 0 0 11776 0 0 0 9 0 0 0
0 0 0 0 0 12288 0 0 0 12 0 0 0
0 0 0 0 0 12800 0 0 0 15 0 0 0
0 0 0 0 0 13312 0 0 0 18 0 0 0
0 0 0 0 0 13824 0 0 0 21 0 0 0
0 0 0 0 0 14336 0 0 0 24 0 0 0
0 0 0 0 0 14848 0 0 0 27 0 0 0
0 0 0 0 0 15360 0 0 0 30 0 0 0
0 0 0 0 0 15872 0 0 0 33 0 0 0
0 0 0 0 0 16384 0 0 0 36 0 0 0
0 0 0 0 0 16896 0 0 0 39 0 0 0
0 0 0 0 0 17408 0 0 0 42 0 0 0
0 0 0 0 0 17920 0 0 0 45 0 0 0
0 0 0 0 0 18432 0 0 0 48 0 0 0
0 0 0 0 0 18944 0 0 0 51 0 0 0
0 0 0 0 0 19456 0 0 0 54 0 0 0
0 0 0 0 0 19968 0 0 0 57 0 0 0
0 0 0 0 0 20480 0 0 0 60 0 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[2] y (vel[2])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 512 0 0 0 3 0 0
0 0 0 0 0 10240 1024 0 0 0 6 0 0
0 0 0 0 0 10240 1536 0 0 0 9 0 0
0 0 0 0 0 10240 2048 0 0 0 12 0 0
0 0 0 0 0 10240 2560 0 0 0 15 0 0
0 0 0 0 0 10240 3072 0 0 0 18 0 0
0 0 0 0 0 10240 3584 0 0 0 21 0 0
0 0 0 0 0 10240 4096 0 0 0 24 0 0
0 0 0 0 0 10240 4608 0 0 0 27 0 0
0 0 0 0 0 10240 5120 0 0 0 30 0 0
0 0 0 0 0 10240 5632 0 0 0 33 0 0
0 0 0 0 0 10240 6144 0 0 0 36 0 0
0 0 0 0 0 10240 6656 0 0 0 39 0 0
0 0 0 0 0 10240 7168 0 0 0 42 0 0
0 0 0 0 0 10240 7680 0 0 0 45 0 0
0 0 0 0 0 10240 8192 0 0 0 48 0 0
0 0 0 0 0 10240 8704 0 0 0 51 0 0
0 0 0 0 0 10240 9216 0 0 0 54 0 0
0 0 0 0 0 10240 9728 0 0 0 57 0 0
0 0 0 0 0 10240 10240 0 0 0 60 0 0
# 1D ASCII output created by CarpetIOASCII
#
# vel[2] z (vel[2])
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 0
0 0 0 0 0 10240 0 512 0 0 0 3 0
0 0 0 0 0 10240 0 1024 0 0 0 6 0
0 0 0 0 0 10240 0 1536 0 0 0 9 0
0 0 0 0 0 10240 0 2048 0 0 0 12 0
0 0 0 0 0 10240 0 2560 0 0 0 15 0
0 0 0 0 0 10240 0 3072 0 0 0 18 0
0 0 0 0 0 10240 0 3584 0 0 0 21 0
0 0 0 0 0 10240 0 4096 0 0 0 24 0
0 0 0 0 0 10240 0 4608 0 0 0 27 0
0 0 0 0 0 10240 0 5120 0 0 0 30 0
0 0 0 0 0 10240 0 5632 0 0 0 33 0
0 0 0 0 0 10240 0 6144 0 0 0 36 0
0 0 0 0 0 10240 0 6656 0 0 0 39 0
0 0 0 0 0 10240 0 7168 0 0 0 42 0
0 0 0 0 0 10240 0 7680 0 0 0 45 0
0 0 0 0 0 10240 0 8192 0 0 0 48 0
0 0 0 0 0 10240 0 8704 0 0 0 51 0
0 0 0 0 0 10240 0 9216 0 0 0 54 0
0 0 0 0 0 10240 0 9728 0 0 0 57 0
0 0 0 0 0 10240 0 10240 0 0 0 60 0
# 1D ASCII output created by CarpetIOASCII
#
# w_lorentz d (w_lorentz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1
0 0 0 0 0 512 512 512 0 -57 3 3 1
0 0 0 0 0 1024 1024 1024 0 -54 6 6 1
0 0 0 0 0 1536 1536 1536 0 -51 9 9 1
0 0 0 0 0 2048 2048 2048 0 -48 12 12 1
0 0 0 0 0 2560 2560 2560 0 -45 15 15 1
0 0 0 0 0 3072 3072 3072 0 -42 18 18 1
0 0 0 0 0 3584 3584 3584 0 -39 21 21 1
0 0 0 0 0 4096 4096 4096 0 -36 24 24 1
0 0 0 0 0 4608 4608 4608 0 -33 27 27 1
0 0 0 0 0 5120 5120 5120 0 -30 30 30 1
0 0 0 0 0 5632 5632 5632 0 -27 33 33 1
0 0 0 0 0 6144 6144 6144 0 -24 36 36 1
0 0 0 0 0 6656 6656 6656 0 -21 39 39 1
0 0 0 0 0 7168 7168 7168 0 -18 42 42 1
0 0 0 0 0 7680 7680 7680 0 -15 45 45 1
0 0 0 0 0 8192 8192 8192 0 -12 48 48 1
0 0 0 0 0 8704 8704 8704 0 -9 51 51 1
0 0 0 0 0 9216 9216 9216 0 -6 54 54 1
0 0 0 0 0 9728 9728 9728 0 -3 57 57 1
0 0 0 0 0 10240 10240 10240 0 0 60 60 1
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::w_lorentz (w_lorentz)
# 1:iteration 2:time 3:data
0 0 1
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::w_lorentz (w_lorentz)
# 1:iteration 2:time 3:data
0 0 1
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::w_lorentz (w_lorentz)
# 1:iteration 2:time 3:data
0 0 1
# Scalar ASCII output created by CarpetIOScalar
#
# HYDROBASE::w_lorentz (w_lorentz)
# 1:iteration 2:time 3:data
0 0 1
# 1D ASCII output created by CarpetIOASCII
#
# w_lorentz x (w_lorentz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 0 0 0 0 -60 0 0 1
0 0 0 0 0 512 0 0 0 -57 0 0 1
0 0 0 0 0 1024 0 0 0 -54 0 0 1
0 0 0 0 0 1536 0 0 0 -51 0 0 1
0 0 0 0 0 2048 0 0 0 -48 0 0 1
0 0 0 0 0 2560 0 0 0 -45 0 0 1
0 0 0 0 0 3072 0 0 0 -42 0 0 1
0 0 0 0 0 3584 0 0 0 -39 0 0 1
0 0 0 0 0 4096 0 0 0 -36 0 0 1
0 0 0 0 0 4608 0 0 0 -33 0 0 1
0 0 0 0 0 5120 0 0 0 -30 0 0 1
0 0 0 0 0 5632 0 0 0 -27 0 0 1
0 0 0 0 0 6144 0 0 0 -24 0 0 1
0 0 0 0 0 6656 0 0 0 -21 0 0 1
0 0 0 0 0 7168 0 0 0 -18 0 0 1
0 0 0 0 0 7680 0 0 0 -15 0 0 1
0 0 0 0 0 8192 0 0 0 -12 0 0 1
0 0 0 0 0 8704 0 0 0 -9 0 0 1
0 0 0 0 0 9216 0 0 0 -6 0 0 1
0 0 0 0 0 9728 0 0 0 -3 0 0 1
0 0 0 0 0 10240 0 0 0 0 0 0 1
0 0 0 0 0 10752 0 0 0 3 0 0 1
0 0 0 0 0 11264 0 0 0 6 0 0 1
0 0 0 0 0 11776 0 0 0 9 0 0 1
0 0 0 0 0 12288 0 0 0 12 0 0 1
0 0 0 0 0 12800 0 0 0 15 0 0 1
0 0 0 0 0 13312 0 0 0 18 0 0 1
0 0 0 0 0 13824 0 0 0 21 0 0 1
0 0 0 0 0 14336 0 0 0 24 0 0 1
0 0 0 0 0 14848 0 0 0 27 0 0 1
0 0 0 0 0 15360 0 0 0 30 0 0 1
0 0 0 0 0 15872 0 0 0 33 0 0 1
0 0 0 0 0 16384 0 0 0 36 0 0 1
0 0 0 0 0 16896 0 0 0 39 0 0 1
0 0 0 0 0 17408 0 0 0 42 0 0 1
0 0 0 0 0 17920 0 0 0 45 0 0 1
0 0 0 0 0 18432 0 0 0 48 0 0 1
0 0 0 0 0 18944 0 0 0 51 0 0 1
0 0 0 0 0 19456 0 0 0 54 0 0 1
0 0 0 0 0 19968 0 0 0 57 0 0 1
0 0 0 0 0 20480 0 0 0 60 0 0 1
# 1D ASCII output created by CarpetIOASCII
#
# w_lorentz y (w_lorentz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1
0 0 0 0 0 10240 512 0 0 0 3 0 1
0 0 0 0 0 10240 1024 0 0 0 6 0 1
0 0 0 0 0 10240 1536 0 0 0 9 0 1
0 0 0 0 0 10240 2048 0 0 0 12 0 1
0 0 0 0 0 10240 2560 0 0 0 15 0 1
0 0 0 0 0 10240 3072 0 0 0 18 0 1
0 0 0 0 0 10240 3584 0 0 0 21 0 1
0 0 0 0 0 10240 4096 0 0 0 24 0 1
0 0 0 0 0 10240 4608 0 0 0 27 0 1
0 0 0 0 0 10240 5120 0 0 0 30 0 1
0 0 0 0 0 10240 5632 0 0 0 33 0 1
0 0 0 0 0 10240 6144 0 0 0 36 0 1
0 0 0 0 0 10240 6656 0 0 0 39 0 1
0 0 0 0 0 10240 7168 0 0 0 42 0 1
0 0 0 0 0 10240 7680 0 0 0 45 0 1
0 0 0 0 0 10240 8192 0 0 0 48 0 1
0 0 0 0 0 10240 8704 0 0 0 51 0 1
0 0 0 0 0 10240 9216 0 0 0 54 0 1
0 0 0 0 0 10240 9728 0 0 0 57 0 1
0 0 0 0 0 10240 10240 0 0 0 60 0 1
# 1D ASCII output created by CarpetIOASCII
#
# w_lorentz z (w_lorentz)
#
# iteration 0 time 0
# time level 0
# refinement level 0 multigrid level 0 map 0 component 0
# column format: 1:it 2:tl 3:rl 4:c 5:ml 6:ix 7:iy 8:iz 9:time 10:x 11:y 12:z 13:data
0 0 0 0 0 10240 0 0 0 0 0 0 1
0 0 0 0 0 10240 0 512 0 0 0 3 1
0 0 0 0 0 10240 0 1024 0 0 0 6 1
0 0 0 0 0 10240 0 1536 0 0 0 9 1
0 0 0 0 0 10240 0 2048 0 0 0 12 1
0 0 0 0 0 10240 0 2560 0 0 0 15 1
0 0 0 0 0 10240 0 3072 0 0 0 18 1
0 0 0 0 0 10240 0 3584 0 0 0 21 1
0 0 0 0 0 10240 0 4096 0 0 0 24 1
0 0 0 0 0 10240 0 4608 0 0 0 27 1
0 0 0 0 0 10240 0 5120 0 0 0 30 1
0 0 0 0 0 10240 0 5632 0 0 0 33 1
0 0 0 0 0 10240 0 6144 0 0 0 36 1
0 0 0 0 0 10240 0 6656 0 0 0 39 1
0 0 0 0 0 10240 0 7168 0 0 0 42 1
0 0 0 0 0 10240 0 7680 0 0 0 45 1
0 0 0 0 0 10240 0 8192 0 0 0 48 1
0 0 0 0 0 10240 0 8704 0 0 0 51 1
0 0 0 0 0 10240 0 9216 0 0 0 54 1
0 0 0 0 0 10240 0 9728 0 0 0 57 1
0 0 0 0 0 10240 0 10240 0 0 0 60 1
ActiveThorns = "Boundary CartGrid3D Time CoordBase SymBase LocalReduce"
ActiveThorns = "Loopcontrol InitBase Carpet CarpetLib CarpetInterp CarpetReduce CarpetSlab CarpetIOASCII CarpetIOBasic IOUtil CarpetIOScalar CarpetIOHDF5"
ActiveThorns = "ADMBase"
ActiveThorns = "StaticConformal"
ActiveThorns = "ADMCoupling ADMMacros"
ActiveThorns = "TmunuBase Constants SpaceMask HydroBase"
ActiveThorns = "TOVSolver eos_omni"
ActiveThorns = "TwoPunctures"
ActiveThorns = "coordgauge boundary"
Carpet::init_each_timelevel = "no"
InitBase::initial_data_setup_method = "init_all_levels"
Cactus::cctk_itlast = 0
Time::dtfac = 0.25
CoordBase::domainsize = minmax
driver::ghost_size = 3
Carpet::domain_from_coordbase = "yes"
CoordBase::xmin = -60.0
CoordBase::ymin = 0.0
CoordBase::zmin = 0.0
CoordBase::xmax = 60.0
CoordBase::ymax = 60.0
CoordBase::zmax = 60.0
CoordBase::dx = 3.0
CoordBase::dy = 3.0
CoordBase::dz = 3.0
CartGrid3D::type = "coordbase"
CartGrid3D::domain = "full"
CartGrid3D::avoid_origin = "no"
ADMBase::initial_data = "twopunctures"
ADMBase::initial_lapse = "tov"
ADMBase::initial_shift = "tov"
TwoPunctures::keep_u_around = yes
TwoPunctures::schedule_in_ADMBase_InitialData = no
TwoPunctures::npoints_A = 20
TwoPunctures::npoints_B = 20
TwoPunctures::npoints_phi = 4
TwoPunctures::Newton_tol = 1.e-10
#TwoPunctures::grid_setup_method = "evaluation"
TwoPunctures::TP_Extend_Radius = 1.14
TwoPunctures::par_b = 30
TwoPunctures::par_m_plus = 5.0
TwoPunctures::par_m_minus = 0.0
TwoPunctures::Newton_maxit = 100
TwoPunctures::use_sources = 1
TwoPunctures::do_residuum_debug_output = "no"
TwoPunctures::do_initial_debug_output = "no"
TwoPunctures::rescale_sources = "yes"
TwoPunctures::TP_Tiny = 1.e-10
SpaceMask::use_mask = yes
TOVSolver::TOV_Enforce_Interpolation = "yes"
TOVSolver::TOV_Num_Radial = 1000000
TOVSolver::TOV_dr[0] = 5.e-5
TOVSolver::TOV_Position_x[0] = -30
TOVSolver::TOV_Rho_Central[0] = 5.e-4
TOVSolver::TOV_Gamma = 2.0
TOVSolver::TOV_K = 100.0
IO::out_dir = $parfile
IO::out_fileinfo= "axis labels"
Carpet::max_refinement_levels = 10
carpet::enable_all_storage = no
Carpet::prolongation_order_space = 3
Carpet::prolongation_order_time = 2
Carpet::convergence_level = 0
Carpet::init_3_timelevels = no
CarpetIOScalar::outScalar_reductions = "minimum maximum norm1 norm2"
IOScalar::outScalar_every = 512
IOScalar::outScalar_vars = "admbase::metric admbase::curv TwoPunctures::puncture_u HydroBase::w_lorentz hydrobase::rho hydrobase::press hydrobase::eps HydroBase::vel admbase::lapse admbase::shift"
IOASCII::out1D_every = 512
IOASCII::out1D_vars = "admbase::metric admbase::curv TwoPunctures::puncture_u HydroBase::w_lorentz hydrobase::rho hydrobase::press hydrobase::eps HydroBase::vel admbase::lapse admbase::shift"
admbase::metric_type = "physical"
boundary::radpower = 2
admmacros::spatial_order = 4
"x-label diagonal
"y-label IDPUNCTURE::M
"Time = 0.0000000000000
-6.9282032302755 5.6849240262285
-6.5206618637887 5.3594672081893
-6.1131204973019 5.0341806628457
-5.7055791308151 4.7091321765484
-5.2980377643283 4.3844235656383
-4.8904963978415 4.0602116727365
-4.4829550313547 3.7367450027909
-4.0754136648679 3.4144298173900
-3.6678722983812 3.0939536462031
-3.2603309318944 2.7765243455978
-2.8527895654076 2.4643469538909
-2.4452481989208 2.1615869693139
-2.0377068324340 1.8762419986420
-1.6301654659472 1.6231089890090
-1.2226240994604 1.4250520603897
-0.8150827329736 1.3012632774553
-0.4075413664868 1.2394551934904
0.0000000000000 1.2000000000000
0.4075413664868 1.1675636568184
0.8150827329736 1.1733843723790
1.2226240994604 1.2587132735619
1.6301654659472 1.4298591815519
2.0377068324340 1.6634803771397
2.4452481989208 1.9345855327848
2.8527895654076 2.2269214582694
3.2603309318944 2.5313928731792
3.6678722983812 2.8430407137448
4.0754136648679 3.1591060463530
4.4829550313547 3.4779989374978
4.8904963978415 3.7987674618104
5.2980377643283 4.1208203982544
5.7055791308151 4.4437779868082
6.1131204973019 4.7673887849970
6.5206618637887 5.0914817277782
6.9282032302755 5.4159375722074
"x-label time
"y-label IDPUNCTURE::M
"M v time
0.0000000000000 5.6849240262285
"x-label time
"y-label IDPUNCTURE::M
"M v time
0.0000000000000 0.1153174140944
"x-label time
"y-label IDPUNCTURE::M
"M v time
0.0000000000000 3.1992708682213
"x-label time
"y-label IDPUNCTURE::M
"M v time
0.0000000000000 3.3244489773760
"x-label x
"y-label IDPUNCTURE::M (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 2.9729729729730
-3.7647058823529 2.7530210726056
-3.5294117647059 2.5284474445516
-3.2941176470588 2.2981624869987
-3.0588235294118 2.0607048789665
-2.8235294117647 1.8140682846565
-2.5882352941176 1.5554211401784
-2.3529411764706 1.2806337434687
-2.1176470588235 0.9834380354083
-1.8823529411765 0.6538377432757
-1.6470588235294 0.2748522989982
-1.4117647058824 0.1687979539642
-1.1764705882353 0.5477428180575
-0.9411764705882 0.8319704563440
-0.7058823529412 1.0313216195569
-0.4705882352941 1.1543194683731
-0.2352941176471 1.2083829483210
0.0000000000000 1.2000000000000
0.2352941176471 1.1348691567882
0.4705882352941 1.0180160625136
0.7058823529412 0.8538899430740
0.9411764705882 0.6464439434310
1.1764705882353 0.3992023928215
1.4117647058824 0.1153174140944
1.6470588235294 0.1901546116936
1.8823529411765 0.4740764230220
2.1176470588235 0.7393731215114
2.3529411764706 0.9910003912873
2.5882352941176 1.2322990295915
2.8235294117647 1.4656031904287
3.0588235294118 1.6925929741424
3.2941176470588 1.9145085202657
3.5294117647059 2.1322851721334
3.7647058823529 2.3466416957521
4.0000000000000 2.5581395348837
"x-label y
"y-label IDPUNCTURE::M (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 3.4176014981270
-3.7647058823529 3.2420250837399
-3.5294117647059 3.0679501852377
-3.2941176470588 2.8956476108990
-3.0588235294118 2.7254535192905
-2.8235294117647 2.5577888374579
-2.5882352941176 2.3931852498581
-2.3529411764706 2.2323200028571
-2.1176470588235 2.0760622828027
-1.8823529411765 1.9255341235355
-1.6470588235294 1.7821879170352
-1.4117647058824 1.6478989454017
-1.1764705882353 1.5250616868799
-0.9411764705882 1.4166581857403
-0.7058823529412 1.3262325337451
-0.4705882352941 1.2576685190487
-0.2352941176471 1.2146738352132
0.0000000000000 1.2000000000000
0.2352941176471 1.2146738352132
0.4705882352941 1.2576685190487
0.7058823529412 1.3262325337451
0.9411764705882 1.4166581857403
1.1764705882353 1.5250616868799
1.4117647058824 1.6478989454017
1.6470588235294 1.7821879170352
1.8823529411765 1.9255341235355
2.1176470588235 2.0760622828027
2.3529411764706 2.2323200028571
2.5882352941176 2.3931852498581
2.8235294117647 2.5577888374579
3.0588235294118 2.7254535192905
3.2941176470588 2.8956476108990
3.5294117647059 3.0679501852377
3.7647058823529 3.2420250837399
4.0000000000000 3.4176014981270
"x-label z
"y-label IDPUNCTURE::M (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 3.4176014981270
-3.7647058823529 3.2420250837399
-3.5294117647059 3.0679501852377
-3.2941176470588 2.8956476108990
-3.0588235294118 2.7254535192905
-2.8235294117647 2.5577888374579
-2.5882352941176 2.3931852498581
-2.3529411764706 2.2323200028571
-2.1176470588235 2.0760622828027
-1.8823529411765 1.9255341235355
-1.6470588235294 1.7821879170352
-1.4117647058824 1.6478989454017
-1.1764705882353 1.5250616868799
-0.9411764705882 1.4166581857403
-0.7058823529412 1.3262325337451
-0.4705882352941 1.2576685190487
-0.2352941176471 1.2146738352132
0.0000000000000 1.2000000000000
0.2352941176471 1.2146738352132
0.4705882352941 1.2576685190487
0.7058823529412 1.3262325337451
0.9411764705882 1.4166581857403
1.1764705882353 1.5250616868799
1.4117647058824 1.6478989454017
1.6470588235294 1.7821879170352
1.8823529411765 1.9255341235355
2.1176470588235 2.0760622828027
2.3529411764706 2.2323200028571
2.5882352941176 2.3931852498581
2.8235294117647 2.5577888374579
3.0588235294118 2.7254535192905
3.2941176470588 2.8956476108990
3.5294117647059 3.0679501852377
3.7647058823529 3.2420250837399
4.0000000000000 3.4176014981270
"x-label diagonal
"y-label IDPUNCTURE::N
"Time = 0.0000000000000
-6.9282032302755 134.7255040939021
-6.5206618637887 128.7873017635240
-6.1131204973019 122.8845512526831
-5.7055791308151 117.0251277720053
-5.2980377643283 111.2191977337784
-4.8904963978415 105.4799334739430
-4.4829550313547 99.8243122077418
-4.0754136648679 94.2736590896960
-3.6678722983812 88.8527288677480
-3.2603309318944 83.5834533855781
-2.8527895654076 78.4614082679281
-2.4452481989208 73.3799359568369
-2.0377068324340 67.9139690562055
-1.6301654659472 60.8615881967696
-1.2226240994604 50.1241211330808
-0.8150827329736 35.5529742134793
-0.4075413664868 22.3726433080305
0.0000000000000 14.5096704000000
0.4075413664868 10.8927154173096
0.8150827329736 9.9978371004895
1.2226240994604 11.0430416998900
1.6301654659472 13.5233262616363
2.0377068324340 17.0396764736124
2.4452481989208 21.2795459591595
2.8527895654076 26.0172492871692
3.2603309318944 31.0991409749639
3.6678722983812 36.4229659793469
4.0754136648679 41.9205851980602
4.4829550313547 47.5459577356718
4.8904963978415 53.2673586905649
5.2980377643283 59.0624529815226
5.7055791308151 64.9151758126599
6.1131204973019 70.8137342695715
6.5206618637887 76.7493055477760
6.9282032302755 82.7151728876283
"x-label time
"y-label IDPUNCTURE::N
"N v time
0.0000000000000 171.5208834409299
"x-label time
"y-label IDPUNCTURE::N
"N v time
0.0000000000000 0.0027396153440
"x-label time
"y-label IDPUNCTURE::N
"N v time
0.0000000000000 50.7789955972882
"x-label time
"y-label IDPUNCTURE::N
"N v time
0.0000000000000 60.2956338963989
"x-label x
"y-label IDPUNCTURE::N (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 16.6340545057134
-3.7647058823529 13.0115512466033
-3.5294117647059 9.4649445256707
-3.2941176470588 6.1128312486280
-3.0588235294118 3.1563100763405
-2.8235294117647 0.9333266264032
-2.5882352941176 0.0027396153440
-2.3529411764706 1.2469524998292
-2.1176470588235 5.8514352365523
-1.8823529411765 14.2895465202267
-1.6470588235294 19.1932559845272
-1.4117647058824 22.0505854886726
-1.1764705882353 51.2717709766786
-0.9411764705882 51.8000028699529
-0.7058823529412 41.0641808752125
-0.4705882352941 29.3128411320107
-0.2352941176471 20.3439337953149
0.0000000000000 14.5096704000000
0.2352941176471 10.9617976574975
0.4705882352941 8.7067617204492
0.7058823529412 6.9315933970162
0.9411764705882 5.0894485582382
1.1764705882353 2.9763833191074
1.4117647058824 0.7708102047193
1.6470588235294 0.7496533568522
1.8823529411765 1.0284589906688
2.1176470588235 1.2677144235999
2.3529411764706 1.8658991710669
2.5882352941176 2.8781396541838
2.8235294117647 4.2558644480141
3.0588235294118 5.9283836192513
3.2941176470588 7.8293466241450
3.5294117647059 9.9037306787081
3.7647058823529 12.1081646037250
4.0000000000000 14.4092518217533
"x-label y
"y-label IDPUNCTURE::N (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 43.3661997372605
-3.7647058823529 41.1417223606485
-3.5294117647059 38.9318910332119
-3.2941176470588 36.7392049485958
-3.0588235294118 34.5667761520130
-2.8235294117647 32.4185378746215
-2.5882352941176 30.2995473386100
-2.3529411764706 28.2164359905130
-2.1176470588235 26.1780922816056
-1.8823529411765 24.1967099087100
-1.6470588235294 22.2893929940831
-1.4117647058824 20.4805400943490
-1.1764705882353 18.8050940908789
-0.9411764705882 17.3121045596636
-0.7058823529412 16.0663809673956
-0.4705882352941 15.1434270689914
-0.2352941176471 14.6123774580407
0.0000000000000 14.5096704000000
0.2352941176471 14.8212100678467
0.4705882352941 15.4912283289065
0.7058823529412 16.4505692620822
0.9411764705882 17.6394100851854
1.1764705882353 19.0132547854221
1.4117647058824 20.5392853571371
1.6470588235294 22.1917933540335
1.8823529411765 23.9495748266703
2.1176470588235 25.7948241946053
2.3529411764706 27.7126375489028
2.5882352941176 29.6906597301858
2.8235294117647 31.7187379199042
3.0588235294118 33.7885757350194
3.2941176470588 35.8934097267502
3.5294117647059 38.0277245002607
3.7647058823529 40.1870122863352
4.0000000000000 42.3675755790464
"x-label z
"y-label IDPUNCTURE::N (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 27.5758335022278
-3.7647058823529 26.6162168423169
-3.5294117647059 25.6756907606558
-3.2941176470588 24.7571334932815
-3.0588235294118 23.8639046849661
-2.8235294117647 22.9998857589947
-2.5882352941176 22.1694737018236
-2.3529411764706 21.3774701105797
-2.1176470588235 20.6287568706686
-1.8823529411765 19.9275660284662
-1.6470588235294 19.2760304882509
-1.4117647058824 18.6715839184778
-1.1764705882353 18.1028458368249
-0.9411764705882 17.5443931206103
-0.7058823529412 16.9531779487781
-0.4705882352941 16.2734881667093
-0.2352941176471 15.4590495834399
0.0000000000000 14.5096704000000
0.2352941176471 13.4952657552397
0.4705882352941 12.5357740724153
0.7058823529412 11.7469996798918
0.9411764705882 11.1981527567036
1.1764705882353 10.9058093958191
1.4117647058824 10.8513433297521
1.6470588235294 11.0008580166842
1.8823529411765 11.3181732473910
2.1176470588235 11.7708571456759
2.3529411764706 12.3320402859442
2.5882352941176 12.9802787760865
2.8235294117647 13.6987350683376
3.0588235294118 14.4742511812741
3.2941176470588 15.2965273192895
3.5294117647059 16.1574586315491
3.7647058823529 17.0506217518113
4.0000000000000 17.9708847804966
"x-label diagonal
"y-label ADMBASE::gxx
"Time = 0.0000000000000
-6.9282032302755 1.1489525841611
-6.5206618637887 1.1572751073649
-6.1131204973019 1.1665399059635
-5.7055791308151 1.1769217787849
-5.2980377643283 1.1886407773285
-4.8904963978415 1.2019701838959
-4.4829550313547 1.2172447790636
-4.0754136648679 1.2348662034274
-3.6678722983812 1.2552975886049
-3.2603309318944 1.2790264783966
-2.8527895654076 1.3064406394330
-2.4452481989208 1.3374751411580
-2.0377068324340 1.3707116758933
-1.6301654659472 1.4015650471367
-1.2226240994604 1.4208609550122
-0.8150827329736 1.4190865564815
-0.4075413664868 1.3959340091292
0.0000000000000 1.3613762676822
0.4075413664868 1.3264438117726
0.8150827329736 1.2981685711073
1.2226240994604 1.2785506724017
1.6301654659472 1.2638883045826
2.0377068324340 1.2498582316417
2.4452481989208 1.2350696760313
2.8527895654076 1.2199009516298
3.2603309318944 1.2050363150861
3.6678722983812 1.1909683085926
4.0754136648679 1.1779573853916
4.4829550313547 1.1660980708890
4.8904963978415 1.1553835165162
5.2980377643283 1.1457500137029
5.7055791308151 1.1371049499904
6.1131204973019 1.1293439802080
6.5206618637887 1.1223614332811
6.9282032302755 1.1160563457373
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 1.5233761473211
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 1.0531027728300
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 1.2125545783982
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 1.2138818524667
"x-label x
"y-label ADMBASE::gxx (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.2661041346907
-3.7647058823529 1.2782018986160
-3.5294117647059 1.2923855382987
-3.2941176470588 1.3086980621956
-3.0588235294118 1.3272059999676
-2.8235294117647 1.3479019322934
-2.5882352941176 1.3704459083463
-2.3529411764706 1.3933667238143
-2.1176470588235 1.4112162182316
-1.8823529411765 1.4026658833855
-1.6470588235294 1.2745824683895
-1.4117647058824 1.2090818923925
-1.1764705882353 1.4531284809427
-0.9411764705882 1.4851912205623
-0.7058823529412 1.4622398431876
-0.4705882352941 1.4278954383338
-0.2352941176471 1.3935022824763
0.0000000000000 1.3613762676822
0.2352941176471 1.3309007880878
0.4705882352941 1.3000440163892
0.7058823529412 1.2653220955484
0.9411764705882 1.2208018591317
1.1764705882353 1.1559930066674
1.4117647058824 1.0531027728300
1.6470588235294 1.0770945039384
1.8823529411765 1.1453221960709
2.1176470588235 1.1785134537820
2.3529411764706 1.1942373411864
2.5882352941176 1.2004103949570
2.8235294117647 1.2010680163390
3.0588235294118 1.1984563877466
3.2941176470588 1.1938942608290
3.5294117647059 1.1881795824247
3.7647058823529 1.1818005247942
4.0000000000000 1.1750512561970
"x-label y
"y-label ADMBASE::gxx (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1943294319457
-3.7647058823529 1.2046592719041
-3.5294117647059 1.2152256535407
-3.2941176470588 1.2261156579079
-3.0588235294118 1.2373853382835
-2.8235294117647 1.2490588383499
-2.5882352941176 1.2611236969909
-2.3529411764706 1.2735226136164
-2.1176470588235 1.2861422226022
-1.8823529411765 1.2988003664096
-1.6470588235294 1.3112352893207
-1.4117647058824 1.3231032208084
-1.1764705882353 1.3339940517244
-0.9411764705882 1.3434746591767
-0.7058823529412 1.3511588645027
-0.4705882352941 1.3567774678870
-0.2352941176471 1.3601986673202
0.0000000000000 1.3613762676822
0.2352941176471 1.3602834148940
0.4705882352941 1.3568993948112
0.7058823529412 1.3512515656116
0.9411764705882 1.3434843791475
1.1764705882353 1.3338942364239
1.4117647058824 1.3228924856327
1.6470588235294 1.3109282159654
1.8823529411765 1.2984184510783
2.1176470588235 1.2857077498888
2.3529411764706 1.2730554537254
2.5882352941176 1.2606401176929
2.8235294117647 1.2485714424077
3.0588235294118 1.2369035164668
3.2941176470588 1.2256462097030
3.5294117647059 1.2147734056078
3.7647058823529 1.2042276280957
4.0000000000000 1.1939208436766
"x-label z
"y-label ADMBASE::gxx (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1944179671725
-3.7647058823529 1.2047528036279
-3.5294117647059 1.2153667255150
-3.2941176470588 1.2263622610534
-3.0588235294118 1.2378151535012
-2.8235294117647 1.2497733862622
-2.5882352941176 1.2622519375766
-2.3529411764706 1.2752227884626
-2.1176470588235 1.2885995101326
-1.8823529411765 1.3022160174181
-1.6470588235294 1.3158002652244
-1.4117647058824 1.3289465130892
-1.1764705882353 1.3410949636240
-0.9411764705882 1.3515347070262
-0.7058823529412 1.3594520544172
-0.4705882352941 1.3640465933726
-0.2352941176471 1.3647283213583
0.0000000000000 1.3613762676822
0.2352941176471 1.3545180532217
0.4705882352941 1.3451324800711
0.7058823529412 1.3341515161650
0.9411764705882 1.3222311311832
1.1764705882353 1.3097952368969
1.4117647058824 1.2971369607090
1.6470588235294 1.2844783278166
1.8823529411765 1.2719910303863
2.1176470588235 1.2598016530462
2.3529411764706 1.2479947104591
2.5882352941176 1.2366171202443
2.8235294117647 1.2256836589043
3.0588235294118 1.2151821777229
3.2941176470588 1.2050776667932
3.5294117647059 1.1953146600600
3.7647058823529 1.1858176984230
4.0000000000000 1.1764895950767
"x-label diagonal
"y-label ADMBASE::gxy
"Time = 0.0000000000000
-6.9282032302755 0.0000000000000
-6.5206618637887 0.0000000000000
-6.1131204973019 0.0000000000000
-5.7055791308151 0.0000000000000
-5.2980377643283 0.0000000000000
-4.8904963978415 0.0000000000000
-4.4829550313547 0.0000000000000
-4.0754136648679 0.0000000000000
-3.6678722983812 0.0000000000000
-3.2603309318944 0.0000000000000
-2.8527895654076 0.0000000000000
-2.4452481989208 0.0000000000000
-2.0377068324340 0.0000000000000
-1.6301654659472 0.0000000000000
-1.2226240994604 0.0000000000000
-0.8150827329736 0.0000000000000
-0.4075413664868 0.0000000000000
0.0000000000000 0.0000000000000
0.4075413664868 0.0000000000000
0.8150827329736 0.0000000000000
1.2226240994604 0.0000000000000
1.6301654659472 0.0000000000000
2.0377068324340 0.0000000000000
2.4452481989208 0.0000000000000
2.8527895654076 0.0000000000000
3.2603309318944 0.0000000000000
3.6678722983812 0.0000000000000
4.0754136648679 0.0000000000000
4.4829550313547 0.0000000000000
4.8904963978415 0.0000000000000
5.2980377643283 0.0000000000000
5.7055791308151 0.0000000000000
6.1131204973019 0.0000000000000
6.5206618637887 0.0000000000000
6.9282032302755 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label x
"y-label ADMBASE::gxy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::gxy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::gxy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::gxz
"Time = 0.0000000000000
-6.9282032302755 0.0000000000000
-6.5206618637887 0.0000000000000
-6.1131204973019 0.0000000000000
-5.7055791308151 0.0000000000000
-5.2980377643283 0.0000000000000
-4.8904963978415 0.0000000000000
-4.4829550313547 0.0000000000000
-4.0754136648679 0.0000000000000
-3.6678722983812 0.0000000000000
-3.2603309318944 0.0000000000000
-2.8527895654076 0.0000000000000
-2.4452481989208 0.0000000000000
-2.0377068324340 0.0000000000000
-1.6301654659472 0.0000000000000
-1.2226240994604 0.0000000000000
-0.8150827329736 0.0000000000000
-0.4075413664868 0.0000000000000
0.0000000000000 0.0000000000000
0.4075413664868 0.0000000000000
0.8150827329736 0.0000000000000
1.2226240994604 0.0000000000000
1.6301654659472 0.0000000000000
2.0377068324340 0.0000000000000
2.4452481989208 0.0000000000000
2.8527895654076 0.0000000000000
3.2603309318944 0.0000000000000
3.6678722983812 0.0000000000000
4.0754136648679 0.0000000000000
4.4829550313547 0.0000000000000
4.8904963978415 0.0000000000000
5.2980377643283 0.0000000000000
5.7055791308151 0.0000000000000
6.1131204973019 0.0000000000000
6.5206618637887 0.0000000000000
6.9282032302755 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label x
"y-label ADMBASE::gxz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::gxz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::gxz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::gyy
"Time = 0.0000000000000
-6.9282032302755 1.1489525841611
-6.5206618637887 1.1572751073649
-6.1131204973019 1.1665399059635
-5.7055791308151 1.1769217787849
-5.2980377643283 1.1886407773285
-4.8904963978415 1.2019701838959
-4.4829550313547 1.2172447790636
-4.0754136648679 1.2348662034274
-3.6678722983812 1.2552975886049
-3.2603309318944 1.2790264783966
-2.8527895654076 1.3064406394330
-2.4452481989208 1.3374751411580
-2.0377068324340 1.3707116758933
-1.6301654659472 1.4015650471367
-1.2226240994604 1.4208609550122
-0.8150827329736 1.4190865564815
-0.4075413664868 1.3959340091292
0.0000000000000 1.3613762676822
0.4075413664868 1.3264438117726
0.8150827329736 1.2981685711073
1.2226240994604 1.2785506724017
1.6301654659472 1.2638883045826
2.0377068324340 1.2498582316417
2.4452481989208 1.2350696760313
2.8527895654076 1.2199009516298
3.2603309318944 1.2050363150861
3.6678722983812 1.1909683085926
4.0754136648679 1.1779573853916
4.4829550313547 1.1660980708890
4.8904963978415 1.1553835165162
5.2980377643283 1.1457500137029
5.7055791308151 1.1371049499904
6.1131204973019 1.1293439802080
6.5206618637887 1.1223614332811
6.9282032302755 1.1160563457373
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 1.5233761473211
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 1.0531027728300
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 1.2125545783982
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 1.2138818524667
"x-label x
"y-label ADMBASE::gyy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.2661041346907
-3.7647058823529 1.2782018986160
-3.5294117647059 1.2923855382987
-3.2941176470588 1.3086980621956
-3.0588235294118 1.3272059999676
-2.8235294117647 1.3479019322934
-2.5882352941176 1.3704459083463
-2.3529411764706 1.3933667238143
-2.1176470588235 1.4112162182316
-1.8823529411765 1.4026658833855
-1.6470588235294 1.2745824683895
-1.4117647058824 1.2090818923925
-1.1764705882353 1.4531284809427
-0.9411764705882 1.4851912205623
-0.7058823529412 1.4622398431876
-0.4705882352941 1.4278954383338
-0.2352941176471 1.3935022824763
0.0000000000000 1.3613762676822
0.2352941176471 1.3309007880878
0.4705882352941 1.3000440163892
0.7058823529412 1.2653220955484
0.9411764705882 1.2208018591317
1.1764705882353 1.1559930066674
1.4117647058824 1.0531027728300
1.6470588235294 1.0770945039384
1.8823529411765 1.1453221960709
2.1176470588235 1.1785134537820
2.3529411764706 1.1942373411864
2.5882352941176 1.2004103949570
2.8235294117647 1.2010680163390
3.0588235294118 1.1984563877466
3.2941176470588 1.1938942608290
3.5294117647059 1.1881795824247
3.7647058823529 1.1818005247942
4.0000000000000 1.1750512561970
"x-label y
"y-label ADMBASE::gyy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1943294319457
-3.7647058823529 1.2046592719041
-3.5294117647059 1.2152256535407
-3.2941176470588 1.2261156579079
-3.0588235294118 1.2373853382835
-2.8235294117647 1.2490588383499
-2.5882352941176 1.2611236969909
-2.3529411764706 1.2735226136164
-2.1176470588235 1.2861422226022
-1.8823529411765 1.2988003664096
-1.6470588235294 1.3112352893207
-1.4117647058824 1.3231032208084
-1.1764705882353 1.3339940517244
-0.9411764705882 1.3434746591767
-0.7058823529412 1.3511588645027
-0.4705882352941 1.3567774678870
-0.2352941176471 1.3601986673202
0.0000000000000 1.3613762676822
0.2352941176471 1.3602834148940
0.4705882352941 1.3568993948112
0.7058823529412 1.3512515656116
0.9411764705882 1.3434843791475
1.1764705882353 1.3338942364239
1.4117647058824 1.3228924856327
1.6470588235294 1.3109282159654
1.8823529411765 1.2984184510783
2.1176470588235 1.2857077498888
2.3529411764706 1.2730554537254
2.5882352941176 1.2606401176929
2.8235294117647 1.2485714424077
3.0588235294118 1.2369035164668
3.2941176470588 1.2256462097030
3.5294117647059 1.2147734056078
3.7647058823529 1.2042276280957
4.0000000000000 1.1939208436766
"x-label z
"y-label ADMBASE::gyy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1944179671725
-3.7647058823529 1.2047528036279
-3.5294117647059 1.2153667255150
-3.2941176470588 1.2263622610534
-3.0588235294118 1.2378151535012
-2.8235294117647 1.2497733862622
-2.5882352941176 1.2622519375766
-2.3529411764706 1.2752227884626
-2.1176470588235 1.2885995101326
-1.8823529411765 1.3022160174181
-1.6470588235294 1.3158002652244
-1.4117647058824 1.3289465130892
-1.1764705882353 1.3410949636240
-0.9411764705882 1.3515347070262
-0.7058823529412 1.3594520544172
-0.4705882352941 1.3640465933726
-0.2352941176471 1.3647283213583
0.0000000000000 1.3613762676822
0.2352941176471 1.3545180532217
0.4705882352941 1.3451324800711
0.7058823529412 1.3341515161650
0.9411764705882 1.3222311311832
1.1764705882353 1.3097952368969
1.4117647058824 1.2971369607090
1.6470588235294 1.2844783278166
1.8823529411765 1.2719910303863
2.1176470588235 1.2598016530462
2.3529411764706 1.2479947104591
2.5882352941176 1.2366171202443
2.8235294117647 1.2256836589043
3.0588235294118 1.2151821777229
3.2941176470588 1.2050776667932
3.5294117647059 1.1953146600600
3.7647058823529 1.1858176984230
4.0000000000000 1.1764895950767
"x-label diagonal
"y-label ADMBASE::gyz
"Time = 0.0000000000000
-6.9282032302755 0.0000000000000
-6.5206618637887 0.0000000000000
-6.1131204973019 0.0000000000000
-5.7055791308151 0.0000000000000
-5.2980377643283 0.0000000000000
-4.8904963978415 0.0000000000000
-4.4829550313547 0.0000000000000
-4.0754136648679 0.0000000000000
-3.6678722983812 0.0000000000000
-3.2603309318944 0.0000000000000
-2.8527895654076 0.0000000000000
-2.4452481989208 0.0000000000000
-2.0377068324340 0.0000000000000
-1.6301654659472 0.0000000000000
-1.2226240994604 0.0000000000000
-0.8150827329736 0.0000000000000
-0.4075413664868 0.0000000000000
0.0000000000000 0.0000000000000
0.4075413664868 0.0000000000000
0.8150827329736 0.0000000000000
1.2226240994604 0.0000000000000
1.6301654659472 0.0000000000000
2.0377068324340 0.0000000000000
2.4452481989208 0.0000000000000
2.8527895654076 0.0000000000000
3.2603309318944 0.0000000000000
3.6678722983812 0.0000000000000
4.0754136648679 0.0000000000000
4.4829550313547 0.0000000000000
4.8904963978415 0.0000000000000
5.2980377643283 0.0000000000000
5.7055791308151 0.0000000000000
6.1131204973019 0.0000000000000
6.5206618637887 0.0000000000000
6.9282032302755 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label x
"y-label ADMBASE::gyz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::gyz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::gyz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::gzz
"Time = 0.0000000000000
-6.9282032302755 1.1489525841611
-6.5206618637887 1.1572751073649
-6.1131204973019 1.1665399059635
-5.7055791308151 1.1769217787849
-5.2980377643283 1.1886407773285
-4.8904963978415 1.2019701838959
-4.4829550313547 1.2172447790636
-4.0754136648679 1.2348662034274
-3.6678722983812 1.2552975886049
-3.2603309318944 1.2790264783966
-2.8527895654076 1.3064406394330
-2.4452481989208 1.3374751411580
-2.0377068324340 1.3707116758933
-1.6301654659472 1.4015650471367
-1.2226240994604 1.4208609550122
-0.8150827329736 1.4190865564815
-0.4075413664868 1.3959340091292
0.0000000000000 1.3613762676822
0.4075413664868 1.3264438117726
0.8150827329736 1.2981685711073
1.2226240994604 1.2785506724017
1.6301654659472 1.2638883045826
2.0377068324340 1.2498582316417
2.4452481989208 1.2350696760313
2.8527895654076 1.2199009516298
3.2603309318944 1.2050363150861
3.6678722983812 1.1909683085926
4.0754136648679 1.1779573853916
4.4829550313547 1.1660980708890
4.8904963978415 1.1553835165162
5.2980377643283 1.1457500137029
5.7055791308151 1.1371049499904
6.1131204973019 1.1293439802080
6.5206618637887 1.1223614332811
6.9282032302755 1.1160563457373
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 1.5233761473211
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 1.0531027728300
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 1.2125545783982
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 1.2138818524667
"x-label x
"y-label ADMBASE::gzz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.2661041346907
-3.7647058823529 1.2782018986160
-3.5294117647059 1.2923855382987
-3.2941176470588 1.3086980621956
-3.0588235294118 1.3272059999676
-2.8235294117647 1.3479019322934
-2.5882352941176 1.3704459083463
-2.3529411764706 1.3933667238143
-2.1176470588235 1.4112162182316
-1.8823529411765 1.4026658833855
-1.6470588235294 1.2745824683895
-1.4117647058824 1.2090818923925
-1.1764705882353 1.4531284809427
-0.9411764705882 1.4851912205623
-0.7058823529412 1.4622398431876
-0.4705882352941 1.4278954383338
-0.2352941176471 1.3935022824763
0.0000000000000 1.3613762676822
0.2352941176471 1.3309007880878
0.4705882352941 1.3000440163892
0.7058823529412 1.2653220955484
0.9411764705882 1.2208018591317
1.1764705882353 1.1559930066674
1.4117647058824 1.0531027728300
1.6470588235294 1.0770945039384
1.8823529411765 1.1453221960709
2.1176470588235 1.1785134537820
2.3529411764706 1.1942373411864
2.5882352941176 1.2004103949570
2.8235294117647 1.2010680163390
3.0588235294118 1.1984563877466
3.2941176470588 1.1938942608290
3.5294117647059 1.1881795824247
3.7647058823529 1.1818005247942
4.0000000000000 1.1750512561970
"x-label y
"y-label ADMBASE::gzz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1943294319457
-3.7647058823529 1.2046592719041
-3.5294117647059 1.2152256535407
-3.2941176470588 1.2261156579079
-3.0588235294118 1.2373853382835
-2.8235294117647 1.2490588383499
-2.5882352941176 1.2611236969909
-2.3529411764706 1.2735226136164
-2.1176470588235 1.2861422226022
-1.8823529411765 1.2988003664096
-1.6470588235294 1.3112352893207
-1.4117647058824 1.3231032208084
-1.1764705882353 1.3339940517244
-0.9411764705882 1.3434746591767
-0.7058823529412 1.3511588645027
-0.4705882352941 1.3567774678870
-0.2352941176471 1.3601986673202
0.0000000000000 1.3613762676822
0.2352941176471 1.3602834148940
0.4705882352941 1.3568993948112
0.7058823529412 1.3512515656116
0.9411764705882 1.3434843791475
1.1764705882353 1.3338942364239
1.4117647058824 1.3228924856327
1.6470588235294 1.3109282159654
1.8823529411765 1.2984184510783
2.1176470588235 1.2857077498888
2.3529411764706 1.2730554537254
2.5882352941176 1.2606401176929
2.8235294117647 1.2485714424077
3.0588235294118 1.2369035164668
3.2941176470588 1.2256462097030
3.5294117647059 1.2147734056078
3.7647058823529 1.2042276280957
4.0000000000000 1.1939208436766
"x-label z
"y-label ADMBASE::gzz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.1944179671725
-3.7647058823529 1.2047528036279
-3.5294117647059 1.2153667255150
-3.2941176470588 1.2263622610534
-3.0588235294118 1.2378151535012
-2.8235294117647 1.2497733862622
-2.5882352941176 1.2622519375766
-2.3529411764706 1.2752227884626
-2.1176470588235 1.2885995101326
-1.8823529411765 1.3022160174181
-1.6470588235294 1.3158002652244
-1.4117647058824 1.3289465130892
-1.1764705882353 1.3410949636240
-0.9411764705882 1.3515347070262
-0.7058823529412 1.3594520544172
-0.4705882352941 1.3640465933726
-0.2352941176471 1.3647283213583
0.0000000000000 1.3613762676822
0.2352941176471 1.3545180532217
0.4705882352941 1.3451324800711
0.7058823529412 1.3341515161650
0.9411764705882 1.3222311311832
1.1764705882353 1.3097952368969
1.4117647058824 1.2971369607090
1.6470588235294 1.2844783278166
1.8823529411765 1.2719910303863
2.1176470588235 1.2598016530462
2.3529411764706 1.2479947104591
2.5882352941176 1.2366171202443
2.8235294117647 1.2256836589043
3.0588235294118 1.2151821777229
3.2941176470588 1.2050776667932
3.5294117647059 1.1953146600600
3.7647058823529 1.1858176984230
4.0000000000000 1.1764895950767
"x-label diagonal
"y-label ADMCONSTRAINTS::ham
"Time = 0.0000000000000
-6.9282032302755 -0.0000020324847
-6.5206618637887 -0.0000020324847
-6.1131204973019 -0.0000026480697
-5.7055791308151 -0.0000035175289
-5.2980377643283 -0.0000047637995
-4.8904963978415 -0.0000065713969
-4.4829550313547 -0.0000092117613
-4.0754136648679 -0.0000130722100
-3.6678722983812 -0.0000186915394
-3.2603309318944 -0.0000269018507
-2.8527895654076 -0.0000399006721
-2.4452481989208 -0.0000680182663
-2.0377068324340 -0.0001596986855
-1.6301654659472 -0.0004426527585
-1.2226240994604 -0.0007485751344
-0.8150827329736 -0.0000531001681
-0.4075413664868 0.0007666305624
0.0000000000000 0.0007101239577
0.4075413664868 0.0004623540941
0.8150827329736 -0.0001502539009
1.2226240994604 -0.0004964349305
1.6301654659472 -0.0003013709287
2.0377068324340 -0.0001271578398
2.4452481989208 -0.0000622043835
2.8527895654076 -0.0000383273185
3.2603309318944 -0.0000261110396
3.6678722983812 -0.0000182096047
4.0754136648679 -0.0000127524337
4.4829550313547 -0.0000089633301
4.8904963978415 -0.0000063421314
5.2980377643283 -0.0000045301281
5.7055791308151 -0.0000032731328
6.1131204973019 -0.0000023951524
6.5206618637887 -0.0000017761928
6.9282032302755 -0.0000017761928
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 0.0337993286968
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 -0.0254566378377
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 0.0000794708873
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 0.0006371272910
"x-label x
"y-label ADMCONSTRAINTS::ham (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0001973396765
-3.7647058823529 0.0001973396765
-3.5294117647059 0.0003015482676
-3.2941176470588 0.0004816195521
-3.0588235294118 0.0008104074592
-2.8235294117647 0.0014518311338
-2.5882352941176 0.0028067470570
-2.3529411764706 0.0059416521336
-2.1176470588235 0.0138006340158
-1.8823529411765 0.0320157744941
-1.6470588235294 -0.0211135365788
-1.4117647058824 -0.0097352234297
-1.1764705882353 0.0337993286968
-0.9411764705882 0.0150104478121
-0.7058823529412 0.0057258967157
-0.4705882352941 0.0023209704692
-0.2352941176471 0.0010952495592
0.0000000000000 0.0007101239577
0.2352941176471 0.0007338237888
0.4705882352941 0.0010778254887
0.7058823529412 0.0018243341996
0.9411764705882 0.0031113419780
1.1764705882353 0.0044845596309
1.4117647058824 -0.0008563140817
1.6470588235294 -0.0024192212987
1.8823529411765 0.0045725297862
2.1176470588235 0.0029486546196
2.3529411764706 0.0017474822165
2.5882352941176 0.0010526718513
2.8235294117647 0.0006560485690
3.0588235294118 0.0004230511272
3.2941176470588 0.0002812459548
3.5294117647059 0.0001919491797
3.7647058823529 0.0001339172256
4.0000000000000 0.0001339172256
"x-label y
"y-label ADMCONSTRAINTS::ham (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000147813480
-3.7647058823529 0.0000147813480
-3.5294117647059 0.0000169958182
-3.2941176470588 0.0000188684875
-3.0588235294118 0.0000200268162
-2.8235294117647 0.0000198442894
-2.5882352941176 0.0000173765905
-2.3529411764706 0.0000113572993
-2.1176470588235 0.0000004044942
-1.8823529411765 -0.0000162431932
-1.6470588235294 -0.0000369144860
-1.4117647058824 -0.0000540184221
-1.1764705882353 -0.0000492476773
-0.9411764705882 0.0000085037969
-0.7058823529412 0.0001517545667
-0.4705882352941 0.0003783518555
-0.2352941176471 0.0006091812993
0.0000000000000 0.0007101239577
0.2352941176471 0.0006097342777
0.4705882352941 0.0003788492123
0.7058823529412 0.0001518511758
0.9411764705882 0.0000083612715
1.1764705882353 -0.0000493670821
1.4117647058824 -0.0000540118036
1.6470588235294 -0.0000368103607
1.8823529411765 -0.0000161044416
2.1176470588235 0.0000005321905
2.3529411764706 0.0000114538049
2.5882352941176 0.0000174391732
2.8235294117647 0.0000198783796
3.0588235294118 0.0000200400844
3.2941176470588 0.0000188680254
3.5294117647059 0.0000169872134
3.7647058823529 0.0000147686844
4.0000000000000 0.0000147686844
"x-label z
"y-label ADMCONSTRAINTS::ham (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000149062055
-3.7647058823529 0.0000149062055
-3.5294117647059 0.0000171846165
-3.2941176470588 0.0000191492091
-3.0588235294118 0.0000204208443
-2.8235294117647 0.0000203525094
-2.5882352941176 0.0000179497843
-2.3529411764706 0.0000118439146
-2.1176470588235 0.0000004756297
-1.8823529411765 -0.0000171613694
-1.6470588235294 -0.0000395888341
-1.4117647058824 -0.0000589770202
-1.1764705882353 -0.0000556157487
-0.9411764705882 0.0000047440831
-0.7058823529412 0.0001578927766
-0.4705882352941 0.0003987712533
-0.2352941176471 0.0006329531746
0.0000000000000 0.0007101239577
0.2352941176471 0.0005703637614
0.4705882352941 0.0003169110485
0.7058823529412 0.0000944328924
0.9411764705882 -0.0000306931338
1.1764705882353 -0.0000706677777
1.4117647058824 -0.0000638569932
1.6470588235294 -0.0000409985436
1.8823529411765 -0.0000181660626
2.1176470588235 -0.0000010531496
2.3529411764706 0.0000097731082
2.5882352941176 0.0000155782688
2.8235294117647 0.0000179174605
3.0588235294118 0.0000180824900
3.2941176470588 0.0000169918783
3.5294117647059 0.0000152380614
3.7647058823529 0.0000131674237
4.0000000000000 0.0000131674237
"x-label diagonal
"y-label ADMBASE::kxx
"Time = 0.0000000000000
-6.9282032302755 -0.0127716688842
-6.5206618637887 -0.0150742270535
-6.1131204973019 -0.0179741712706
-5.7055791308151 -0.0216810923360
-5.2980377643283 -0.0264999980614
-4.8904963978415 -0.0328858832154
-4.4829550313547 -0.0415360950351
-4.0754136648679 -0.0535504361819
-3.6678722983812 -0.0707125109713
-3.2603309318944 -0.0959765592845
-2.8527895654076 -0.1342240858737
-2.4452481989208 -0.1929159310195
-2.0377068324340 -0.2796694939868
-1.6301654659472 -0.3842986195032
-1.2226240994604 -0.4296362504825
-0.8150827329736 -0.2998477695833
-0.4075413664868 -0.0882646362920
0.0000000000000 0.0000000000000
0.4075413664868 -0.0857660201935
0.8150827329736 -0.2857916308698
1.2226240994604 -0.4073144553043
1.6301654659472 -0.3660013922181
2.0377068324340 -0.2684709362297
2.4452481989208 -0.1866432932666
2.8527895654076 -0.1307329548190
3.2603309318944 -0.0939968968204
3.6678722983812 -0.0695655026535
4.0754136648679 -0.0528748866702
4.4829550313547 -0.0411349610353
4.8904963978415 -0.0326482042819
5.2980377643283 -0.0263613671645
5.7055791308151 -0.0216031466990
6.1131204973019 -0.0179335910537
6.5206618637887 -0.0150566275199
6.9282032302755 -0.0127681008705
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 12.9933257743668
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 -12.9931271111414
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 0.0665956602636
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 0.2067924545149
"x-label x
"y-label ADMBASE::kxx (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kxx (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0069282417829
-3.7647058823529 -0.0082483258801
-3.5294117647059 -0.0098796179441
-3.2941176470588 -0.0119052735527
-3.0588235294118 -0.0144307781455
-2.8235294117647 -0.0175876946435
-2.5882352941176 -0.0215349202314
-2.3529411764706 -0.0264528297086
-2.1176470588235 -0.0325207195161
-1.8823529411765 -0.0398591754124
-1.6470588235294 -0.0484058487281
-1.4117647058824 -0.0576810775676
-1.1764705882353 -0.0664141103858
-0.9411764705882 -0.0721096003721
-0.7058823529412 -0.0709375660581
-0.4705882352941 -0.0587530312596
-0.2352941176471 -0.0338433828341
0.0000000000000 0.0000000000000
0.2352941176471 0.0338423285725
0.4705882352941 0.0587503915144
0.7058823529412 0.0709351327200
0.9411764705882 0.0721093395188
1.1764705882353 0.0664165952231
1.4117647058824 0.0576856716477
1.6470588235294 0.0484115177174
1.8823529411765 0.0398650370477
2.1176470588235 0.0325262138331
2.3529411764706 0.0264576828231
2.5882352941176 0.0215390502139
2.8235294117647 0.0175911271002
3.0588235294118 0.0144335885453
3.2941176470588 0.0119075533192
3.5294117647059 0.0098814568142
3.7647058823529 0.0082498040142
4.0000000000000 0.0069294271865
"x-label z
"y-label ADMBASE::kxx (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0069279850031
-3.7647058823529 0.0082480056920
-3.5294117647059 0.0098790445461
-3.2941176470588 0.0119040765062
-3.0588235294118 0.0144282724779
-2.8235294117647 0.0175826661130
-2.5882352941176 0.0215252937844
-2.3529411764706 0.0264351898748
-2.1176470588235 0.0324896971187
-1.8823529411765 0.0398068667234
-1.6470588235294 0.0483218072785
-1.4117647058824 0.0575541278738
-1.1764705882353 0.0662380502697
-0.9411764705882 0.0718942614892
-0.7058823529412 0.0707208615904
-0.4705882352941 0.0585962720729
-0.2352941176471 0.0337871715619
0.0000000000000 0.0000000000000
0.2352941176471 -0.0339142752271
0.4705882352941 -0.0590067995549
0.7058823529412 -0.0713882792271
0.9411764705882 -0.0726865639327
1.1764705882353 -0.0670248117408
1.4117647058824 -0.0582555505830
1.6470588235294 -0.0489074211223
1.8823529411765 -0.0402770344801
2.1176470588235 -0.0328589405562
2.3529411764706 -0.0267220082875
2.5882352941176 -0.0217472568187
2.8235294117647 -0.0177546112359
3.0588235294118 -0.0145620171174
3.2941176470588 -0.0120087437905
3.5294117647059 -0.0099615631336
3.7647058823529 -0.0083135968563
4.0000000000000 -0.0069805727479
"x-label diagonal
"y-label ADMBASE::kxy
"Time = 0.0000000000000
-6.9282032302755 0.0063217241487
-6.5206618637887 0.0072392721019
-6.1131204973019 0.0083097523371
-5.7055791308151 0.0095457841506
-5.2980377643283 0.0109411154150
-4.8904963978415 0.0124415454396
-4.4829550313547 0.0138786559216
-4.0754136648679 0.0148162517881
-3.6678722983812 0.0141852093604
-3.2603309318944 0.0093897501838
-2.8527895654076 -0.0059245445067
-2.4452481989208 -0.0473452275726
-2.0377068324340 -0.1512368750899
-1.6301654659472 -0.3845167716205
-1.2226240994604 -0.7793794791788
-0.8150827329736 -1.1221300527883
-0.4075413664868 -1.1430904291416
0.0000000000000 -1.0199714933236
0.4075413664868 -0.9420652625330
0.8150827329736 -0.8082611364660
1.2226240994604 -0.5338840968778
1.6301654659472 -0.2694621509370
2.0377068324340 -0.1142425657309
2.4452481989208 -0.0413531632050
2.8527895654076 -0.0097674464939
3.2603309318944 0.0033563605093
3.6678722983812 0.0084036437059
4.0754136648679 0.0099172962593
4.4829550313547 0.0099027895967
4.8904963978415 0.0092617860340
5.2980377643283 0.0084042198876
5.7055791308151 0.0075151202093
6.1131204973019 0.0066745032509
6.5206618637887 0.0059128687581
6.9282032302755 0.0052375329546
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 8.8238494450507
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 -90.1534907311166
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 0.1054885347330
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 0.5449940428322
"x-label x
"y-label ADMBASE::kxy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0894811265949
-3.7647058823529 0.0990579743927
-3.5294117647059 0.1079984095794
-3.2941176470588 0.1139090720663
-3.0588235294118 0.1111226768326
-2.8235294117647 0.0857568330873
-2.5882352941176 0.0012504619200
-2.3529411764706 -0.2509022318376
-2.1176470588235 -1.0614471040465
-1.8823529411765 -4.4143933810572
-1.6470588235294 -33.1399270825232
-1.4117647058824 -90.1534907311166
-1.1764705882353 -12.2336040185996
-0.9411764705882 -4.6376913163278
-0.7058823529412 -2.4522890857357
-0.4705882352941 -1.5736461955819
-0.2352941176471 -1.1773596302519
0.0000000000000 -1.0199714933236
0.2352941176471 -1.0257283093522
0.4705882352941 -1.1987005836342
0.7058823529412 -1.6310842911297
0.9411764705882 -2.6386135038612
1.1764705882353 -5.5669544634019
1.4117647058824 -26.7659783987904
1.6470588235294 -8.1988087225287
1.8823529411765 -0.6430788190825
2.1176470588235 0.2006181967467
2.3529411764706 0.3291308134065
2.5882352941176 0.3187249923615
2.8235294117647 0.2798495985208
3.0588235294118 0.2391630341498
3.2941176470588 0.2031876596625
3.5294117647059 0.1729326201360
3.7647058823529 0.1478885936718
4.0000000000000 0.1272188929344
"x-label y
"y-label ADMBASE::kxy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0948303094036
-3.7647058823529 -0.1079465534242
-3.5294117647059 -0.1235024887260
-3.2941176470588 -0.1420472961841
-3.0588235294118 -0.1642684533751
-2.8235294117647 -0.1910237018408
-2.5882352941176 -0.2233744149003
-2.3529411764706 -0.2626124119935
-2.1176470588235 -0.3102620115601
-1.8823529411765 -0.3680196200417
-1.6470588235294 -0.4375593815437
-1.4117647058824 -0.5200839806421
-1.1764705882353 -0.6154537008765
-0.9411764705882 -0.7207646176897
-0.7058823529412 -0.8285612035533
-0.4705882352941 -0.9256842480251
-0.2352941176471 -0.9947714917599
0.0000000000000 -1.0199714933236
0.2352941176471 -0.9947405034442
0.4705882352941 -0.9256426574808
0.7058823529412 -0.8285327818065
0.9411764705882 -0.7207620103561
1.1764705882353 -0.6154767276448
1.4117647058824 -0.5201254033676
1.6470588235294 -0.4376106257531
1.8823529411765 -0.3680737404992
2.1176470588235 -0.3103144297678
2.3529411764706 -0.2626605916438
2.5882352941176 -0.2234172538058
2.8235294117647 -0.1910609824840
3.0588235294118 -0.1643004447218
3.2941176470588 -0.1420744971265
3.5294117647059 -0.1235254759546
3.7647058823529 -0.1079658978927
4.0000000000000 -0.0948465346156
"x-label z
"y-label ADMBASE::kxy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0740428397207
-3.7647058823529 -0.0851390532401
-3.5294117647059 -0.0985071493307
-3.2941176470588 -0.1147236616858
-3.0588235294118 -0.1345346639903
-2.8235294117647 -0.1589065771040
-2.5882352941176 -0.1890873317300
-2.3529411764706 -0.2266720343570
-2.1176470588235 -0.2736540297757
-1.8823529411765 -0.3324129481757
-1.6470588235294 -0.4055326462728
-1.4117647058824 -0.4952405745904
-1.1764705882353 -0.6021330996204
-0.9411764705882 -0.7228412926750
-0.7058823529412 -0.8468303169110
-0.4705882352941 -0.9542359821578
-0.2352941176471 -1.0189565011846
0.0000000000000 -1.0199714933236
0.2352941176471 -0.9549611542795
0.4705882352941 -0.8429077929063
0.7058823529412 -0.7120455939084
0.9411764705882 -0.5854341541748
1.1764705882353 -0.4752354850123
1.4117647058824 -0.3847650611113
1.6470588235294 -0.3126324697900
1.8823529411765 -0.2557850824820
2.1176470588235 -0.2110462101165
2.3529411764706 -0.1756873802224
2.5882352941176 -0.1475426357494
2.8235294117647 -0.1249513402879
3.0588235294118 -0.1066577153062
3.2941176470588 -0.0917148885663
3.5294117647059 -0.0794068425967
3.7647058823529 -0.0691889164842
4.0000000000000 -0.0606437257470
"x-label diagonal
"y-label ADMBASE::kxz
"Time = 0.0000000000000
-6.9282032302755 0.0045218301605
-6.5206618637887 0.0052775307259
-6.1131204973019 0.0062139311994
-5.7055791308151 0.0073895883659
-5.2980377643283 0.0088880408584
-4.8904963978415 0.0108316240323
-4.4829550313547 0.0134050143847
-4.0754136648679 0.0168969554147
-3.6678722983812 0.0217770336189
-3.2603309318944 0.0288404828870
-2.8527895654076 0.0394753956301
-2.4452481989208 0.0560653879200
-2.0377068324340 0.0819462852381
-1.6301654659472 0.1170335649389
-1.2226240994604 0.1389592089110
-0.8150827329736 0.0944373794060
-0.4075413664868 -0.0123063224066
0.0000000000000 -0.1133301659248
0.4075413664868 -0.1806242458340
0.8150827329736 -0.1712557882957
1.2226240994604 -0.0732630729827
1.6301654659472 0.0147143556757
2.0377068324340 0.0477265175763
2.4452481989208 0.0497897886120
2.8527895654076 0.0424456493328
3.2603309318944 0.0340853158768
3.6678722983812 0.0269752655571
4.0754136648679 0.0213958424629
4.4829550313547 0.0171173892140
4.8904963978415 0.0138431792860
5.2980377643283 0.0113212030303
5.7055791308151 0.0093593679948
6.1131204973019 0.0078163902214
6.5206618637887 0.0065893203922
6.9282032302755 0.0056029919971
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 5.7554874950139
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 -22.7468724200166
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 0.0321390705293
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 0.1742217396041
"x-label x
"y-label ADMBASE::kxz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0044866188626
-3.7647058823529 -0.0048924483961
-3.5294117647059 -0.0053257918645
-3.2941176470588 -0.0057778043898
-3.0588235294118 -0.0062294891611
-2.8235294117647 -0.0066433151622
-2.5882352941176 -0.0069474221380
-2.3529411764706 -0.0070051944720
-2.1176470588235 -0.0065565084314
-1.8823529411765 -0.0051157763283
-1.6470588235294 -0.0019813979614
-1.4117647058824 -0.0011525241617
-1.1764705882353 -0.0081284476780
-0.9411764705882 -0.0174494372040
-0.7058823529412 -0.0297896757178
-0.4705882352941 -0.0470963475257
-0.2352941176471 -0.0728079057663
0.0000000000000 -0.1133301659248
0.2352941176471 -0.1816347174405
0.4705882352941 -0.3069056419438
0.7058823529412 -0.5649006466187
0.9411764705882 -1.1992575475543
1.1764705882353 -3.3534940842016
1.4117647058824 -22.7468724200166
1.6470588235294 -11.6010700655630
1.8823529411765 -2.5935273328723
2.1176470588235 -1.0596066164440
2.3529411764706 -0.5480165249007
2.5882352941176 -0.3237318553392
2.8235294117647 -0.2085898177050
3.0588235294118 -0.1429397227041
3.2941176470588 -0.1025745265934
3.5294117647059 -0.0762970383079
3.7647058823529 -0.0584061899180
4.0000000000000 -0.0457767900772
"x-label y
"y-label ADMBASE::kxz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0056291964486
-3.7647058823529 0.0066051047087
-3.5294117647059 0.0077801991310
-3.2941176470588 0.0091946978778
-3.0588235294118 0.0108924623502
-2.8235294117647 0.0129159632539
-2.5882352941176 0.0152946876643
-2.3529411764706 0.0180209902390
-2.1176470588235 0.0210029646875
-1.8823529411765 0.0239777852090
-1.6470588235294 0.0263638997537
-1.4117647058824 0.0270380051098
-1.1764705882353 0.0240751150148
-0.9411764705882 0.0146472625756
-0.7058823529412 -0.0044335978786
-0.4705882352941 -0.0348846123104
-0.2352941176471 -0.0740323999496
0.0000000000000 -0.1133301659248
0.2352941176471 -0.1417147508972
0.4705882352941 -0.1523838279904
0.7058823529412 -0.1463037112350
0.9411764705882 -0.1295714694479
1.1764705882353 -0.1087571746778
1.4117647058824 -0.0883311847105
1.6470588235294 -0.0704560481066
1.8823529411765 -0.0557487627465
2.1176470588235 -0.0440459145656
2.3529411764706 -0.0348910692229
2.5882352941176 -0.0277804795372
2.8235294117647 -0.0222637702361
3.0588235294118 -0.0179725934290
3.2941176470588 -0.0146186480481
3.5294117647059 -0.0119812663872
3.7647058823529 -0.0098933196577
4.0000000000000 -0.0082286947840
"x-label z
"y-label ADMBASE::kxz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0079383161494
-3.7647058823529 0.0087072811315
-3.5294117647059 0.0095231083823
-3.2941176470588 0.0103608396972
-3.0588235294118 0.0111734783565
-2.8235294117647 0.0118779959495
-2.5882352941176 0.0123333986111
-2.3529411764706 0.0123072654822
-2.1176470588235 0.0114271361190
-1.8823529411765 0.0091163090918
-1.6470588235294 0.0045259395823
-1.4117647058824 -0.0034913349629
-1.1764705882353 -0.0162510510588
-0.9411764705882 -0.0347356771962
-0.7058823529412 -0.0585007127126
-0.4705882352941 -0.0841962365263
-0.2352941176471 -0.1050466351134
0.0000000000000 -0.1133301659248
0.2352941176471 -0.1054418091312
0.4705882352941 -0.0847861182330
0.7058823529412 -0.0590528045077
0.9411764705882 -0.0351184777334
1.1764705882353 -0.0164440775864
1.4117647058824 -0.0035338845023
1.6470588235294 0.0045807896184
1.8823529411765 0.0092239838462
2.1176470588235 0.0115570048280
2.3529411764706 0.0124407977309
2.5882352941176 0.0124605772971
2.8235294117647 0.0119941537301
3.0588235294118 0.0112770522831
3.2941176470588 0.0104519379823
3.5294117647059 0.0096026538737
3.7647058823529 0.0087765246225
4.0000000000000 0.0079985729403
"x-label diagonal
"y-label ADMBASE::kyy
"Time = 0.0000000000000
-6.9282032302755 0.0290471449357
-6.5206618637887 0.0343285727757
-6.1131204973019 0.0409837675695
-5.7055791308151 0.0494924299880
-5.2980377643283 0.0605496738547
-4.8904963978415 0.0751861777465
-4.4829550313547 0.0949682031769
-4.0754136648679 0.1223364055766
-3.6678722983812 0.1611814991038
-3.2603309318944 0.2177870926048
-2.8527895654076 0.3021328415090
-2.4452481989208 0.4283904616542
-2.0377068324340 0.6077322122247
-1.6301654659472 0.8088083198579
-1.2226240994604 0.8678463034741
-0.8150827329736 0.5833422540481
-0.4075413664868 0.1758125324042
0.0000000000000 0.0000000000000
0.4075413664868 0.0770979980637
0.8150827329736 0.2892904985351
1.2226240994604 0.4373405466688
1.6301654659472 0.4287147138850
2.0377068324340 0.3465059759901
2.4452481989208 0.2629185164440
2.8527895654076 0.1977947161215
3.2603309318944 0.1504287454714
3.6678722983812 0.1163163417678
4.0754136648679 0.0915039086602
4.4829550313547 0.0731609988896
4.8904963978415 0.0593613441487
5.2980377643283 0.0488025317881
5.7055791308151 0.0405957600315
6.1131204973019 0.0341252879515
6.5206618637887 0.0289573183710
6.9282032302755 0.0247810547282
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 16.5302601453905
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 -16.5305128909204
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 0.1056811589532
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 0.2989270372612
"x-label x
"y-label ADMBASE::kyy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kyy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0069282417829
-3.7647058823529 0.0082483258801
-3.5294117647059 0.0098796179441
-3.2941176470588 0.0119052735527
-3.0588235294118 0.0144307781455
-2.8235294117647 0.0175876946435
-2.5882352941176 0.0215349202314
-2.3529411764706 0.0264528297086
-2.1176470588235 0.0325207195161
-1.8823529411765 0.0398591754124
-1.6470588235294 0.0484058487281
-1.4117647058824 0.0576810775676
-1.1764705882353 0.0664141103858
-0.9411764705882 0.0721096003721
-0.7058823529412 0.0709375660581
-0.4705882352941 0.0587530312596
-0.2352941176471 0.0338433828341
0.0000000000000 0.0000000000000
0.2352941176471 -0.0338423285725
0.4705882352941 -0.0587503915144
0.7058823529412 -0.0709351327200
0.9411764705882 -0.0721093395188
1.1764705882353 -0.0664165952231
1.4117647058824 -0.0576856716477
1.6470588235294 -0.0484115177174
1.8823529411765 -0.0398650370477
2.1176470588235 -0.0325262138331
2.3529411764706 -0.0264576828231
2.5882352941176 -0.0215390502139
2.8235294117647 -0.0175911271002
3.0588235294118 -0.0144335885453
3.2941176470588 -0.0119075533192
3.5294117647059 -0.0098814568142
3.7647058823529 -0.0082498040142
4.0000000000000 -0.0069294271865
"x-label z
"y-label ADMBASE::kyy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::kyz
"Time = 0.0000000000000
-6.9282032302755 0.0241259489381
-6.5206618637887 0.0282736134728
-6.1131204973019 0.0334272915764
-5.7055791308151 0.0399092214355
-5.2980377643283 0.0481717764901
-4.8904963978415 0.0588611154952
-4.4829550313547 0.0729164707299
-4.0754136648679 0.0917251628309
-3.6678722983812 0.1173586874984
-3.2603309318944 0.1528984202846
-2.8527895654076 0.2027270517371
-2.4452481989208 0.2720299606089
-2.0377068324340 0.3622946641252
-1.6301654659472 0.4532178263561
-1.2226240994604 0.4671622486241
-0.8150827329736 0.3135394024993
-0.4075413664868 0.0927839171049
0.0000000000000 0.0000000000000
0.4075413664868 0.0901573681415
0.8150827329736 0.2988414331271
1.2226240994604 0.4428907863881
1.6301654659472 0.4316392175409
2.0377068324340 0.3477876198872
2.4452481989208 0.2631849399212
2.8527895654076 0.1974541776375
3.2603309318944 0.1497446578899
3.6678722983812 0.1154550442975
4.0754136648679 0.0905680314726
4.4829550313547 0.0722122813849
4.8904963978415 0.0584357035619
5.2980377643283 0.0479197728271
5.7055791308151 0.0397657439002
6.1131204973019 0.0333518229094
6.5206618637887 0.0282406033284
6.9282032302755 0.0241192088858
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 21.5599472634425
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 -13.1882338111407
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 0.0932881069059
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 0.2580459099520
"x-label x
"y-label ADMBASE::kyz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kyz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0219394323126
-3.7647058823529 -0.0248258435803
-3.5294117647059 -0.0281859688405
-3.2941176470588 -0.0320975512451
-3.0588235294118 -0.0366428582322
-2.8235294117647 -0.0419000960626
-2.5882352941176 -0.0479257538483
-2.3529411764706 -0.0547210496914
-2.1176470588235 -0.0621719637808
-1.8823529411765 -0.0699489450865
-1.6470588235294 -0.0773544445361
-1.4117647058824 -0.0831286117887
-1.1764705882353 -0.0852965535347
-0.9411764705882 -0.0813000396352
-0.7058823529412 -0.0688511670564
-0.4705882352941 -0.0478088391622
-0.2352941176471 -0.0222304573518
0.0000000000000 0.0000000000000
0.2352941176471 0.0116125637258
0.4705882352941 0.0109437003801
0.7058823529412 0.0020863274329
0.9411764705882 -0.0091904060171
1.1764705882353 -0.0188831496223
1.4117647058824 -0.0254495610210
1.6470588235294 -0.0289519860859
1.8823529411765 -0.0300941946341
2.1176470588235 -0.0296562537890
2.3529411764706 -0.0282734061541
2.5882352941176 -0.0263958948699
2.8235294117647 -0.0243171462855
3.0588235294118 -0.0222164058981
3.2941176470588 -0.0201961443551
3.5294117647059 -0.0183097582145
3.7647058823529 -0.0165804884599
4.0000000000000 -0.0150137589041
"x-label z
"y-label ADMBASE::kyz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0219386191765
-3.7647058823529 0.0248248798768
-3.5294117647059 0.0281843329698
-3.2941176470588 0.0320943239137
-3.0588235294118 0.0366364958018
-2.8235294117647 0.0418881163280
-2.5882352941176 0.0479043302849
-2.3529411764706 0.0546845594470
-2.1176470588235 0.0621126562564
-1.8823529411765 0.0698571484655
-1.6470588235294 0.0772201430039
-1.4117647058824 0.0829456548769
-1.1764705882353 0.0850704371110
-0.9411764705882 0.0810572556006
-0.7058823529412 0.0686408362495
-0.4705882352941 0.0476812802162
-0.2352941176471 0.0221935342612
0.0000000000000 0.0000000000000
0.2352941176471 -0.0116372513034
0.4705882352941 -0.0109914626622
0.7058823529412 -0.0020996552714
0.9411764705882 0.0092639738346
1.1764705882353 0.0190560739263
1.4117647058824 0.0257009781984
1.6470588235294 0.0292485557692
1.8823529411765 0.0304052123036
2.1176470588235 0.0299596222718
2.3529411764706 0.0285558716013
2.5882352941176 0.0266510500229
2.8235294117647 0.0245431390614
3.0588235294118 0.0224140851709
3.2941176470588 0.0203677713310
3.5294117647059 0.0184581905123
3.7647058823529 0.0167086995642
4.0000000000000 0.0151245742870
"x-label diagonal
"y-label ADMBASE::kzz
"Time = 0.0000000000000
-6.9282032302755 -0.0162754760516
-6.5206618637887 -0.0192543457222
-6.1131204973019 -0.0230095962989
-5.7055791308151 -0.0278113376520
-5.2980377643283 -0.0340496757933
-4.8904963978415 -0.0423002945311
-4.4829550313547 -0.0534321081419
-4.0754136648679 -0.0687859693947
-3.6678722983812 -0.0904689881326
-3.2603309318944 -0.1218105333204
-2.8527895654076 -0.1679087556353
-2.4452481989208 -0.2354745306346
-2.0377068324340 -0.3280627182378
-1.6301654659472 -0.4245097003548
-1.2226240994604 -0.4382100529915
-0.8150827329736 -0.2834944844648
-0.4075413664868 -0.0875478961122
0.0000000000000 0.0000000000000
0.4075413664868 0.0086680221298
0.8150827329736 -0.0034988676653
1.2226240994604 -0.0300260913644
1.6301654659472 -0.0627133216669
2.0377068324340 -0.0780350397603
2.4452481989208 -0.0762752231774
2.8527895654076 -0.0670617613025
3.2603309318944 -0.0564318486510
3.6678722983812 -0.0467508391144
4.0754136648679 -0.0386290219899
4.4829550313547 -0.0320260378544
4.8904963978415 -0.0267131398668
5.2980377643283 -0.0224411646236
5.7055791308151 -0.0189926133326
6.1131204973019 -0.0161916968978
6.5206618637887 -0.0139006908511
6.9282032302755 -0.0120129538577
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 8.7163361404000
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 -8.7186143564285
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 0.0630342538702
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 0.1823506477441
"x-label x
"y-label ADMBASE::kzz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kzz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::kzz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0069279850031
-3.7647058823529 -0.0082480056920
-3.5294117647059 -0.0098790445461
-3.2941176470588 -0.0119040765062
-3.0588235294118 -0.0144282724779
-2.8235294117647 -0.0175826661130
-2.5882352941176 -0.0215252937844
-2.3529411764706 -0.0264351898748
-2.1176470588235 -0.0324896971187
-1.8823529411765 -0.0398068667234
-1.6470588235294 -0.0483218072785
-1.4117647058824 -0.0575541278738
-1.1764705882353 -0.0662380502697
-0.9411764705882 -0.0718942614892
-0.7058823529412 -0.0707208615904
-0.4705882352941 -0.0585962720729
-0.2352941176471 -0.0337871715619
0.0000000000000 0.0000000000000
0.2352941176471 0.0339142752271
0.4705882352941 0.0590067995549
0.7058823529412 0.0713882792271
0.9411764705882 0.0726865639327
1.1764705882353 0.0670248117408
1.4117647058824 0.0582555505830
1.6470588235294 0.0489074211223
1.8823529411765 0.0402770344801
2.1176470588235 0.0328589405562
2.3529411764706 0.0267220082875
2.5882352941176 0.0217472568187
2.8235294117647 0.0177546112359
3.0588235294118 0.0145620171174
3.2941176470588 0.0120087437905
3.5294117647059 0.0099615631336
3.7647058823529 0.0083135968563
4.0000000000000 0.0069805727479
"x-label diagonal
"y-label ADMCONSTRAINTS::momx
"Time = 0.0000000000000
-6.9282032302755 0.0000022379125
-6.5206618637887 0.0000022379125
-6.1131204973019 0.0000035837810
-5.7055791308151 0.0000057916959
-5.2980377643283 0.0000094552981
-4.8904963978415 0.0000155832663
-4.4829550313547 0.0000258286359
-4.0754136648679 0.0000425966050
-3.6678722983812 0.0000679860206
-3.2603309318944 0.0000968572497
-2.8527895654076 0.0000854405479
-2.4452481989208 -0.0001621132537
-2.0377068324340 -0.0012299164378
-1.6301654659472 -0.0034298356552
-1.2226240994604 -0.0017581361694
-0.8150827329736 0.0067341270145
-0.4075413664868 0.0048814426687
0.0000000000000 0.0000040142443
0.4075413664868 -0.0040991972750
0.8150827329736 -0.0051991750367
1.2226240994604 0.0015024441253
1.6301654659472 0.0027711015312
2.0377068324340 0.0010014711496
2.4452481989208 0.0001251252514
2.8527895654076 -0.0000809113013
3.2603309318944 -0.0000889654441
3.6678722983812 -0.0000626874322
4.0754136648679 -0.0000396059398
4.4829550313547 -0.0000242518443
4.8904963978415 -0.0000147929345
5.2980377643283 -0.0000090870847
5.7055791308151 -0.0000056452679
6.1131204973019 -0.0000035510006
6.5206618637887 -0.0000022609856
6.9282032302755 -0.0000022609856
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 1.1862303295139
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 -1.1861867788844
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 0.0008665577487
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 0.0110525635028
"x-label x
"y-label ADMCONSTRAINTS::momx (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000993904
-3.7647058823529 0.0000000993904
-3.5294117647059 0.0000001489706
-3.2941176470588 0.0000002382470
-3.0588235294118 0.0000004064975
-2.8235294117647 0.0000007405796
-2.5882352941176 0.0000014396916
-2.3529411764706 0.0000029587256
-2.1176470588235 0.0000061702853
-1.8823529411765 0.0000110009508
-1.6470588235294 0.0000063356816
-1.4117647058824 0.0000012619990
-1.1764705882353 -0.0000021294937
-0.9411764705882 -0.0000026713808
-0.7058823529412 -0.0000008464271
-0.4705882352941 0.0000008894228
-0.2352941176471 0.0000024181665
0.0000000000000 0.0000040142443
0.2352941176471 0.0000059922660
0.4705882352941 0.0000087048253
0.7058823529412 0.0000124798517
0.9411764705882 0.0000168945575
1.1764705882353 0.0000168722833
1.4117647058824 0.0000019424418
1.6470588235294 0.0000046355118
1.8823529411765 0.0000097847890
2.1176470588235 0.0000062543214
2.3529411764706 0.0000033700771
2.5882352941176 0.0000018109859
2.8235294117647 0.0000010097610
3.0588235294118 0.0000005897941
3.2941176470588 0.0000003611983
3.5294117647059 0.0000002315072
3.7647058823529 0.0000001548781
4.0000000000000 0.0000001548781
"x-label y
"y-label ADMCONSTRAINTS::momx (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0002678030149
-3.7647058823529 -0.0002678030149
-3.5294117647059 -0.0003175359443
-3.2941176470588 -0.0003745772731
-3.0588235294118 -0.0004375482059
-2.8235294117647 -0.0005025250051
-2.5882352941176 -0.0005609629601
-2.3529411764706 -0.0005963964224
-2.1176470588235 -0.0005796767258
-1.8823529411765 -0.0004633500629
-1.6470588235294 -0.0001784168083
-1.4117647058824 0.0003570559195
-1.1764705882353 0.0011975586329
-0.9411764705882 0.0022725765444
-0.7058823529412 0.0032430638858
-0.4705882352941 0.0034595621597
-0.2352941176471 0.0023192042755
0.0000000000000 0.0000040142443
0.2352941176471 -0.0023112922931
0.4705882352941 -0.0034524243960
0.7058823529412 -0.0032376208372
0.9411764705882 -0.0022691021616
1.1764705882353 -0.0011955952517
1.4117647058824 -0.0003559497634
1.6470588235294 0.0001791421551
1.8823529411765 0.0004639360294
2.1176470588235 0.0005802098602
2.3529411764706 0.0005968918822
2.5882352941176 0.0005614137721
2.8235294117647 0.0005029231251
3.0588235294118 0.0004378905053
3.2941176470588 0.0003748654443
3.5294117647059 0.0003177747555
3.7647058823529 0.0002679986218
4.0000000000000 0.0002679986218
"x-label z
"y-label ADMCONSTRAINTS::momx (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000043739770
-3.7647058823529 -0.0000043739770
-3.5294117647059 -0.0000096157148
-3.2941176470588 -0.0000176566045
-3.0588235294118 -0.0000296934238
-2.8235294117647 -0.0000472136332
-2.5882352941176 -0.0000717735690
-2.3529411764706 -0.0001042734716
-2.1176470588235 -0.0001431528733
-1.8823529411765 -0.0001805923187
-1.6470588235294 -0.0001958887396
-1.4117647058824 -0.0001473721928
-1.1764705882353 0.0000276807718
-0.9411764705882 0.0003793841867
-0.7058823529412 0.0008472516841
-0.4705882352941 0.0011466713632
-0.2352941176471 0.0008772058113
0.0000000000000 0.0000040142443
0.2352941176471 -0.0008812719348
0.4705882352941 -0.0011694225489
0.7058823529412 -0.0008731613127
0.9411764705882 -0.0003948189230
1.1764705882353 -0.0000311346796
1.4117647058824 0.0001510386825
1.6470588235294 0.0002018697121
1.8823529411765 0.0001862025094
2.1176470588235 0.0001474424677
2.3529411764706 0.0001071933139
2.5882352941176 0.0000735991624
2.8235294117647 0.0000482658593
3.0588235294118 0.0000302379816
3.2941176470588 0.0000178853261
3.5294117647059 0.0000096571729
3.7647058823529 0.0000043103655
4.0000000000000 0.0000043103655
"x-label diagonal
"y-label ADMCONSTRAINTS::momy
"Time = 0.0000000000000
-6.9282032302755 -0.0000361141067
-6.5206618637887 -0.0000361141067
-6.1131204973019 -0.0000486845828
-5.7055791308151 -0.0000665334794
-5.2980377643283 -0.0000922340780
-4.8904963978415 -0.0001297397465
-4.4829550313547 -0.0001851154945
-4.0754136648679 -0.0002675503654
-3.6678722983812 -0.0003906666494
-3.2603309318944 -0.0005749937313
-2.8527895654076 -0.0008614913228
-2.4452481989208 -0.0014067049234
-2.0377068324340 -0.0029873862273
-1.6301654659472 -0.0080866926865
-1.2226240994604 -0.0150039462010
-0.8150827329736 -0.0042614144598
-0.4075413664868 0.0077707762638
0.0000000000000 0.0021258627752
0.4075413664868 -0.0018611026081
0.8150827329736 0.0037481188779
1.2226240994604 0.0063908322428
1.6301654659472 0.0026743463491
2.0377068324340 0.0007953301951
2.4452481989208 0.0004288499340
2.8527895654076 0.0003511293704
3.2603309318944 0.0002866942431
3.6678722983812 0.0002215631366
4.0754136648679 0.0001657276037
4.4829550313547 0.0001223188212
4.8904963978415 0.0000900979252
5.2980377643283 0.0000666381542
5.7055791308151 0.0000496472133
6.1131204973019 0.0000373158239
6.5206618637887 0.0000283128960
6.9282032302755 0.0000283128960
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 1.8256036698110
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 -1.0871472467826
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 0.0012791745512
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 0.0160414574762
"x-label x
"y-label ADMCONSTRAINTS::momy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0006590751558
-3.7647058823529 -0.0006590751558
-3.5294117647059 -0.0012754198964
-3.2941176470588 -0.0025264970275
-3.0588235294118 -0.0052093917732
-2.8235294117647 -0.0113964446876
-2.5882352941176 -0.0271169805843
-2.3529411764706 -0.0727572532928
-2.1176470588235 -0.2341525948353
-1.8823529411765 -1.0871472467826
-1.6470588235294 -0.7958018507059
-1.4117647058824 0.5736966185201
-1.1764705882353 1.8256036698110
-0.9411764705882 0.3074876303828
-0.7058823529412 0.0875343708881
-0.4705882352941 0.0299081306966
-0.2352941176471 0.0105412662054
0.0000000000000 0.0021258627752
0.2352941176471 -0.0037525092354
0.4705882352941 -0.0117991191646
0.7058823529412 -0.0292575994688
0.9411764705882 -0.0775428423461
1.1764705882353 -0.2762783189308
1.4117647058824 -0.0526326084617
1.6470588235294 0.0873877677400
1.8823529411765 0.1652398127778
2.1176470588235 0.0474432110176
2.3529411764706 0.0162814466230
2.5882352941176 0.0060061234730
2.8235294117647 0.0022504523883
3.0588235294118 0.0007839653046
3.2941176470588 0.0001925118173
3.5294117647059 -0.0000436671878
3.7647058823529 -0.0001301072047
4.0000000000000 -0.0001301072047
"x-label y
"y-label ADMCONSTRAINTS::momy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000267769689
-3.7647058823529 0.0000267769689
-3.5294117647059 0.0000314757794
-3.2941176470588 0.0000362127511
-3.0588235294118 0.0000400952867
-2.8235294117647 0.0000413528551
-2.5882352941176 0.0000367235076
-2.3529411764706 0.0000205976706
-2.1176470588235 -0.0000158620090
-1.8823529411765 -0.0000846745273
-1.6470588235294 -0.0001973551766
-1.4117647058824 -0.0003518089921
-1.1764705882353 -0.0005023227208
-0.9411764705882 -0.0005175128339
-0.7058823529412 -0.0001818831326
-0.4705882352941 0.0006354696443
-0.2352941176471 0.0016462401421
0.0000000000000 0.0021258627752
0.2352941176471 0.0016451437866
0.4705882352941 0.0006340439212
0.7058823529412 -0.0001831103146
0.9411764705882 -0.0005184976993
1.1764705882353 -0.0005031393537
1.4117647058824 -0.0003524778188
1.6470588235294 -0.0001978733742
1.8823529411765 -0.0000850528485
2.1176470588235 -0.0000161260600
2.3529411764706 0.0000204182796
2.5882352941176 0.0000366028925
2.8235294117647 0.0000412714468
3.0588235294118 0.0000400394637
3.2941176470588 0.0000361734760
3.5294117647059 0.0000314472135
3.7647058823529 0.0000267553880
4.0000000000000 0.0000267553880
"x-label z
"y-label ADMCONSTRAINTS::momy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000383386241
-3.7647058823529 0.0000383386241
-3.5294117647059 0.0000420522533
-3.2941176470588 0.0000446685119
-3.0588235294118 0.0000449819076
-2.8235294117647 0.0000411689405
-2.5882352941176 0.0000307371590
-2.3529411764706 0.0000108878317
-2.1176470588235 -0.0000199713235
-1.8823529411765 -0.0000580614185
-1.6470588235294 -0.0000850227860
-1.4117647058824 -0.0000519215719
-1.1764705882353 0.0001375020211
-0.9411764705882 0.0006136947864
-0.7058823529412 0.0014330095824
-0.4705882352941 0.0023541494574
-0.2352941176471 0.0027531815723
0.0000000000000 0.0021258627752
0.2352941176471 0.0008132125522
0.4705882352941 -0.0002758081188
0.7058823529412 -0.0006686614643
0.9411764705882 -0.0005584560962
1.1764705882353 -0.0003047199489
1.4117647058824 -0.0001048172695
1.6470588235294 0.0000021985787
1.8823529411765 0.0000414983577
2.1176470588235 0.0000451333878
2.3529411764706 0.0000346936128
2.5882352941176 0.0000213370845
2.8235294117647 0.0000096751189
3.0588235294118 0.0000009987182
3.2941176470588 -0.0000048134374
3.5294117647059 -0.0000083437809
3.7647058823529 -0.0000102238645
4.0000000000000 -0.0000102238645
"x-label diagonal
"y-label ADMCONSTRAINTS::momz
"Time = 0.0000000000000
-6.9282032302755 -0.0000109912860
-6.5206618637887 -0.0000109912860
-6.1131204973019 -0.0000142158100
-5.7055791308151 -0.0000184421463
-5.2980377643283 -0.0000238913695
-4.8904963978415 -0.0000306402261
-4.4829550313547 -0.0000382011732
-4.0754136648679 -0.0000443312836
-3.6678722983812 -0.0000416978794
-3.2603309318944 -0.0000085655824
-2.8527895654076 0.0001166383751
-2.4452481989208 0.0004964679828
-2.0377068324340 0.0014603694840
-1.6301654659472 0.0029771295848
-1.2226240994604 0.0020219217665
-0.8150827329736 -0.0031426183686
-0.4075413664868 -0.0029487780714
0.0000000000000 -0.0015393735430
0.4075413664868 -0.0016063315959
0.8150827329736 0.0023117330724
1.2226240994604 0.0037067819745
1.6301654659472 0.0013389904327
2.0377068324340 0.0004672839464
2.4452481989208 0.0003774938109
2.8527895654076 0.0003299490457
3.2603309318944 0.0002562548288
3.6678722983812 0.0001859785595
4.0754136648679 0.0001313959595
4.4829550313547 0.0000923330208
4.8904963978415 0.0000652164921
5.2980377643283 0.0000465291905
5.7055791308151 0.0000336028286
6.1131204973019 0.0000245810309
6.5206618637887 0.0000182126991
6.9282032302755 0.0000182126991
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 0.4226376859681
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 -0.4226426936067
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 0.0008114505896
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 0.0079337072604
"x-label x
"y-label ADMCONSTRAINTS::momz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000009074279
-3.7647058823529 -0.0000009074279
-3.5294117647059 0.0000001116524
-3.2941176470588 0.0000018643485
-3.0588235294118 0.0000047207828
-2.8235294117647 0.0000091598575
-2.5882352941176 0.0000156164110
-2.3529411764706 0.0000237788799
-2.1176470588235 0.0000300954800
-1.8823529411765 0.0000207761439
-1.6470588235294 -0.0000130298873
-1.4117647058824 0.0000045379464
-1.1764705882353 0.0000186838829
-0.9411764705882 -0.0000091959206
-0.7058823529412 -0.0000833120833
-0.4705882352941 -0.0002606839388
-0.2352941176471 -0.0006564613856
0.0000000000000 -0.0015393735430
0.2352941176471 -0.0035861315823
0.4705882352941 -0.0086549366935
0.7058823529412 -0.0224390518168
0.9411764705882 -0.0651433802563
1.1764705882353 -0.2571606988812
1.4117647058824 -0.0485005285379
1.6470588235294 0.0877677491100
1.8823529411765 0.1845249023855
2.1176470588235 0.0605170197066
2.3529411764706 0.0246004726514
2.5882352941176 0.0113386937292
2.8235294117647 0.0057520420434
3.0588235294118 0.0031467602095
3.2941176470588 0.0018291792216
3.5294117647059 0.0011174591890
3.7647058823529 0.0007115211777
4.0000000000000 0.0007115211777
"x-label y
"y-label ADMCONSTRAINTS::momz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000395247152
-3.7647058823529 -0.0000395247152
-3.5294117647059 -0.0000438575018
-3.2941176470588 -0.0000473526071
-3.0588235294118 -0.0000489164028
-2.8235294117647 -0.0000468758387
-2.5882352941176 -0.0000389259942
-2.3529411764706 -0.0000224651792
-2.1176470588235 0.0000039876878
-1.8823529411765 0.0000368828969
-1.6470588235294 0.0000590315209
-1.4117647058824 0.0000249037465
-1.1764705882353 -0.0001536835607
-0.9411764705882 -0.0005910318613
-0.7058823529412 -0.0013189644036
-0.4705882352941 -0.0020793597261
-0.2352941176471 -0.0022833497769
0.0000000000000 -0.0015393735430
0.2352941176471 -0.0002878962026
0.4705882352941 0.0006059786491
0.7058823529412 0.0008032651425
0.9411764705882 0.0005735056787
1.1764705882353 0.0002713171708
1.4117647058824 0.0000621035113
1.6470588235294 -0.0000393694643
1.8823529411765 -0.0000700028681
2.1176470588235 -0.0000659563375
2.3529411764706 -0.0000496733287
2.5882352941176 -0.0000321111325
2.8235294117647 -0.0000174731952
3.0588235294118 -0.0000066908620
3.2941176470588 0.0000006227652
3.5294117647059 0.0000052347719
3.7647058823529 0.0000079029246
4.0000000000000 0.0000079029246
"x-label z
"y-label ADMCONSTRAINTS::momz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000293602324
-3.7647058823529 -0.0000293602324
-3.5294117647059 -0.0000352539380
-3.2941176470588 -0.0000416477731
-3.0588235294118 -0.0000478368714
-2.8235294117647 -0.0000523032858
-2.5882352941176 -0.0000521060826
-2.3529411764706 -0.0000419941060
-2.1176470588235 -0.0000133959716
-1.8823529411765 0.0000459131494
-1.6470588235294 0.0001490712753
-1.4117647058824 0.0002990616437
-1.1764705882353 0.0004622097535
-0.9411764705882 0.0005294018715
-0.7058823529412 0.0003123696019
-0.4705882352941 -0.0003165776660
-0.2352941176471 -0.0011351153314
0.0000000000000 -0.0015393735430
0.2352941176471 -0.0011547086496
0.4705882352941 -0.0003326578005
0.7058823529412 0.0003130290541
0.9411764705882 0.0005412209326
1.1764705882353 0.0004749950172
1.4117647058824 0.0003074893436
1.6470588235294 0.0001526316075
1.8823529411765 0.0000460820572
2.1176470588235 -0.0000150110137
2.3529411764706 -0.0000442724631
2.5882352941176 -0.0000544237860
2.8235294117647 -0.0000543760805
3.0588235294118 -0.0000495728535
3.2941176470588 -0.0000430492110
3.5294117647059 -0.0000363615257
3.7647058823529 -0.0000302248016
4.0000000000000 -0.0000302248016
"x-label diagonal
"y-label STATICCONFORMAL::psi
"Time = 0.0000000000000
-6.9282032302755 1.1759038459241
-6.5206618637887 1.1865857110707
-6.1131204973019 1.1986420565675
-5.7055791308151 1.2123533514264
-5.2980377643283 1.2280801535320
-4.8904963978415 1.2462925779744
-4.4829550313547 1.2676125877610
-4.0754136648679 1.2928746682409
-3.6678722983812 1.3232110478537
-3.2603309318944 1.3601625181445
-2.8527895654076 1.4057870172952
-2.4452481989208 1.4626230700851
-2.0377068324340 1.5329802875769
-1.6301654659472 1.6161015722121
-1.2226240994604 1.7017287492827
-0.8150827329736 1.7684839934587
-0.4075413664868 1.8068060912988
0.0000000000000 1.8333333333333
0.4075413664868 1.8564843502623
0.8150827329736 1.8522356557149
1.2226240994604 1.7944621074585
1.6301654659472 1.6993695693269
2.0377068324340 1.6011492613574
2.4452481989208 1.5169065844096
2.8527895654076 1.4490504127510
3.2603309318944 1.3950394308980
3.6678722983812 1.3517360814305
4.0754136648679 1.3165452458155
4.4829550313547 1.2875216519530
4.8904963978415 1.2632432782615
5.2980377643283 1.2426701247217
5.7055791308151 1.2250337444779
6.1131204973019 1.2097584327813
6.5206618637887 1.1964064791874
6.9282032302755 1.1846402375706
"x-label time
"y-label STATICCONFORMAL::psi
"psi v time
0.0000000000000 9.6717171717172
"x-label time
"y-label STATICCONFORMAL::psi
"psi v time
0.0000000000000 1.1759038459241
"x-label time
"y-label STATICCONFORMAL::psi
"psi v time
0.0000000000000 1.3506315967167
"x-label time
"y-label STATICCONFORMAL::psi
"psi v time
0.0000000000000 1.3609258434852
"x-label x
"y-label STATICCONFORMAL::psi (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.3363636363636
-3.7647058823529 1.3632373213379
-3.5294117647059 1.3954996186117
-3.2941176470588 1.4351302423816
-3.0588235294118 1.4852708460134
-2.8235294117647 1.5512471655329
-2.5882352941176 1.6429126968695
-2.3529411764706 1.7808633851013
-2.1176470588235 2.0168408826945
-1.8823529411765 2.5294314381271
-1.6470588235294 4.6383177570093
-1.4117647058824 6.9242424242424
-1.1764705882353 2.8256743256743
-0.9411764705882 2.2019657577679
-0.7058823529412 1.9696296296296
-0.4705882352941 1.8663113006397
-0.2352941176471 1.8275522270398
0.0000000000000 1.8333333333333
0.2352941176471 1.8811588490343
0.4705882352941 1.9823027718550
0.7058823529412 2.1711111111111
0.9411764705882 2.5469245402663
1.1764705882353 3.5049950049950
1.4117647058824 9.6717171717172
1.6470588235294 6.2588785046729
1.8823529411765 3.1093645484950
2.1176470588235 2.3524970963995
2.3529411764706 2.0090813371940
2.5882352941176 1.8114913474626
2.8235294117647 1.6823129251701
3.0588235294118 1.5908094948265
3.2941176470588 1.5223272654129
3.5294117647059 1.4689804220697
3.7647058823529 1.4261408982079
4.0000000000000 1.3909090909091
"x-label y
"y-label STATICCONFORMAL::psi (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.2926028679903
-3.7647058823529 1.3084491865950
-3.5294117647059 1.3259505336207
-3.2941176470588 1.3453458895468
-3.0588235294118 1.3669114123290
-2.8235294117647 1.3909626883015
-2.5882352941176 1.4178531520112
-2.3529411764706 1.4479644489680
-2.1176470588235 1.4816811173169
-1.8823529411765 1.5193364208804
-1.6470588235294 1.5611080573723
-1.4117647058824 1.6068333272440
-1.1764705882353 1.6557111811299
-0.9411764705882 1.7058865787568
-0.7058823529412 1.7540155851675
-0.4705882352941 1.7951220729898
-0.2352941176471 1.8232662719902
0.0000000000000 1.8333333333333
0.2352941176471 1.8232662719902
0.4705882352941 1.7951220729898
0.7058823529412 1.7540155851675
0.9411764705882 1.7058865787568
1.1764705882353 1.6557111811299
1.4117647058824 1.6068333272440
1.6470588235294 1.5611080573723
1.8823529411765 1.5193364208804
2.1176470588235 1.4816811173169
2.3529411764706 1.4479644489680
2.5882352941176 1.4178531520112
2.8235294117647 1.3909626883015
3.0588235294118 1.3669114123290
3.2941176470588 1.3453458895468
3.5294117647059 1.3259505336207
3.7647058823529 1.3084491865950
4.0000000000000 1.2926028679903
"x-label z
"y-label STATICCONFORMAL::psi (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.2926028679903
-3.7647058823529 1.3084491865950
-3.5294117647059 1.3259505336207
-3.2941176470588 1.3453458895468
-3.0588235294118 1.3669114123290
-2.8235294117647 1.3909626883015
-2.5882352941176 1.4178531520112
-2.3529411764706 1.4479644489680
-2.1176470588235 1.4816811173169
-1.8823529411765 1.5193364208804
-1.6470588235294 1.5611080573723
-1.4117647058824 1.6068333272440
-1.1764705882353 1.6557111811299
-0.9411764705882 1.7058865787568
-0.7058823529412 1.7540155851675
-0.4705882352941 1.7951220729898
-0.2352941176471 1.8232662719902
0.0000000000000 1.8333333333333
0.2352941176471 1.8232662719902
0.4705882352941 1.7951220729898
0.7058823529412 1.7540155851675
0.9411764705882 1.7058865787568
1.1764705882353 1.6557111811299
1.4117647058824 1.6068333272440
1.6470588235294 1.5611080573723
1.8823529411765 1.5193364208804
2.1176470588235 1.4816811173169
2.3529411764706 1.4479644489680
2.5882352941176 1.4178531520112
2.8235294117647 1.3909626883015
3.0588235294118 1.3669114123290
3.2941176470588 1.3453458895468
3.5294117647059 1.3259505336207
3.7647058823529 1.3084491865950
4.0000000000000 1.2926028679903
"x-label diagonal
"y-label IDPUNCTURE::u
"Time = 0.0000000000000
-6.9282032302755 1.0415355109745
-6.5206618637887 1.0441314804104
-6.1131204973019 1.0470606603886
-5.7055791308151 1.0503929851610
-5.2980377643283 1.0542190403045
-4.8904963978415 1.0586561018326
-4.4829550313547 1.0638563016246
-4.0754136648679 1.0700172066983
-3.6678722983812 1.0773943375697
-3.2603309318944 1.0863116649699
-2.8527895654076 1.0971540397804
-2.4452481989208 1.1102868410970
-2.0377068324340 1.1257397781000
-1.6301654659472 1.1423158066908
-1.2226240994604 1.1561964749065
-0.8150827329736 1.1617206445343
-0.4075413664868 1.1571318848627
0.0000000000000 1.1469894255683
0.4075413664868 1.1358558916705
0.8150827329736 1.1248660591630
1.2226240994604 1.1136934576071
1.6301654659472 1.1024653981376
2.0377068324340 1.0918119510118
2.4452481989208 1.0822157950010
2.8527895654076 1.0738259205489
3.2603309318944 1.0665874343480
3.6678722983812 1.0603688110331
4.0754136648679 1.0550254068045
4.4829550313547 1.0504235006216
4.8904963978415 1.0464468011673
5.2980377643283 1.0429963676789
5.7055791308151 1.0399885787349
6.1131204973019 1.0373528788616
6.5206618637887 1.0350297884195
6.9282032302755 1.0329692126301
"x-label time
"y-label IDPUNCTURE::u
"u v time
0.0000000000000 1.3365863250236
"x-label time
"y-label IDPUNCTURE::u
"u v time
0.0000000000000 1.0329692126301
"x-label time
"y-label IDPUNCTURE::u
"u v time
0.0000000000000 1.0675477124431
"x-label time
"y-label IDPUNCTURE::u
"u v time
0.0000000000000 1.0678162994909
"x-label x
"y-label IDPUNCTURE::u (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.0811981795706
-3.7647058823529 1.0862730657938
-3.5294117647059 1.0924140881643
-3.2941176470588 1.0998443146480
-3.0588235294118 1.1089197413218
-2.8235294117647 1.1202112451761
-2.5882352941176 1.1346705994246
-2.3529411764706 1.1539851075143
-2.1176470588235 1.1813734029758
-1.8823529411765 1.2232849635139
-1.6470588235294 1.2900429079337
-1.4117647058824 1.3365863250236
-1.1764705882353 1.2767279430536
-0.9411764705882 1.2288730123220
-0.7058823529412 1.1962744643029
-0.4705882352941 1.1738203205941
-0.2352941176471 1.1580704221210
0.0000000000000 1.1469894255683
0.2352941176471 1.1393552738623
0.4705882352941 1.1343981669765
0.7058823529412 1.1315621765401
0.9411764705882 1.1302542363500
1.1764705882353 1.1293504433362
1.4117647058824 1.1259182985954
1.6470588235294 1.1172927595038
1.8823529411765 1.1072836263513
2.1176470588235 1.0986125111113
2.3529411764706 1.0911647343257
2.5882352941176 1.0846412341968
2.8235294117647 1.0788465439110
3.0588235294118 1.0736519244854
3.2941176470588 1.0689633148008
3.5294117647059 1.0647058457566
3.7647058823529 1.0608163396010
4.0000000000000 1.0572389078597
"x-label y
"y-label IDPUNCTURE::u (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.0586796210663
-3.7647058823529 1.0623470973830
-3.5294117647059 1.0662171705127
-3.2941176470588 1.0703397145439
-3.0588235294118 1.0747610762231
-2.8235294117647 1.0795243632954
-2.5882352941176 1.0846682768235
-2.3529411764706 1.0902240657795
-2.1176470588235 1.0962098686970
-1.8823529411765 1.1026213743731
-1.6470588235294 1.1094174930477
-1.4117647058824 1.1164999033795
-1.1764705882353 1.1236866418113
-0.9411764705882 1.1306835743610
-0.7058823529412 1.1370650683209
-0.4705882352941 1.1422861680154
-0.2352941176471 1.1457562533021
0.0000000000000 1.1469894255683
0.2352941176471 1.1457869227159
0.4705882352941 1.1423296928883
0.7058823529412 1.1370975035823
0.9411764705882 1.1306868962249
1.1764705882353 1.1236533552850
1.4117647058824 1.1164312789860
1.6470588235294 1.1093196809034
1.8823529411765 1.1025021260877
2.1176470588235 1.0960765946648
2.3529411764706 1.0900829848831
2.5882352941176 1.0845242202250
2.8235294117647 1.0793808924077
3.0588235294118 1.0746207135793
3.2941176470588 1.0702041876661
3.5294117647059 1.0660876281414
3.7647058823529 1.0622242877090
4.0000000000000 1.0585640354909
"x-label z
"y-label IDPUNCTURE::u (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 1.0587046628958
-3.7647058823529 1.0623737043268
-3.5294117647059 1.0662575719182
-3.2941176470588 1.0704108918005
-3.0588235294118 1.0748862538974
-2.8235294117647 1.0797346232299
-2.5882352941176 1.0850042147728
-2.3529411764706 1.0907371860739
-2.1176470588235 1.0969630040958
-1.8823529411765 1.1036867010262
-1.6470588235294 1.1108695537900
-1.4117647058824 1.1183994727559
-1.1764705882353 1.1260498838436
-0.9411764705882 1.1334319805537
-0.7058823529412 1.1399601982964
-0.4705882352941 1.1448759546903
-0.2352941176471 1.1473934910401
0.0000000000000 1.1469894255683
0.2352941176471 1.1436972126622
0.4705882352941 1.1381156102302
0.7058823529412 1.1310859038064
0.9411764705882 1.1233799879291
1.1764705882353 1.1155615362184
1.4117647058824 1.1079817345665
1.6470588235294 1.1008293399460
1.8823529411765 1.0941858377367
2.1176470588235 1.0880681524301
2.3529411764706 1.0824571460184
2.5882352941176 1.0773150997221
2.8235294117647 1.0725957885999
3.0588235294118 1.0682498957671
3.2941176470588 1.0642275755476
3.5294117647059 1.0604792643616
3.7647058823529 1.0569553564779
4.0000000000000 1.0536050413910
# $Header$
ActiveThorns = "Boundary CartGrid3D Time CoordBase SymBase"
ActiveThorns = "PUGH PUGHReduce PUGHSlab"
ActiveThorns = "IOASCII IOBasic IOUtil"
ActiveThorns = "TmunuBase ADMBase StaticConformal"
ActiveThorns = "ADMConstraints ADMCoupling ADMMacros SpaceMask"
ActiveThorns = "IDPuncture TATelliptic TATJacobi TATMG TATPETSc"
Cactus::cctk_itlast = 0
Time::dtfac = 0.25
Grid::type = "byrange"
Grid::domain = "full"
Grid::xmin = -4
Grid::xmax = 4
Grid::ymin = -4
Grid::ymax = 4
Grid::zmin = -4
Grid::zmax = 4
Driver::global_nx = 35
Driver::global_ny = 35
Driver::global_nz = 35
ADMBase::initial_data = "puncture"
IDPuncture::verbose = "yes"
IDPuncture::bhm1 = 1.5
IDPuncture::bhx1 = 1.5
IDPuncture::bhpy1 = 2.0
IDPuncture::bhsy1 = 0.5
IDPuncture::bhsz1 = -0.5
IDPuncture::bhm2 = 1.0
IDPuncture::bhx2 = -1.5
IDPuncture::bhpy2 = -2.0
IDPuncture::bhsx2 = -1.0
IDPuncture::bhsz2 = -1.0
IDPuncture::bound = "robin"
IDPuncture::solver = "TATPETSc"
ADMBase::metric_type = "static conformal"
StaticConformal::conformal_storage = "factor+derivs+2nd derivs"
ADMBase::lapse_evolution_method = "static"
ADMBase::initial_lapse = "one"
TATJacobi::verbose = yes
TATPETSc::verbose = yes
TATPETsc::options = "-snes_monitor -get_total_flops"
IO::out_dir = $parfile
IO::out_fileinfo = "axis labels"
IOBasic::outScalar_every = 1
IOBasic::outScalar_vars = "staticconformal::psi admbase::metric admbase::curv admconstraints::hamiltonian admconstraints::momentum idpuncture::u idpuncture::M idpuncture::N"
IOASCII::out1D_every = 1
IOASCII::out1D_vars = "staticconformal::psi admbase::metric admbase::curv admconstraints::hamiltonian admconstraints::momentum idpuncture::u idpuncture::M idpuncture::N"
ABSTOL 1.e-9
RELTOL 1.e-9
TEST bhns_eval
{
NPROCS 1
}
TEST bhns_interp
{
NPROCS 1
ABSTOL 1.e-4
RELTOL 1.e-2
}
TEST twopunctures
{
NPROCS 1
ABSTOL 1.e-2
RELTOL 1.e-2
}
TEST twopunctures_carpet
{
NPROCS 2
# along the x-axis we encounter the singularity
RELTOL 2e-3 ^gxx\.x\.asc$
# the metric is singular and assumes large values near the punctures
RELTOL 2e-6 ^gxx\.[dyz]?\.asc$
}
"x-label diagonal
"y-label ADMBASE::gxx
"Time = 0.0000000000000
-6.9282032302755 2.2095668373391
-6.5206618637887 2.3084936635804
-6.1131204973019 2.4234916505306
-5.7055791308151 2.5600825780502
-5.2980377643283 2.7239552053723
-4.8904963978415 2.9230315702227
-4.4829550313547 3.1692166393881
-4.0754136648679 3.4809795569434
-3.6678722983812 3.8840521523244
-3.2603309318944 4.4195136354186
-2.8527895654076 5.1518485045791
-2.4452481989208 6.1803305914278
-2.0377068324340 7.6425106148683
-1.6301654659472 9.6512467594771
-1.2226240994604 12.0269262198225
-0.8150827329736 14.0066693808289
-0.4075413664868 15.0057092756132
0.0000000000000 15.5199800931212
0.4075413664868 15.9056629845679
0.8150827329736 15.4350993014314
1.2226240994604 13.4032636344507
1.6301654659472 10.6701256009915
2.0377068324340 8.3276808867538
2.4452481989208 6.6388005105398
2.8527895654076 5.4676209335658
3.2603309318944 4.6452348340980
3.6678722983812 4.0507819915625
4.0754136648679 3.6082773793977
4.4829550313547 3.2693500308927
4.8904963978415 3.0027363433921
5.2980377643283 2.7891020666854
5.7055791308151 2.6142752070568
6.1131204973019 2.4692245035813
6.5206618637887 2.3469022632533
6.9282032302755 2.2427598961312
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 9227.6004449727643
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 2.1975156558942
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 4.9551082999584
"x-label time
"y-label ADMBASE::gxx
"gxx v time
0.0000000000000 47.9175180245796
"x-label x
"y-label ADMBASE::gxx (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 4.0415193356254
-3.7647058823529 4.4267710385930
-3.5294117647059 4.9219839649424
-3.2941176470588 5.5807280935063
-3.0588235294118 6.4978744674443
-2.8235294117647 7.8564870894504
-2.5882352941176 10.0530313775974
-2.3529411764706 14.1127652807718
-2.1176470588235 23.5089786470465
-1.8823529411765 57.7869614072604
-1.6470588235294 592.4338570820665
-1.4117647058824 2769.9026389860192
-1.1764705882353 92.7555026892216
-0.9411764705882 35.0779314456153
-0.7058823529412 22.1522700589977
-0.4705882352941 17.4575594940624
-0.2352941176471 15.6779110552863
0.0000000000000 15.5199800931212
0.2352941176471 16.8171889551743
0.4705882352941 20.2461696643234
0.7058823529412 28.3419251368238
0.9411764705882 51.7188708690387
1.1764705882353 175.2664276654551
1.4117647058824 9227.6004449727643
1.6470588235294 1657.1305593128907
1.8823529411765 107.7374673155295
2.1176470588235 36.4222907903227
2.3529411764706 19.6730692836548
2.5882352941176 13.0911774551317
2.8235294117647 9.7570132255139
3.0588235294118 7.7941498334877
3.2941176470588 6.5191342118682
3.5294117647059 5.6316146855230
3.7647058823529 4.9816044760499
4.0000000000000 4.4866878084757
"x-label y
"y-label ADMBASE::gxx (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 3.4045439419182
-3.7647058823529 3.5998425116988
-3.5294117647059 3.8246138587707
-3.2941176470588 4.0859602582970
-3.0588235294118 4.3898490494694
-2.8235294117647 4.7470698620478
-2.5882352941176 5.1716597816164
-2.3529411764706 5.6758938455787
-2.1176470588235 6.2799297418309
-1.8823529411765 7.0086704555784
-1.6470588235294 7.8806999409759
-1.4117647058824 8.9219161829841
-1.1764705882353 10.1358038723808
-0.9411764705882 11.4948124991650
-0.7058823529412 12.9161474752715
-0.4705882352941 14.2230092292844
-0.2352941176471 15.1698564504081
0.0000000000000 15.5199800931212
0.2352941176471 15.1707650464094
0.4705882352941 14.2242342136322
0.7058823529412 12.9170354866841
0.9411764705882 11.4949540797789
1.1764705882353 10.1351348734488
1.4117647058824 8.9206243919720
1.6470588235294 7.8790023212436
1.8823529411765 7.0065148585553
2.1176470588235 6.2779691604533
2.3529411764706 5.6739570767007
2.5882352941176 5.1698100247650
2.8235294117647 4.7453509431187
3.0588235294118 4.3882575153774
3.2941176470588 4.0845011465919
3.5294117647059 3.8232883500081
3.7647058823529 3.5986320006272
4.0000000000000 3.4034408535250
"x-label z
"y-label ADMBASE::gxx (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 3.4010762119769
-3.7647058823529 3.5964256435008
-3.5294117647059 3.8214150051938
-3.2941176470588 4.0829710982685
-3.0588235294118 4.3875891311092
-2.8235294117647 4.7460522201750
-2.5882352941176 5.1725496977503
-2.3529411764706 5.6797273636151
-2.1176470588235 6.2881383259244
-1.8823529411765 7.0235790357233
-1.6470588235294 7.9048689544910
-1.4117647058824 8.9580377685139
-1.1764705882353 10.1869854431760
-0.9411764705882 11.5595016129966
-0.7058823529412 12.9915301208101
-0.4705882352941 14.2958284272024
-0.2352941176471 15.2182429257712
0.0000000000000 15.5199800931212
0.2352941176471 15.1096304968446
0.4705882352941 14.1049191203490
0.7058823529412 12.7605460337338
0.9411764705882 11.3214938042102
1.1764705882353 9.9610066391076
1.4117647058824 8.7553933239831
1.6470588235294 7.7287876036448
1.8823529411765 6.8721682062031
2.1176470588235 6.1600995094685
2.3529411764706 5.5701494154951
2.5882352941176 5.0787637729815
2.8235294117647 4.6661246467312
3.0588235294118 4.3185696559171
3.2941176470588 4.0230577859808
3.5294117647059 3.7693827210173
3.7647058823529 3.5508201129189
4.0000000000000 3.3608592250821
"x-label diagonal
"y-label ADMBASE::gxy
"Time = 0.0000000000000
-6.9282032302755 0.0000000000000
-6.5206618637887 0.0000000000000
-6.1131204973019 0.0000000000000
-5.7055791308151 0.0000000000000
-5.2980377643283 0.0000000000000
-4.8904963978415 0.0000000000000
-4.4829550313547 0.0000000000000
-4.0754136648679 0.0000000000000
-3.6678722983812 0.0000000000000
-3.2603309318944 0.0000000000000
-2.8527895654076 0.0000000000000
-2.4452481989208 0.0000000000000
-2.0377068324340 0.0000000000000
-1.6301654659472 0.0000000000000
-1.2226240994604 0.0000000000000
-0.8150827329736 0.0000000000000
-0.4075413664868 0.0000000000000
0.0000000000000 0.0000000000000
0.4075413664868 0.0000000000000
0.8150827329736 0.0000000000000
1.2226240994604 0.0000000000000
1.6301654659472 0.0000000000000
2.0377068324340 0.0000000000000
2.4452481989208 0.0000000000000
2.8527895654076 0.0000000000000
3.2603309318944 0.0000000000000
3.6678722983812 0.0000000000000
4.0754136648679 0.0000000000000
4.4829550313547 0.0000000000000
4.8904963978415 0.0000000000000
5.2980377643283 0.0000000000000
5.7055791308151 0.0000000000000
6.1131204973019 0.0000000000000
6.5206618637887 0.0000000000000
6.9282032302755 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxy
"gxy v time
0.0000000000000 0.0000000000000
"x-label x
"y-label ADMBASE::gxy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::gxy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::gxy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::gxz
"Time = 0.0000000000000
-6.9282032302755 0.0000000000000
-6.5206618637887 0.0000000000000
-6.1131204973019 0.0000000000000
-5.7055791308151 0.0000000000000
-5.2980377643283 0.0000000000000
-4.8904963978415 0.0000000000000
-4.4829550313547 0.0000000000000
-4.0754136648679 0.0000000000000
-3.6678722983812 0.0000000000000
-3.2603309318944 0.0000000000000
-2.8527895654076 0.0000000000000
-2.4452481989208 0.0000000000000
-2.0377068324340 0.0000000000000
-1.6301654659472 0.0000000000000
-1.2226240994604 0.0000000000000
-0.8150827329736 0.0000000000000
-0.4075413664868 0.0000000000000
0.0000000000000 0.0000000000000
0.4075413664868 0.0000000000000
0.8150827329736 0.0000000000000
1.2226240994604 0.0000000000000
1.6301654659472 0.0000000000000
2.0377068324340 0.0000000000000
2.4452481989208 0.0000000000000
2.8527895654076 0.0000000000000
3.2603309318944 0.0000000000000
3.6678722983812 0.0000000000000
4.0754136648679 0.0000000000000
4.4829550313547 0.0000000000000
4.8904963978415 0.0000000000000
5.2980377643283 0.0000000000000
5.7055791308151 0.0000000000000
6.1131204973019 0.0000000000000
6.5206618637887 0.0000000000000
6.9282032302755 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gxz
"gxz v time
0.0000000000000 0.0000000000000
"x-label x
"y-label ADMBASE::gxz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::gxz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::gxz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::gyy
"Time = 0.0000000000000
-6.9282032302755 2.2095668373391
-6.5206618637887 2.3084936635804
-6.1131204973019 2.4234916505306
-5.7055791308151 2.5600825780502
-5.2980377643283 2.7239552053723
-4.8904963978415 2.9230315702227
-4.4829550313547 3.1692166393881
-4.0754136648679 3.4809795569434
-3.6678722983812 3.8840521523244
-3.2603309318944 4.4195136354186
-2.8527895654076 5.1518485045791
-2.4452481989208 6.1803305914278
-2.0377068324340 7.6425106148683
-1.6301654659472 9.6512467594771
-1.2226240994604 12.0269262198225
-0.8150827329736 14.0066693808289
-0.4075413664868 15.0057092756132
0.0000000000000 15.5199800931212
0.4075413664868 15.9056629845679
0.8150827329736 15.4350993014314
1.2226240994604 13.4032636344507
1.6301654659472 10.6701256009915
2.0377068324340 8.3276808867538
2.4452481989208 6.6388005105398
2.8527895654076 5.4676209335658
3.2603309318944 4.6452348340980
3.6678722983812 4.0507819915625
4.0754136648679 3.6082773793977
4.4829550313547 3.2693500308927
4.8904963978415 3.0027363433921
5.2980377643283 2.7891020666854
5.7055791308151 2.6142752070568
6.1131204973019 2.4692245035813
6.5206618637887 2.3469022632533
6.9282032302755 2.2427598961312
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 9227.6004449727643
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 2.1975156558942
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 4.9551082999584
"x-label time
"y-label ADMBASE::gyy
"gyy v time
0.0000000000000 47.9175180245796
"x-label x
"y-label ADMBASE::gyy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 4.0415193356254
-3.7647058823529 4.4267710385930
-3.5294117647059 4.9219839649424
-3.2941176470588 5.5807280935063
-3.0588235294118 6.4978744674443
-2.8235294117647 7.8564870894504
-2.5882352941176 10.0530313775974
-2.3529411764706 14.1127652807718
-2.1176470588235 23.5089786470465
-1.8823529411765 57.7869614072604
-1.6470588235294 592.4338570820665
-1.4117647058824 2769.9026389860192
-1.1764705882353 92.7555026892216
-0.9411764705882 35.0779314456153
-0.7058823529412 22.1522700589977
-0.4705882352941 17.4575594940624
-0.2352941176471 15.6779110552863
0.0000000000000 15.5199800931212
0.2352941176471 16.8171889551743
0.4705882352941 20.2461696643234
0.7058823529412 28.3419251368238
0.9411764705882 51.7188708690387
1.1764705882353 175.2664276654551
1.4117647058824 9227.6004449727643
1.6470588235294 1657.1305593128907
1.8823529411765 107.7374673155295
2.1176470588235 36.4222907903227
2.3529411764706 19.6730692836548
2.5882352941176 13.0911774551317
2.8235294117647 9.7570132255139
3.0588235294118 7.7941498334877
3.2941176470588 6.5191342118682
3.5294117647059 5.6316146855230
3.7647058823529 4.9816044760499
4.0000000000000 4.4866878084757
"x-label y
"y-label ADMBASE::gyy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 3.4045439419182
-3.7647058823529 3.5998425116988
-3.5294117647059 3.8246138587707
-3.2941176470588 4.0859602582970
-3.0588235294118 4.3898490494694
-2.8235294117647 4.7470698620478
-2.5882352941176 5.1716597816164
-2.3529411764706 5.6758938455787
-2.1176470588235 6.2799297418309
-1.8823529411765 7.0086704555784
-1.6470588235294 7.8806999409759
-1.4117647058824 8.9219161829841
-1.1764705882353 10.1358038723808
-0.9411764705882 11.4948124991650
-0.7058823529412 12.9161474752715
-0.4705882352941 14.2230092292844
-0.2352941176471 15.1698564504081
0.0000000000000 15.5199800931212
0.2352941176471 15.1707650464094
0.4705882352941 14.2242342136322
0.7058823529412 12.9170354866841
0.9411764705882 11.4949540797789
1.1764705882353 10.1351348734488
1.4117647058824 8.9206243919720
1.6470588235294 7.8790023212436
1.8823529411765 7.0065148585553
2.1176470588235 6.2779691604533
2.3529411764706 5.6739570767007
2.5882352941176 5.1698100247650
2.8235294117647 4.7453509431187
3.0588235294118 4.3882575153774
3.2941176470588 4.0845011465919
3.5294117647059 3.8232883500081
3.7647058823529 3.5986320006272
4.0000000000000 3.4034408535250
"x-label z
"y-label ADMBASE::gyy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 3.4010762119769
-3.7647058823529 3.5964256435008
-3.5294117647059 3.8214150051938
-3.2941176470588 4.0829710982685
-3.0588235294118 4.3875891311092
-2.8235294117647 4.7460522201750
-2.5882352941176 5.1725496977503
-2.3529411764706 5.6797273636151
-2.1176470588235 6.2881383259244
-1.8823529411765 7.0235790357233
-1.6470588235294 7.9048689544910
-1.4117647058824 8.9580377685139
-1.1764705882353 10.1869854431760
-0.9411764705882 11.5595016129966
-0.7058823529412 12.9915301208101
-0.4705882352941 14.2958284272024
-0.2352941176471 15.2182429257712
0.0000000000000 15.5199800931212
0.2352941176471 15.1096304968446
0.4705882352941 14.1049191203490
0.7058823529412 12.7605460337338
0.9411764705882 11.3214938042102
1.1764705882353 9.9610066391076
1.4117647058824 8.7553933239831
1.6470588235294 7.7287876036448
1.8823529411765 6.8721682062031
2.1176470588235 6.1600995094685
2.3529411764706 5.5701494154951
2.5882352941176 5.0787637729815
2.8235294117647 4.6661246467312
3.0588235294118 4.3185696559171
3.2941176470588 4.0230577859808
3.5294117647059 3.7693827210173
3.7647058823529 3.5508201129189
4.0000000000000 3.3608592250821
"x-label diagonal
"y-label ADMBASE::gyz
"Time = 0.0000000000000
-6.9282032302755 0.0000000000000
-6.5206618637887 0.0000000000000
-6.1131204973019 0.0000000000000
-5.7055791308151 0.0000000000000
-5.2980377643283 0.0000000000000
-4.8904963978415 0.0000000000000
-4.4829550313547 0.0000000000000
-4.0754136648679 0.0000000000000
-3.6678722983812 0.0000000000000
-3.2603309318944 0.0000000000000
-2.8527895654076 0.0000000000000
-2.4452481989208 0.0000000000000
-2.0377068324340 0.0000000000000
-1.6301654659472 0.0000000000000
-1.2226240994604 0.0000000000000
-0.8150827329736 0.0000000000000
-0.4075413664868 0.0000000000000
0.0000000000000 0.0000000000000
0.4075413664868 0.0000000000000
0.8150827329736 0.0000000000000
1.2226240994604 0.0000000000000
1.6301654659472 0.0000000000000
2.0377068324340 0.0000000000000
2.4452481989208 0.0000000000000
2.8527895654076 0.0000000000000
3.2603309318944 0.0000000000000
3.6678722983812 0.0000000000000
4.0754136648679 0.0000000000000
4.4829550313547 0.0000000000000
4.8904963978415 0.0000000000000
5.2980377643283 0.0000000000000
5.7055791308151 0.0000000000000
6.1131204973019 0.0000000000000
6.5206618637887 0.0000000000000
6.9282032302755 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label time
"y-label ADMBASE::gyz
"gyz v time
0.0000000000000 0.0000000000000
"x-label x
"y-label ADMBASE::gyz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::gyz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::gyz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::gzz
"Time = 0.0000000000000
-6.9282032302755 2.2095668373391
-6.5206618637887 2.3084936635804
-6.1131204973019 2.4234916505306
-5.7055791308151 2.5600825780502
-5.2980377643283 2.7239552053723
-4.8904963978415 2.9230315702227
-4.4829550313547 3.1692166393881
-4.0754136648679 3.4809795569434
-3.6678722983812 3.8840521523244
-3.2603309318944 4.4195136354186
-2.8527895654076 5.1518485045791
-2.4452481989208 6.1803305914278
-2.0377068324340 7.6425106148683
-1.6301654659472 9.6512467594771
-1.2226240994604 12.0269262198225
-0.8150827329736 14.0066693808289
-0.4075413664868 15.0057092756132
0.0000000000000 15.5199800931212
0.4075413664868 15.9056629845679
0.8150827329736 15.4350993014314
1.2226240994604 13.4032636344507
1.6301654659472 10.6701256009915
2.0377068324340 8.3276808867538
2.4452481989208 6.6388005105398
2.8527895654076 5.4676209335658
3.2603309318944 4.6452348340980
3.6678722983812 4.0507819915625
4.0754136648679 3.6082773793977
4.4829550313547 3.2693500308927
4.8904963978415 3.0027363433921
5.2980377643283 2.7891020666854
5.7055791308151 2.6142752070568
6.1131204973019 2.4692245035813
6.5206618637887 2.3469022632533
6.9282032302755 2.2427598961312
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 9227.6004449727643
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 2.1975156558942
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 4.9551082999584
"x-label time
"y-label ADMBASE::gzz
"gzz v time
0.0000000000000 47.9175180245796
"x-label x
"y-label ADMBASE::gzz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 4.0415193356254
-3.7647058823529 4.4267710385930
-3.5294117647059 4.9219839649424
-3.2941176470588 5.5807280935063
-3.0588235294118 6.4978744674443
-2.8235294117647 7.8564870894504
-2.5882352941176 10.0530313775974
-2.3529411764706 14.1127652807718
-2.1176470588235 23.5089786470465
-1.8823529411765 57.7869614072604
-1.6470588235294 592.4338570820665
-1.4117647058824 2769.9026389860192
-1.1764705882353 92.7555026892216
-0.9411764705882 35.0779314456153
-0.7058823529412 22.1522700589977
-0.4705882352941 17.4575594940624
-0.2352941176471 15.6779110552863
0.0000000000000 15.5199800931212
0.2352941176471 16.8171889551743
0.4705882352941 20.2461696643234
0.7058823529412 28.3419251368238
0.9411764705882 51.7188708690387
1.1764705882353 175.2664276654551
1.4117647058824 9227.6004449727643
1.6470588235294 1657.1305593128907
1.8823529411765 107.7374673155295
2.1176470588235 36.4222907903227
2.3529411764706 19.6730692836548
2.5882352941176 13.0911774551317
2.8235294117647 9.7570132255139
3.0588235294118 7.7941498334877
3.2941176470588 6.5191342118682
3.5294117647059 5.6316146855230
3.7647058823529 4.9816044760499
4.0000000000000 4.4866878084757
"x-label y
"y-label ADMBASE::gzz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 3.4045439419182
-3.7647058823529 3.5998425116988
-3.5294117647059 3.8246138587707
-3.2941176470588 4.0859602582970
-3.0588235294118 4.3898490494694
-2.8235294117647 4.7470698620478
-2.5882352941176 5.1716597816164
-2.3529411764706 5.6758938455787
-2.1176470588235 6.2799297418309
-1.8823529411765 7.0086704555784
-1.6470588235294 7.8806999409759
-1.4117647058824 8.9219161829841
-1.1764705882353 10.1358038723808
-0.9411764705882 11.4948124991650
-0.7058823529412 12.9161474752715
-0.4705882352941 14.2230092292844
-0.2352941176471 15.1698564504081
0.0000000000000 15.5199800931212
0.2352941176471 15.1707650464094
0.4705882352941 14.2242342136322
0.7058823529412 12.9170354866841
0.9411764705882 11.4949540797789
1.1764705882353 10.1351348734488
1.4117647058824 8.9206243919720
1.6470588235294 7.8790023212436
1.8823529411765 7.0065148585553
2.1176470588235 6.2779691604533
2.3529411764706 5.6739570767007
2.5882352941176 5.1698100247650
2.8235294117647 4.7453509431187
3.0588235294118 4.3882575153774
3.2941176470588 4.0845011465919
3.5294117647059 3.8232883500081
3.7647058823529 3.5986320006272
4.0000000000000 3.4034408535250
"x-label z
"y-label ADMBASE::gzz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 3.4010762119769
-3.7647058823529 3.5964256435008
-3.5294117647059 3.8214150051938
-3.2941176470588 4.0829710982685
-3.0588235294118 4.3875891311092
-2.8235294117647 4.7460522201750
-2.5882352941176 5.1725496977503
-2.3529411764706 5.6797273636151
-2.1176470588235 6.2881383259244
-1.8823529411765 7.0235790357233
-1.6470588235294 7.9048689544910
-1.4117647058824 8.9580377685139
-1.1764705882353 10.1869854431760
-0.9411764705882 11.5595016129966
-0.7058823529412 12.9915301208101
-0.4705882352941 14.2958284272024
-0.2352941176471 15.2182429257712
0.0000000000000 15.5199800931212
0.2352941176471 15.1096304968446
0.4705882352941 14.1049191203490
0.7058823529412 12.7605460337338
0.9411764705882 11.3214938042102
1.1764705882353 9.9610066391076
1.4117647058824 8.7553933239831
1.6470588235294 7.7287876036448
1.8823529411765 6.8721682062031
2.1176470588235 6.1600995094685
2.3529411764706 5.5701494154951
2.5882352941176 5.0787637729815
2.8235294117647 4.6661246467312
3.0588235294118 4.3185696559171
3.2941176470588 4.0230577859808
3.5294117647059 3.7693827210173
3.7647058823529 3.5508201129189
4.0000000000000 3.3608592250821
"x-label diagonal
"y-label ADMCONSTRAINTS::ham
"Time = 0.0000000000000
-6.9282032302755 0.0094071449171
-6.5206618637887 0.0094071449171
-6.1131204973019 -0.0065053758533
-5.7055791308151 -0.0061822052750
-5.2980377643283 0.0002904252657
-4.8904963978415 -0.0016963099385
-4.4829550313547 -0.0001953985253
-4.0754136648679 0.0018191904359
-3.6678722983812 0.0034958572848
-3.2603309318944 -0.0001554546454
-2.8527895654076 -0.0007154718502
-2.4452481989208 0.0017918365060
-2.0377068324340 0.0005167799143
-1.6301654659472 0.0040849706608
-1.2226240994604 0.0049936094877
-0.8150827329736 -0.0016930582682
-0.4075413664868 -0.0114135026049
0.0000000000000 -0.0128487502683
0.4075413664868 -0.0115485791751
0.8150827329736 -0.0004606394457
1.2226240994604 0.0086153509608
1.6301654659472 0.0063435415848
2.0377068324340 0.0035939955401
2.4452481989208 0.0040261714262
2.8527895654076 0.0032509408731
3.2603309318944 0.0054523707310
3.6678722983812 0.0066508366340
4.0754136648679 0.0076130685359
4.4829550313547 0.0104627559442
4.8904963978415 0.0055971569562
5.2980377643283 0.0066811784792
5.7055791308151 0.0013689085961
6.1131204973019 0.0016620065283
6.5206618637887 -0.0018400246762
6.9282032302755 -0.0018400246762
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 95.7602946981238
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 -0.0593134111823
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 0.0082331107602
"x-label time
"y-label ADMCONSTRAINTS::ham
"ham v time
0.0000000000000 0.5535989311026
"x-label x
"y-label ADMCONSTRAINTS::ham (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0026852644211
-3.7647058823529 -0.0026852644211
-3.5294117647059 -0.0033602494259
-3.2941176470588 -0.0052980930483
-3.0588235294118 -0.0089408317909
-2.8235294117647 -0.0145595311595
-2.5882352941176 -0.0262383359022
-2.3529411764706 -0.0457970181705
-2.1176470588235 -0.0207407390261
-1.8823529411765 6.5971670909647
-1.6470588235294 0.2589123520643
-1.4117647058824 0.0700315667270
-1.1764705882353 52.9905809193634
-0.9411764705882 -0.0524433904124
-0.7058823529412 -0.0593029744231
-0.4705882352941 -0.0288567934468
-0.2352941176471 -0.0172924806548
0.0000000000000 -0.0128487502683
0.2352941176471 -0.0178743932594
0.4705882352941 -0.0296977939270
0.7058823529412 -0.0440486541564
0.9411764705882 0.1200583910050
1.1764705882353 95.7602946981238
1.4117647058824 0.0221309391615
1.6470588235294 0.1184238682311
1.8823529411765 10.0501460883490
2.1176470588235 0.0937951523077
2.3529411764706 -0.0269301352781
2.5882352941176 -0.0222766082060
2.8235294117647 -0.0142142211680
3.0588235294118 -0.0090984871318
3.2941176470588 -0.0058386397347
3.5294117647059 -0.0039236243773
3.7647058823529 -0.0027146414566
4.0000000000000 -0.0027146414566
"x-label y
"y-label ADMCONSTRAINTS::ham (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0018334425473
-3.7647058823529 -0.0018334425473
-3.5294117647059 -0.0043344861995
-3.2941176470588 0.0020815042583
-3.0588235294118 -0.0009744030666
-2.8235294117647 -0.0053005011931
-2.5882352941176 0.0027564223775
-2.3529411764706 -0.0002121683610
-2.1176470588235 -0.0039424469043
-1.8823529411765 0.0025851507850
-1.6470588235294 -0.0017225565998
-1.4117647058824 0.0013626587045
-1.1764705882353 0.0044032658451
-0.9411764705882 -0.0020900196754
-0.7058823529412 -0.0034540739418
-0.4705882352941 -0.0066734579858
-0.2352941176471 -0.0113390225659
0.0000000000000 -0.0128487502683
0.2352941176471 -0.0117465528086
0.4705882352941 -0.0067093650484
0.7058823529412 -0.0034714072718
0.9411764705882 -0.0023603675444
1.1764705882353 0.0051027468706
1.4117647058824 0.0014436133264
1.6470588235294 -0.0005045915118
1.8823529411765 0.0017267241799
2.1176470588235 -0.0023773997349
2.3529411764706 0.0003739813113
2.5882352941176 0.0027310977322
2.8235294117647 -0.0072028634988
3.0588235294118 -0.0005101074196
3.2941176470588 0.0022698616970
3.5294117647059 -0.0044313630895
3.7647058823529 -0.0018823087507
4.0000000000000 -0.0018823087507
"x-label z
"y-label ADMCONSTRAINTS::ham (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0017435288289
-3.7647058823529 -0.0017435288289
-3.5294117647059 -0.0034213642808
-3.2941176470588 0.0014282390253
-3.0588235294118 -0.0011425724421
-2.8235294117647 -0.0059686102055
-2.5882352941176 0.0027487857825
-2.3529411764706 -0.0003366297415
-2.1176470588235 -0.0046518341086
-1.8823529411765 0.0027152047951
-1.6470588235294 -0.0008366120649
-1.4117647058824 0.0012608550190
-1.1764705882353 0.0060211507569
-0.9411764705882 -0.0036197157615
-0.7058823529412 -0.0039231680513
-0.4705882352941 -0.0064704571531
-0.2352941176471 -0.0113672763557
0.0000000000000 -0.0128487502683
0.2352941176471 -0.0113068019251
0.4705882352941 -0.0093707606116
0.7058823529412 -0.0055722239431
0.9411764705882 -0.0040257509390
1.1764705882353 0.0026576934192
1.4117647058824 0.0002284564528
1.6470588235294 -0.0017071285293
1.8823529411765 0.0008831737600
2.1176470588235 -0.0018739658112
2.3529411764706 -0.0003428071745
2.5882352941176 0.0016616566865
2.8235294117647 -0.0020198390772
3.0588235294118 -0.0005553218987
3.2941176470588 0.0011505612746
3.5294117647059 -0.0020033575253
3.7647058823529 -0.0008022557072
4.0000000000000 -0.0008022557072
"x-label diagonal
"y-label ADMBASE::kxx
"Time = 0.0000000000000
-6.9282032302755 -0.0127347010341
-6.5206618637887 -0.0150275175345
-6.1131204973019 -0.0179166551652
-5.7055791308151 -0.0216065987288
-5.2980377643283 -0.0264012567073
-4.8904963978415 -0.0327551522104
-4.4829550313547 -0.0413629730843
-4.0754136648679 -0.0533132405463
-3.6678722983812 -0.0703858430248
-3.2603309318944 -0.0955210990956
-2.8527895654076 -0.1335773459640
-2.4452481989208 -0.1919861669808
-2.0377068324340 -0.2783384908125
-1.6301654659472 -0.3824908490191
-1.2226240994604 -0.4276417088814
-0.8150827329736 -0.2984970844866
-0.4075413664868 -0.0878848484281
0.0000000000000 0.0000000000000
0.4075413664868 -0.0853623542062
0.8150827329736 -0.2843497288305
1.2226240994604 -0.4050905385258
1.6301654659472 -0.3637709324039
2.0377068324340 -0.2666424284344
2.4452481989208 -0.1852383832620
2.8527895654076 -0.1296627276171
3.2603309318944 -0.0931714196707
3.6678722983812 -0.0689220850948
4.0754136648679 -0.0523643671995
4.4829550313547 -0.0407246162709
4.8904963978415 -0.0323175012790
5.2980377643283 -0.0260910992527
5.7055791308151 -0.0213814789238
6.1131204973019 -0.0177499612772
6.5206618637887 -0.0149040426577
6.9282032302755 -0.0126401123587
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 13.0081823590993
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 -13.0079860926788
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 0.0661947420785
"x-label time
"y-label ADMBASE::kxx
"kxx v time
0.0000000000000 0.2062347748819
"x-label x
"y-label ADMBASE::kxx (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kxx (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0068562376268
-3.7647058823529 -0.0081690188315
-3.5294117647059 -0.0097910543737
-3.2941176470588 -0.0118039114085
-3.0588235294118 -0.0143152249997
-2.8235294117647 -0.0174549461996
-2.5882352941176 -0.0213781265247
-2.3529411764706 -0.0262708504698
-2.1176470588235 -0.0323099840494
-1.8823529411765 -0.0396086087877
-1.6470588235294 -0.0481195645105
-1.4117647058824 -0.0573512410924
-1.1764705882353 -0.0660506917342
-0.9411764705882 -0.0717393086745
-0.7058823529412 -0.0705878394186
-0.4705882352941 -0.0584758869364
-0.2352941176471 -0.0336887114391
0.0000000000000 0.0000000000000
0.2352941176471 0.0336877025946
0.4705882352941 0.0584733689242
0.7058823529412 0.0705854130149
0.9411764705882 0.0717388668751
1.1764705882353 0.0660528716319
1.4117647058824 0.0573553934439
1.6470588235294 0.0481247481822
1.8823529411765 0.0396147012342
2.1176470588235 0.0323150287865
2.3529411764706 0.0262753337805
2.5882352941176 0.0213819507271
2.8235294117647 0.0174581072851
3.0588235294118 0.0143178206887
3.2941176470588 0.0118060195837
3.5294117647059 0.0097927514735
3.7647058823529 0.0081703926670
4.0000000000000 0.0068573486235
"x-label z
"y-label ADMBASE::kxx (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0068597320388
-3.7647058823529 0.0081728984938
-3.5294117647059 0.0097951514945
-3.2941176470588 0.0118082314642
-3.0588235294118 0.0143189112012
-2.8235294117647 0.0174568174318
-2.5882352941176 0.0213762874357
-2.3529411764706 0.0262619832503
-2.1176470588235 0.0322888883118
-1.8823529411765 0.0395665489057
-1.6470588235294 0.0480459457865
-1.4117647058824 0.0572354953015
-1.1764705882353 0.0658845564698
-0.9411764705882 0.0715382938159
-0.7058823529412 0.0703827504356
-0.4705882352941 0.0583267663885
-0.2352941176471 0.0336351120917
0.0000000000000 0.0000000000000
0.2352941176471 -0.0337557851174
0.4705882352941 -0.0587201644994
0.7058823529412 -0.0710169076133
0.9411764705882 -0.0722863450379
1.1764705882353 -0.0666277050693
1.4117647058824 -0.0578940670228
1.6470588235294 -0.0485901677031
1.8823529411765 -0.0400000485194
2.1176470588235 -0.0326227277854
2.3529411764706 -0.0265190426751
2.5882352941176 -0.0215727549400
2.8235294117647 -0.0176056943628
3.0588235294118 -0.0144328802192
3.2941176470588 -0.0118958334491
3.5294117647059 -0.0098625255631
3.7647058823529 -0.0082252160124
4.0000000000000 -0.0069006527273
"x-label diagonal
"y-label ADMBASE::kxy
"Time = 0.0000000000000
-6.9282032302755 0.0063034257922
-6.5206618637887 0.0072168402440
-6.1131204973019 0.0082831617041
-5.7055791308151 0.0095129859925
-5.2980377643283 0.0109003478440
-4.8904963978415 0.0123920866573
-4.4829550313547 0.0138208098486
-4.0754136648679 0.0147506248668
-3.6678722983812 0.0141196784784
-3.2603309318944 0.0093451907890
-2.8527895654076 -0.0058959979209
-2.4452481989208 -0.0471170458472
-2.0377068324340 -0.1505171084898
-1.6301654659472 -0.3827079749320
-1.2226240994604 -0.7757612910195
-0.8150827329736 -1.1170753400555
-0.4075413664868 -1.1381719035514
0.0000000000000 -1.0153468163061
0.4075413664868 -0.9376313421584
0.8150827329736 -0.8041832235563
1.2226240994604 -0.5309691161170
1.6301654659472 -0.2678200137433
2.0377068324340 -0.1134644799354
2.4452481989208 -0.0410418877679
2.8527895654076 -0.0096874866479
3.2603309318944 0.0033268850798
3.6678722983812 0.0083259176533
4.0754136648679 0.0098215424307
4.4829550313547 0.0098040036064
4.8904963978415 0.0091679707531
5.2980377643283 0.0083180562624
5.7055791308151 0.0074380082959
6.1131204973019 0.0066061601323
6.5206618637887 0.0058529473538
6.9282032302755 0.0051850314859
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 8.8198246748779
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 -90.3072635705684
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 0.1048687506725
"x-label time
"y-label ADMBASE::kxy
"kxy v time
0.0000000000000 0.5450513676700
"x-label x
"y-label ADMBASE::kxy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0894423344113
-3.7647058823529 0.0989210179108
-3.5294117647059 0.1077712082344
-3.2941176470588 0.1136096560071
-3.0588235294118 0.1107892231801
-2.8235294117647 0.0854762939405
-2.5882352941176 0.0012461831450
-2.3529411764706 -0.2500301561721
-2.1176470588235 -1.0578437575212
-1.8823529411765 -4.4002671442152
-1.6470588235294 -33.0701815217800
-1.4117647058824 -90.3072635705684
-1.1764705882353 -12.2258987816153
-0.9411764705882 -4.6269750753301
-0.7058823529412 -2.4442239259561
-0.4705882352941 -1.5675871881855
-0.2352941176471 -1.1723532138826
0.0000000000000 -1.0153468163061
0.2352941176471 -1.0211262031021
0.4705882352941 -1.1935985585743
0.7058823529412 -1.6245249196412
0.9411764705882 -2.6296988127257
1.1764705882353 -5.5541897369146
1.4117647058824 -26.7473823977587
1.6470588235294 -8.1882734713906
1.8823529411765 -0.6410441606860
2.1176470588235 0.1997156776476
2.3529411764706 0.3273202275695
2.5882352941176 0.3167117428377
2.8235294117647 0.2778840409242
3.0588235294118 0.2373324625236
3.2941176470588 0.2015122030131
3.5294117647059 0.1714089574016
3.7647058823529 0.1465031679881
4.0000000000000 0.1259547595222
"x-label y
"y-label ADMBASE::kxy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0938447525162
-3.7647058823529 -0.1069086552275
-3.5294117647059 -0.1223953789764
-3.2941176470588 -0.1408378978065
-3.0588235294118 -0.1629530886489
-2.8235294117647 -0.1895818926840
-2.5882352941176 -0.2217480470234
-2.3529411764706 -0.2608057997193
-2.1176470588235 -0.3082515022363
-1.8823529411765 -0.3657061393171
-1.6470588235294 -0.4349715466334
-1.4117647058824 -0.5171099955117
-1.1764705882353 -0.6120859322990
-0.9411764705882 -0.7170634024220
-0.7058823529412 -0.8244763449733
-0.4705882352941 -0.9213176965655
-0.2352941176471 -0.9902251763077
0.0000000000000 -1.0153468163061
0.2352941176471 -0.9901955229546
0.4705882352941 -0.9212780239884
0.7058823529412 -0.8244480042217
0.9411764705882 -0.7170589864588
1.1764705882353 -0.6121061332181
1.4117647058824 -0.5171474353721
1.6470588235294 -0.4350184038673
1.8823529411765 -0.3657623908528
2.1176470588235 -0.3082996312540
2.3529411764706 -0.2608503081154
2.5882352941176 -0.2217877141758
2.8235294117647 -0.1896162259085
3.0588235294118 -0.1629826358991
3.2941176470588 -0.1408630514138
3.5294117647059 -0.1224165939716
3.7647058823529 -0.1069266347305
4.0000000000000 -0.0938599592841
"x-label z
"y-label ADMBASE::kxy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0733133861644
-3.7647058823529 -0.0843637681616
-3.5294117647059 -0.0976706245714
-3.2941176470588 -0.1137999701954
-3.0588235294118 -0.1335149381261
-2.8235294117647 -0.1577691965139
-2.5882352941176 -0.1877783966155
-2.3529411764706 -0.2251868512307
-2.1176470588235 -0.2719626585381
-1.8823529411765 -0.3304061397816
-1.6470588235294 -0.4032175250640
-1.4117647058824 -0.4924988115928
-1.1764705882353 -0.5989196850267
-0.9411764705882 -0.7192623125484
-0.7058823529412 -0.8427816844438
-0.4705882352941 -0.9498471019036
-0.2352941176471 -1.0143706782645
0.0000000000000 -1.0153468163061
0.2352941176471 -0.9504983757886
0.4705882352941 -0.8388132322152
0.7058823529412 -0.7083414351285
0.9411764705882 -0.5822106999699
1.1764705882353 -0.4724198235170
1.4117647058824 -0.3823775419358
1.6470588235294 -0.3106044806270
1.8823529411765 -0.2540260434234
2.1176470588235 -0.2095290641219
2.3529411764706 -0.1743529559408
2.5882352941176 -0.1463587408176
2.8235294117647 -0.1239033104192
3.0588235294118 -0.1057118678722
3.2941176470588 -0.0908525536241
3.5294117647059 -0.0786173820810
3.7647058823529 -0.0684533774709
4.0000000000000 -0.0599494205685
"x-label diagonal
"y-label ADMBASE::kxz
"Time = 0.0000000000000
-6.9282032302755 0.0045087416330
-6.5206618637887 0.0052611775875
-6.1131204973019 0.0061940470492
-5.7055791308151 0.0073641986353
-5.2980377643283 0.0088549232262
-4.8904963978415 0.0107885651585
-4.4829550313547 0.0133491424439
-4.0754136648679 0.0168221122507
-3.6678722983812 0.0216764310699
-3.2603309318944 0.0287036193457
-2.8527895654076 0.0392851889795
-2.4452481989208 0.0557951791237
-2.0377068324340 0.0815562864427
-1.6301654659472 0.1164830299809
-1.2226240994604 0.1383141052385
-0.8150827329736 0.0940119796737
-0.4075413664868 -0.0122533703740
0.0000000000000 -0.1128163129229
0.4075413664868 -0.1797741205236
0.8150827329736 -0.1703917529507
1.2226240994604 -0.0728630602281
1.6301654659472 0.0146246844894
2.0377068324340 0.0474014607539
2.4452481989208 0.0494150086190
2.8527895654076 0.0420981739118
3.2603309318944 0.0337859799375
3.6678722983812 0.0267257689122
4.0754136648679 0.0211892605701
4.4829550313547 0.0169466334659
4.8904963978415 0.0137029577620
5.2980377643283 0.0112051332573
5.7055791308151 0.0092633324353
6.1131204973019 0.0077363548294
6.5206618637887 0.0065225437822
6.9282032302755 0.0055468271364
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 5.7463620478528
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 -22.7310687435476
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 0.0319581095762
"x-label time
"y-label ADMBASE::kxz
"kxz v time
0.0000000000000 0.1738878813720
"x-label x
"y-label ADMBASE::kxz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0044846738072
-3.7647058823529 -0.0048856841500
-3.5294117647059 -0.0053145877451
-3.2941176470588 -0.0057626171234
-3.0588235294118 -0.0062107958937
-2.8235294117647 -0.0066215826669
-2.5882352941176 -0.0069236497577
-2.3529411764706 -0.0069808461049
-2.1176470588235 -0.0065342507308
-1.8823529411765 -0.0050994056378
-1.6470588235294 -0.0019772279549
-1.4117647058824 -0.0011544899970
-1.1764705882353 -0.0081233280407
-0.9411764705882 -0.0174091170616
-0.7058823529412 -0.0296917025645
-0.4705882352941 -0.0469150125352
-0.2352941176471 -0.0724983090366
0.0000000000000 -0.1128163129229
0.2352941176471 -0.1808197820811
0.4705882352941 -0.3055993605440
0.7058823529412 -0.5626289104396
0.9411764705882 -1.1952057943844
1.1764705882353 -3.3458047030430
1.4117647058824 -22.7310687435476
1.6470588235294 -11.5861629990919
1.8823529411765 -2.5853215857571
2.1176470588235 -1.0548397746300
2.3529411764706 -0.5450018240038
2.5882352941176 -0.3216869796024
2.8235294117647 -0.2071247618217
3.0588235294118 -0.1418456514502
3.2941176470588 -0.1017287115822
3.5294117647059 -0.0756248056549
3.7647058823529 -0.0578590386226
4.0000000000000 -0.0453219207689
"x-label y
"y-label ADMBASE::kxz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0055706930717
-3.7647058823529 0.0065415971112
-3.5294117647059 0.0077104553193
-3.2941176470588 0.0091164137218
-3.0588235294118 0.0108052419469
-2.8235294117647 0.0128184761153
-2.5882352941176 0.0151833284977
-2.3529411764706 0.0178970168826
-2.1176470588235 0.0208668646986
-1.8823529411765 0.0238270537239
-1.6470588235294 0.0262079770995
-1.4117647058824 0.0268833942621
-1.1764705882353 0.0239433757537
-0.9411764705882 0.0145720470745
-0.7058823529412 -0.0044117399637
-0.4705882352941 -0.0347200578685
-0.2352941176471 -0.0736940562731
0.0000000000000 -0.1128163129229
0.2352941176471 -0.1410672546148
0.4705882352941 -0.1516653006473
0.7058823529412 -0.1455824143432
0.9411764705882 -0.1289057764163
1.1764705882353 -0.1081615772972
1.4117647058824 -0.0878254462110
1.6470588235294 -0.0700386960151
1.8823529411765 -0.0553986837572
2.1176470588235 -0.0437599348151
2.3529411764706 -0.0346505964230
2.5882352941176 -0.0275778569036
2.8235294117647 -0.0220954170328
3.0588235294118 -0.0178284401844
3.2941176470588 -0.0144939972567
3.5294117647059 -0.0118737111617
3.7647058823529 -0.0097980880811
4.0000000000000 -0.0081431014904
"x-label z
"y-label ADMBASE::kxz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0078601096278
-3.7647058823529 0.0086279917234
-3.5294117647059 0.0094422379480
-3.2941176470588 0.0102774199447
-3.0588235294118 0.0110887872848
-2.8235294117647 0.0117929786879
-2.5882352941176 0.0122480220902
-2.3529411764706 0.0122266267608
-2.1176470588235 0.0113565085116
-1.8823529411765 0.0090612730720
-1.6470588235294 0.0045001017149
-1.4117647058824 -0.0034720061488
-1.1764705882353 -0.0161643237810
-0.9411764705882 -0.0345636915894
-0.7058823529412 -0.0582210251765
-0.4705882352941 -0.0838089872433
-0.2352941176471 -0.1045738717850
0.0000000000000 -0.1128163129229
0.2352941176471 -0.1049490525036
0.4705882352941 -0.0843742559750
0.7058823529412 -0.0587456037243
0.9411764705882 -0.0349251121706
1.1764705882353 -0.0163466501898
1.4117647058824 -0.0035119562716
1.6470588235294 0.0045510748812
1.8823529411765 0.0091605503273
2.1176470588235 0.0114739250912
2.3529411764706 0.0123463043043
2.5882352941176 0.0123605925419
2.8235294117647 0.0118935527175
3.0588235294118 0.0111770466629
3.2941176470588 0.0103536652648
3.5294117647059 0.0095071845686
3.7647058823529 0.0086832224494
4.0000000000000 0.0079069979167
"x-label diagonal
"y-label ADMBASE::kyy
"Time = 0.0000000000000
-6.9282032302755 0.0289630673960
-6.5206618637887 0.0342222010780
-6.1131204973019 0.0408526223467
-5.7055791308151 0.0493223799933
-5.2980377643283 0.0603240603746
-4.8904963978415 0.0748872906978
-4.4829550313547 0.0945723768340
-4.0754136648679 0.1217945302242
-3.6678722983812 0.1604368949510
-3.2603309318944 0.2167535761809
-2.8527895654076 0.3006770568384
-2.4452481989208 0.4263258211463
-2.0377068324340 0.6048398928227
-1.6301654659472 0.8050036228497
-1.2226240994604 0.8638174172855
-0.8150827329736 0.5807145483630
-0.4075413664868 0.1750560406887
0.0000000000000 0.0000000000000
0.4075413664868 0.0767351289526
0.8150827329736 0.2878309436890
1.2226240994604 0.4349526889167
1.6301654659472 0.4261020709786
2.0377068324340 0.3441459854185
2.4452481989208 0.2609394640619
2.8527895654076 0.1961754971122
3.2603309318944 0.1491076859870
3.6678722983812 0.1152405215150
4.0754136648679 0.0906204168939
4.4829550313547 0.0724311760797
4.8904963978415 0.0587600561086
5.2980377643283 0.0483021875428
5.7055791308151 0.0401792109087
6.1131204973019 0.0337758644043
6.5206618637887 0.0286638629855
6.9282032302755 0.0245326473616
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 16.5491642035289
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 -16.5494138997691
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 0.1050464349863
"x-label time
"y-label ADMBASE::kyy
"kyy v time
0.0000000000000 0.2980097005636
"x-label x
"y-label ADMBASE::kyy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kyy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0068562376268
-3.7647058823529 0.0081690188315
-3.5294117647059 0.0097910543737
-3.2941176470588 0.0118039114085
-3.0588235294118 0.0143152249997
-2.8235294117647 0.0174549461996
-2.5882352941176 0.0213781265247
-2.3529411764706 0.0262708504698
-2.1176470588235 0.0323099840494
-1.8823529411765 0.0396086087877
-1.6470588235294 0.0481195645105
-1.4117647058824 0.0573512410924
-1.1764705882353 0.0660506917342
-0.9411764705882 0.0717393086745
-0.7058823529412 0.0705878394186
-0.4705882352941 0.0584758869364
-0.2352941176471 0.0336887114391
0.0000000000000 0.0000000000000
0.2352941176471 -0.0336877025946
0.4705882352941 -0.0584733689242
0.7058823529412 -0.0705854130149
0.9411764705882 -0.0717388668751
1.1764705882353 -0.0660528716319
1.4117647058824 -0.0573553934439
1.6470588235294 -0.0481247481822
1.8823529411765 -0.0396147012342
2.1176470588235 -0.0323150287865
2.3529411764706 -0.0262753337805
2.5882352941176 -0.0213819507271
2.8235294117647 -0.0174581072851
3.0588235294118 -0.0143178206887
3.2941176470588 -0.0118060195837
3.5294117647059 -0.0097927514735
3.7647058823529 -0.0081703926670
4.0000000000000 -0.0068573486235
"x-label z
"y-label ADMBASE::kyy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label diagonal
"y-label ADMBASE::kyz
"Time = 0.0000000000000
-6.9282032302755 0.0240561158982
-6.5206618637887 0.0281860038804
-6.1131204973019 0.0333203265543
-5.7055791308151 0.0397720981845
-5.2980377643283 0.0479922841586
-4.8904963978415 0.0586271253440
-4.4829550313547 0.0726125557459
-4.0754136648679 0.0913188765362
-3.6678722983812 0.1168165299520
-3.2603309318944 0.1521728353720
-2.8527895654076 0.2017502399057
-2.4452481989208 0.2707189041633
-2.0377068324340 0.3605704312062
-1.6301654659472 0.4510858545827
-1.2226240994604 0.4649934964801
-0.8150827329736 0.3121270424916
-0.4075413664868 0.0923846835368
0.0000000000000 0.0000000000000
0.4075413664868 0.0897330338545
0.8150827329736 0.2973336910335
1.2226240994604 0.4404726246017
1.6301654659472 0.4290087523311
2.0377068324340 0.3454189002670
2.4452481989208 0.2612038821040
2.8527895654076 0.1958377463993
3.2603309318944 0.1484296060364
3.6678722983812 0.1143871902620
4.0754136648679 0.0896935758208
4.4829550313547 0.0714919225747
4.8904963978415 0.0578437916002
5.2980377643283 0.0474284790010
5.7055791308151 0.0393577114917
6.1131204973019 0.0330103192045
6.5206618637887 0.0279544111807
6.9282032302755 0.0238774359172
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 21.5610441460238
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 -13.2033159173214
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 0.0927197305795
"x-label time
"y-label ADMBASE::kyz
"kyz v time
0.0000000000000 0.2573549267686
"x-label x
"y-label ADMBASE::kyz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kyz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0217114191514
-3.7647058823529 -0.0245871449145
-3.5294117647059 -0.0279333021839
-3.2941176470588 -0.0318242709544
-3.0588235294118 -0.0363494438718
-2.8235294117647 -0.0415838424166
-2.5882352941176 -0.0475768109912
-2.3529411764706 -0.0543446024425
-2.1176470588235 -0.0617690871533
-1.8823529411765 -0.0695092252255
-1.6470588235294 -0.0768969511295
-1.4117647058824 -0.0826532592214
-1.1764705882353 -0.0848298099724
-0.9411764705882 -0.0808825538977
-0.7058823529412 -0.0685117264945
-0.4705882352941 -0.0475833197619
-0.2352941176471 -0.0221288594747
0.0000000000000 0.0000000000000
0.2352941176471 0.0115595057923
0.4705882352941 0.0108920981329
0.7058823529412 0.0020760415593
0.9411764705882 -0.0091431889155
1.1764705882353 -0.0187797380130
1.4117647058824 -0.0253038500488
1.6470588235294 -0.0287804866580
1.8823529411765 -0.0299052156376
2.1176470588235 -0.0294637027171
2.3529411764706 -0.0280785429615
2.5882352941176 -0.0262033709890
2.8235294117647 -0.0241332659530
3.0588235294118 -0.0220382141973
3.2941176470588 -0.0200239351762
3.5294117647059 -0.0181453924362
3.7647058823529 -0.0164208872228
4.0000000000000 -0.0148575886842
"x-label z
"y-label ADMBASE::kyz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0217224847895
-3.7647058823529 0.0245988219374
-3.5294117647059 0.0279449910285
-3.2941176470588 0.0318359181632
-3.0588235294118 0.0363588039324
-2.8235294117647 0.0415883003523
-2.5882352941176 0.0475727181168
-2.3529411764706 0.0543262594688
-2.1176470588235 0.0617287570667
-1.8823529411765 0.0694354142560
-1.6470588235294 0.0767793055215
-1.4117647058824 0.0824864491110
-1.1764705882353 0.0846164401720
-0.9411764705882 0.0806559194984
-0.7058823529412 0.0683126695404
-0.4705882352941 0.0474619765710
-0.2352941176471 0.0220936520602
0.0000000000000 0.0000000000000
0.2352941176471 -0.0115828674423
0.4705882352941 -0.0109380698577
0.7058823529412 -0.0020887325769
0.9411764705882 0.0092129655440
1.1764705882353 0.0189431710491
1.4117647058824 0.0255415001571
1.6470588235294 0.0290588257832
1.8823529411765 0.0301961150587
2.1176470588235 0.0297442518044
2.3529411764706 0.0283389769763
2.5882352941176 0.0264371996813
2.8235294117647 0.0243372833839
3.0588235294118 0.0222153156315
3.2941176470588 0.0201762665362
3.5294117647059 0.0182746797200
3.7647058823529 0.0165310713975
4.0000000000000 0.0149514142425
"x-label diagonal
"y-label ADMBASE::kzz
"Time = 0.0000000000000
-6.9282032302755 -0.0162283663619
-6.5206618637887 -0.0191946835435
-6.1131204973019 -0.0229359671815
-5.7055791308151 -0.0277157812644
-5.2980377643283 -0.0339228036673
-4.8904963978415 -0.0421321384874
-4.4829550313547 -0.0532094037497
-4.0754136648679 -0.0684812896778
-3.6678722983812 -0.0900510519263
-3.2603309318944 -0.1212324770853
-2.8527895654076 -0.1670997108744
-2.4452481989208 -0.2343396541655
-2.0377068324340 -0.3265014020102
-1.6301654659472 -0.4225127738306
-1.2226240994604 -0.4361757084041
-0.8150827329736 -0.2822174638764
-0.4075413664868 -0.0871711922606
0.0000000000000 0.0000000000000
0.4075413664868 0.0086272252536
0.8150827329736 -0.0034812148585
1.2226240994604 -0.0298621503908
1.6301654659472 -0.0623311385748
2.0377068324340 -0.0775035569841
2.4452481989208 -0.0757010807999
2.8527895654076 -0.0665127694951
3.2603309318944 -0.0559362663163
3.6678722983812 -0.0463184364202
4.0754136648679 -0.0382560496944
4.4829550313547 -0.0317065598088
4.8904963978415 -0.0264425548296
5.2980377643283 -0.0222110882902
5.7055791308151 -0.0187977319849
6.1131204973019 -0.0160259031271
6.5206618637887 -0.0137598203278
6.9282032302755 -0.0118925350028
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 8.7048288334345
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 -8.7075085749318
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 0.0626684267341
"x-label time
"y-label ADMBASE::kzz
"kzz v time
0.0000000000000 0.1816903013946
"x-label x
"y-label ADMBASE::kzz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label y
"y-label ADMBASE::kzz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000000000
-3.7647058823529 0.0000000000000
-3.5294117647059 0.0000000000000
-3.2941176470588 0.0000000000000
-3.0588235294118 0.0000000000000
-2.8235294117647 0.0000000000000
-2.5882352941176 0.0000000000000
-2.3529411764706 0.0000000000000
-2.1176470588235 0.0000000000000
-1.8823529411765 0.0000000000000
-1.6470588235294 0.0000000000000
-1.4117647058824 0.0000000000000
-1.1764705882353 0.0000000000000
-0.9411764705882 0.0000000000000
-0.7058823529412 0.0000000000000
-0.4705882352941 0.0000000000000
-0.2352941176471 0.0000000000000
0.0000000000000 0.0000000000000
0.2352941176471 0.0000000000000
0.4705882352941 0.0000000000000
0.7058823529412 0.0000000000000
0.9411764705882 0.0000000000000
1.1764705882353 0.0000000000000
1.4117647058824 0.0000000000000
1.6470588235294 0.0000000000000
1.8823529411765 0.0000000000000
2.1176470588235 0.0000000000000
2.3529411764706 0.0000000000000
2.5882352941176 0.0000000000000
2.8235294117647 0.0000000000000
3.0588235294118 0.0000000000000
3.2941176470588 0.0000000000000
3.5294117647059 0.0000000000000
3.7647058823529 0.0000000000000
4.0000000000000 0.0000000000000
"x-label z
"y-label ADMBASE::kzz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0068597320388
-3.7647058823529 -0.0081728984938
-3.5294117647059 -0.0097951514945
-3.2941176470588 -0.0118082314642
-3.0588235294118 -0.0143189112012
-2.8235294117647 -0.0174568174318
-2.5882352941176 -0.0213762874357
-2.3529411764706 -0.0262619832503
-2.1176470588235 -0.0322888883118
-1.8823529411765 -0.0395665489057
-1.6470588235294 -0.0480459457865
-1.4117647058824 -0.0572354953015
-1.1764705882353 -0.0658845564698
-0.9411764705882 -0.0715382938159
-0.7058823529412 -0.0703827504356
-0.4705882352941 -0.0583267663885
-0.2352941176471 -0.0336351120917
0.0000000000000 0.0000000000000
0.2352941176471 0.0337557851174
0.4705882352941 0.0587201644994
0.7058823529412 0.0710169076133
0.9411764705882 0.0722863450379
1.1764705882353 0.0666277050693
1.4117647058824 0.0578940670228
1.6470588235294 0.0485901677031
1.8823529411765 0.0400000485194
2.1176470588235 0.0326227277854
2.3529411764706 0.0265190426751
2.5882352941176 0.0215727549400
2.8235294117647 0.0176056943628
3.0588235294118 0.0144328802192
3.2941176470588 0.0118958334491
3.5294117647059 0.0098625255631
3.7647058823529 0.0082252160124
4.0000000000000 0.0069006527273
"x-label diagonal
"y-label ADMCONSTRAINTS::momx
"Time = 0.0000000000000
-6.9282032302755 0.0000023998123
-6.5206618637887 0.0000023998123
-6.1131204973019 0.0000037462540
-5.7055791308151 0.0000059816076
-5.2980377643283 0.0000096751792
-4.8904963978415 0.0000158288769
-4.4829550313547 0.0000261941714
-4.0754136648679 0.0000431341027
-3.6678722983812 0.0000693544449
-3.2603309318944 0.0000984664899
-2.8527895654076 0.0000883061471
-2.4452481989208 -0.0001617757085
-2.0377068324340 -0.0012496271785
-1.6301654659472 -0.0034739946128
-1.2226240994604 -0.0015590232581
-0.8150827329736 0.0074150957731
-0.4075413664868 0.0052645663817
0.0000000000000 0.0000026711753
0.4075413664868 -0.0045790623181
0.8150827329736 -0.0060465810395
1.2226240994604 0.0012744892548
1.6301654659472 0.0028411075298
2.0377068324340 0.0010287226643
2.4452481989208 0.0001229584440
2.8527895654076 -0.0000866924716
3.2603309318944 -0.0000928472280
3.6678722983812 -0.0000650002357
4.0754136648679 -0.0000408355798
4.4829550313547 -0.0000249880662
4.8904963978415 -0.0000151587982
5.2980377643283 -0.0000093282610
5.7055791308151 -0.0000058275281
6.1131204973019 -0.0000037025170
6.5206618637887 -0.0000023711277
6.9282032302755 -0.0000023711277
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 0.6574918457186
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 -0.6574908393705
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 0.0009155405287
"x-label time
"y-label ADMCONSTRAINTS::momx
"momx v time
0.0000000000000 0.0091156209993
"x-label x
"y-label ADMCONSTRAINTS::momx (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000000696546
-3.7647058823529 0.0000000696546
-3.5294117647059 0.0000001117745
-3.2941176470588 0.0000001872213
-3.0588235294118 0.0000003295503
-2.8235294117647 0.0000006105937
-2.5882352941176 0.0000011958731
-2.3529411764706 0.0000024178212
-2.1176470588235 0.0000048255485
-1.8823529411765 0.0000073870716
-1.6470588235294 0.0000019655295
-1.4117647058824 0.0000000663553
-1.1764705882353 -0.0000032212419
-0.9411764705882 -0.0000040661374
-0.7058823529412 -0.0000022138157
-0.4705882352941 -0.0000003359712
-0.2352941176471 0.0000012244212
0.0000000000000 0.0000026711753
0.2352941176471 0.0000041654287
0.4705882352941 0.0000058515312
0.7058823529412 0.0000080580922
0.9411764705882 0.0000097022428
1.1764705882353 0.0000071831416
1.4117647058824 0.0000002959430
1.6470588235294 0.0000010892844
1.8823529411765 0.0000043415450
2.1176470588235 0.0000033425537
2.3529411764706 0.0000019326746
2.5882352941176 0.0000010668418
2.8235294117647 0.0000005964759
3.0588235294118 0.0000003432538
3.2941176470588 0.0000002037742
3.5294117647059 0.0000001249505
3.7647058823529 0.0000000789527
4.0000000000000 0.0000000789527
"x-label y
"y-label ADMCONSTRAINTS::momx (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0002760634361
-3.7647058823529 -0.0002760634361
-3.5294117647059 -0.0003295156841
-3.2941176470588 -0.0003915497893
-3.0588235294118 -0.0004609722456
-2.8235294117647 -0.0005338283362
-2.5882352941176 -0.0006005203155
-2.3529411764706 -0.0006460954771
-2.1176470588235 -0.0006383227445
-1.8823529411765 -0.0005213846725
-1.6470588235294 -0.0002236398631
-1.4117647058824 0.0003557084366
-1.1764705882353 0.0012806822206
-0.9411764705882 0.0024723132477
-0.7058823529412 0.0035686055989
-0.4705882352941 0.0038316648827
-0.2352941176471 0.0025762969800
0.0000000000000 0.0000026711753
0.2352941176471 -0.0025708987227
0.4705882352941 -0.0038269344558
0.7058823529412 -0.0035648694043
0.9411764705882 -0.0024699151149
1.1764705882353 -0.0012797052883
1.4117647058824 -0.0003548936449
1.6470588235294 0.0002239974663
1.8823529411765 0.0005225667459
2.1176470588235 0.0006386489287
2.3529411764706 0.0006464631612
2.5882352941176 0.0006009479209
2.8235294117647 0.0005344473225
3.0588235294118 0.0004612319793
3.2941176470588 0.0003917839206
3.5294117647059 0.0003297276229
3.7647058823529 0.0002762300284
4.0000000000000 0.0002762300284
"x-label z
"y-label ADMCONSTRAINTS::momx (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000030039059
-3.7647058823529 -0.0000030039059
-3.5294117647059 -0.0000078494694
-3.2941176470588 -0.0000154096267
-3.0588235294118 -0.0000269045367
-2.8235294117647 -0.0000437453132
-2.5882352941176 -0.0000678509149
-2.3529411764706 -0.0000999729419
-2.1176470588235 -0.0001387222302
-1.8823529411765 -0.0001768329404
-1.6470588235294 -0.0001930152148
-1.4117647058824 -0.0001451466328
-1.1764705882353 0.0000309257187
-0.9411764705882 0.0003904381761
-0.7058823529412 0.0008723638292
-0.4705882352941 0.0011841647460
-0.2352941176471 0.0009073285759
0.0000000000000 0.0000026711753
0.2352941176471 -0.0009130550142
0.4705882352941 -0.0012072984522
0.7058823529412 -0.0008981570729
0.9411764705882 -0.0004060735439
1.1764705882353 -0.0000350799671
1.4117647058824 0.0001482353830
1.6470588235294 0.0001982846853
1.8823529411765 0.0001817627082
2.1176470588235 0.0001425269937
2.3529411764706 0.0001024919038
2.5882352941176 0.0000694207340
2.8235294117647 0.0000447303936
3.0588235294118 0.0000273704089
3.2941176470588 0.0000156124569
3.5294117647059 0.0000079012306
3.7647058823529 0.0000029744799
4.0000000000000 0.0000029744799
"x-label diagonal
"y-label ADMCONSTRAINTS::momy
"Time = 0.0000000000000
-6.9282032302755 -0.0000363676554
-6.5206618637887 -0.0000363676554
-6.1131204973019 -0.0000487615512
-5.7055791308151 -0.0000666836849
-5.2980377643283 -0.0000927652185
-4.8904963978415 -0.0001305023909
-4.4829550313547 -0.0001864771700
-4.0754136648679 -0.0002699864286
-3.6678722983812 -0.0003941996238
-3.2603309318944 -0.0005805296932
-2.8527895654076 -0.0008682979201
-2.4452481989208 -0.0014219650793
-2.0377068324340 -0.0030468832042
-1.6301654659472 -0.0084187447674
-1.2226240994604 -0.0157799096728
-0.8150827329736 -0.0043511652666
-0.4075413664868 0.0082388341399
0.0000000000000 0.0017672582921
0.4075413664868 -0.0028584821304
0.8150827329736 0.0036001729798
1.2226240994604 0.0070367519661
1.6301654659472 0.0029735615267
2.0377068324340 0.0008548734863
2.4452481989208 0.0004404542626
2.8527895654076 0.0003554098196
3.2603309318944 0.0002901626527
3.6678722983812 0.0002232747416
4.0754136648679 0.0001667238061
4.4829550313547 0.0001228081338
4.8904963978415 0.0000900362729
5.2980377643283 0.0000664290650
5.7055791308151 0.0000492065035
6.1131204973019 0.0000368936915
6.5206618637887 0.0000278548917
6.9282032302755 0.0000278548917
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 5.5477134581282
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 -1.9143760408292
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 0.0016770994505
"x-label time
"y-label ADMCONSTRAINTS::momy
"momy v time
0.0000000000000 0.0356006269690
"x-label x
"y-label ADMCONSTRAINTS::momy (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0005828437760
-3.7647058823529 -0.0005828437760
-3.5294117647059 -0.0011585309809
-3.2941176470588 -0.0023442514052
-3.0588235294118 -0.0049275407810
-2.8235294117647 -0.0110006131948
-2.5882352941176 -0.0268347570486
-2.3529411764706 -0.0747391036537
-2.1176470588235 -0.2593424224227
-1.8823529411765 -1.6727489958414
-1.6470588235294 -0.5142578023571
-1.4117647058824 -0.0160052295752
-1.1764705882353 5.5477134581282
-0.9411764705882 0.4132357491503
-0.7058823529412 0.1043803062143
-0.4705882352941 0.0337795759849
-0.2352941176471 0.0113661341729
0.0000000000000 0.0017672582921
0.2352941176471 -0.0052983290570
0.4705882352941 -0.0160968595096
0.7058823529412 -0.0431424031915
0.9411764705882 -0.1428588479047
1.1764705882353 -1.9143760408292
1.4117647058824 0.0044503687862
1.6470588235294 0.0615789279012
1.8823529411765 0.2398432172595
2.1176470588235 0.0418506392430
2.3529411764706 0.0123055913691
2.5882352941176 0.0039135113059
2.8235294117647 0.0011430768519
3.0588235294118 0.0001744372843
3.2941176470588 -0.0001571581336
3.5294117647059 -0.0002519239251
3.7647058823529 -0.0002581704362
4.0000000000000 -0.0002581704362
"x-label y
"y-label ADMCONSTRAINTS::momy (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000274741093
-3.7647058823529 0.0000274741093
-3.5294117647059 0.0000328537184
-3.2941176470588 0.0000386578100
-3.0588235294118 0.0000438850094
-2.8235294117647 0.0000469247091
-2.5882352941176 0.0000448328501
-2.3529411764706 0.0000316497815
-2.1176470588235 -0.0000017976208
-1.8823529411765 -0.0000681779646
-1.6470588235294 -0.0001824809099
-1.4117647058824 -0.0003464287699
-1.1764705882353 -0.0005233791083
-0.9411764705882 -0.0005898570964
-0.7058823529412 -0.0003333586247
-0.4705882352941 0.0003881375054
-0.2352941176471 0.0013187204619
0.0000000000000 0.0017672582921
0.2352941176471 0.0013183838318
0.4705882352941 0.0003874362886
0.7058823529412 -0.0003339420605
0.9411764705882 -0.0005901664562
1.1764705882353 -0.0005239565114
1.4117647058824 -0.0003468068548
1.6470588235294 -0.0001829261192
1.8823529411765 -0.0000684184831
2.1176470588235 -0.0000020476788
2.3529411764706 0.0000315038391
2.5882352941176 0.0000447619082
2.8235294117647 0.0000469465488
3.0588235294118 0.0000438415451
3.2941176470588 0.0000386342397
3.5294117647059 0.0000328429787
3.7647058823529 0.0000274653373
4.0000000000000 0.0000274653373
"x-label z
"y-label ADMCONSTRAINTS::momy (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0000412476365
-3.7647058823529 0.0000412476365
-3.5294117647059 0.0000462109032
-3.2941176470588 0.0000506954458
-3.0588235294118 0.0000531075978
-2.8235294117647 0.0000521838675
-2.5882352941176 0.0000449689566
-2.3529411764706 0.0000284520619
-2.1176470588235 0.0000002966932
-1.8823529411765 -0.0000364540608
-1.6470588235294 -0.0000685722942
-1.4117647058824 -0.0000491695000
-1.1764705882353 0.0001054591480
-0.9411764705882 0.0005272726137
-0.7058823529412 0.0012664397111
-0.4705882352941 0.0020935003104
-0.2352941176471 0.0024175892422
0.0000000000000 0.0017672582921
0.2352941176471 0.0005058187469
0.4705882352941 -0.0004807912362
0.7058823529412 -0.0007713306486
0.9411764705882 -0.0005959250291
1.1764705882353 -0.0003110263141
1.4117647058824 -0.0001031509057
1.6470588235294 0.0000036080745
1.8823529411765 0.0000409077123
2.1176470588235 0.0000425820444
2.3529411764706 0.0000312603537
2.5882352941176 0.0000176915506
2.8235294117647 0.0000062746751
3.0588235294118 -0.0000019838855
3.2941176470588 -0.0000073084300
3.5294117647059 -0.0000103072540
3.7647058823529 -0.0000117628626
4.0000000000000 -0.0000117628626
"x-label diagonal
"y-label ADMCONSTRAINTS::momz
"Time = 0.0000000000000
-6.9282032302755 -0.0000111299251
-6.5206618637887 -0.0000111299251
-6.1131204973019 -0.0000142152101
-5.7055791308151 -0.0000184568567
-5.2980377643283 -0.0000239780212
-4.8904963978415 -0.0000307778626
-4.4829550313547 -0.0000384965384
-4.0754136648679 -0.0000450981088
-3.6678722983812 -0.0000433551719
-3.2603309318944 -0.0000108689620
-2.8527895654076 0.0001119882156
-2.4452481989208 0.0004878171243
-2.0377068324340 0.0014513710709
-1.6301654659472 0.0029792149422
-1.2226240994604 0.0020387318598
-0.8150827329736 -0.0031553098266
-0.4075413664868 -0.0029125991559
0.0000000000000 -0.0015585599727
0.4075413664868 -0.0017566179290
0.8150827329736 0.0023855664913
1.2226240994604 0.0039290108592
1.6301654659472 0.0014018214637
2.0377068324340 0.0004717395604
2.4452481989208 0.0003784791381
2.8527895654076 0.0003306696070
3.2603309318944 0.0002563146335
3.6678722983812 0.0001858609730
4.0754136648679 0.0001308110723
4.4829550313547 0.0000916849504
4.8904963978415 0.0000645338945
5.2980377643283 0.0000459822603
5.7055791308151 0.0000331213169
6.1131204973019 0.0000242061046
6.5206618637887 0.0000179778648
6.9282032302755 0.0000179778648
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 1.1730102856652
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 -1.2434383100390
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 0.0009876880395
"x-label time
"y-label ADMCONSTRAINTS::momz
"momz v time
0.0000000000000 0.0139089164985
"x-label x
"y-label ADMCONSTRAINTS::momz (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000045074116
-3.7647058823529 -0.0000045074116
-3.5294117647059 -0.0000052256513
-3.2941176470588 -0.0000063478901
-3.0588235294118 -0.0000084429376
-2.8235294117647 -0.0000129380200
-2.5882352941176 -0.0000237784976
-2.3529411764706 -0.0000523558834
-2.1176470588235 -0.0001399584044
-1.8823529411765 -0.0006684451035
-1.6470588235294 0.0000036890096
-1.4117647058824 -0.0000030083352
-1.1764705882353 0.0024907206965
-0.9411764705882 0.0003924665718
-0.7058823529412 0.0001285596691
-0.4705882352941 -0.0001338344076
-0.2352941176471 -0.0005909277972
0.0000000000000 -0.0015585599727
0.2352941176471 -0.0038243355376
0.4705882352941 -0.0096868627834
0.7058823529412 -0.0271143710200
0.9411764705882 -0.0945632493501
1.1764705882353 -1.2434383100390
1.4117647058824 0.0000231825387
1.6470588235294 0.0513960814984
1.8823529411765 0.4892244492354
2.1176470588235 0.0862913755682
2.3529411764706 0.0304369774865
2.5882352941176 0.0131572055868
2.8235294117647 0.0064312257651
3.0588235294118 0.0034331332935
3.2941176470588 0.0019609019210
3.5294117647059 0.0011819978162
3.7647058823529 0.0007446024968
4.0000000000000 0.0007446024968
"x-label y
"y-label ADMCONSTRAINTS::momz (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000420490019
-3.7647058823529 -0.0000420490019
-3.5294117647059 -0.0000473121794
-3.2941176470588 -0.0000522974435
-3.0588235294118 -0.0000553935524
-2.8235294117647 -0.0000553418619
-2.5882352941176 -0.0000496930582
-2.3529411764706 -0.0000352728043
-2.1176470588235 -0.0000101406715
-1.8823529411765 0.0000227762448
-1.6470588235294 0.0000494037621
-1.4117647058824 0.0000246638634
-1.1764705882353 -0.0001348026782
-0.9411764705882 -0.0005541224739
-0.7058823529412 -0.0012698139273
-0.4705882352941 -0.0020371634613
-0.2352941176471 -0.0022709292607
0.0000000000000 -0.0015585599727
0.2352941176471 -0.0003238078619
0.4705882352941 0.0005684517068
0.7058823529412 0.0007715178705
0.9411764705882 0.0005521012139
1.1764705882353 0.0002603619714
1.4117647058824 0.0000610197259
1.6470588235294 -0.0000348170711
1.8823529411765 -0.0000621909434
2.1176470588235 -0.0000575457634
2.3529411764706 -0.0000414938965
2.5882352941176 -0.0000247905745
2.8235294117647 -0.0000111258632
3.0588235294118 -0.0000018724610
3.2941176470588 0.0000044738944
3.5294117647059 0.0000081466374
3.7647058823529 0.0000101180704
4.0000000000000 0.0000101180704
"x-label z
"y-label ADMCONSTRAINTS::momz (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 -0.0000299028498
-3.7647058823529 -0.0000299028498
-3.5294117647059 -0.0000361505727
-3.2941176470588 -0.0000431218112
-3.0588235294118 -0.0000500514514
-2.8235294117647 -0.0000554919553
-2.5882352941176 -0.0000565779340
-2.3529411764706 -0.0000480647056
-2.1176470588235 -0.0000211296543
-1.8823529411765 0.0000371084387
-1.6470588235294 0.0001407938508
-1.4117647058824 0.0002943273741
-1.1764705882353 0.0004661573491
-0.9411764705882 0.0005431493438
-0.7058823529412 0.0003327428151
-0.4705882352941 -0.0003036524837
-0.2352941176471 -0.0011429437311
0.0000000000000 -0.0015585599727
0.2352941176471 -0.0011616350785
0.4705882352941 -0.0003203080065
0.7058823529412 0.0003318459561
0.9411764705882 0.0005528729603
1.1764705882353 0.0004766918164
1.4117647058824 0.0003014017155
1.6470588235294 0.0001434553298
1.8823529411765 0.0000369424159
2.1176470588235 -0.0000226903046
2.3529411764706 -0.0000501418897
2.5882352941176 -0.0000586520813
2.8235294117647 -0.0000572661803
3.0588235294118 -0.0000515134112
3.2941176470588 -0.0000442790852
3.5294117647059 -0.0000370541798
3.7647058823529 -0.0000305834803
4.0000000000000 -0.0000305834803
"x-label diagonal
"y-label TWOPUNCTURES::puncture_u
"Time = 0.0000000000000
-6.9282032302755 0.0433012964632
-6.5206618637887 0.0460426945101
-6.1131204973019 0.0490585377579
-5.7055791308151 0.0525679130927
-5.2980377643283 0.0566147177953
-4.8904963978415 0.0612576371569
-4.4829550313547 0.0666397790374
-4.0754136648679 0.0730456592175
-3.6678722983812 0.0806407521148
-3.2603309318944 0.0897560764534
-2.8527895654076 0.1007880326981
-2.4452481989208 0.1140909400415
-2.0377068324340 0.1297010135760
-1.6301654659472 0.1464663215040
-1.2226240994604 0.1605241611683
-0.8150827329736 0.1660827575629
-0.4075413664868 0.1613708165014
0.0000000000000 0.1514942647645
0.4075413664868 0.1405610773274
0.8150827329736 0.1298725385856
1.2226240994604 0.1189241041831
1.6301654659472 0.1079809278922
2.0377068324340 0.0976067974715
2.4452481989208 0.0882684804164
2.8527895654076 0.0800978631577
3.2603309318944 0.0730479935041
3.6678722983812 0.0669448050757
4.0754136648679 0.0616951630744
4.4829550313547 0.0571472315282
4.8904963978415 0.0531307346334
5.2980377643283 0.0496380807432
5.7055791308151 0.0465290908236
6.1131204973019 0.0437871894058
6.5206618637887 0.0413173462965
6.9282032302755 0.0391181893526
"x-label time
"y-label TWOPUNCTURES::puncture_u
"puncture_u v time
0.0000000000000 0.3304019168765
"x-label time
"y-label TWOPUNCTURES::puncture_u
"puncture_u v time
0.0000000000000 0.0391181893526
"x-label time
"y-label TWOPUNCTURES::puncture_u
"puncture_u v time
0.0000000000000 0.0726752918858
"x-label time
"y-label TWOPUNCTURES::puncture_u
"puncture_u v time
0.0000000000000 0.0763893334163
"x-label x
"y-label TWOPUNCTURES::puncture_u (y = 0.0000000000000, z = 0.0000000000000), (yi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0815055527930
-3.7647058823529 0.0872761447243
-3.5294117647059 0.0939816590290
-3.2941176470588 0.1018656816391
-3.0588235294118 0.1113170380327
-2.8235294117647 0.1229519196745
-2.5882352941176 0.1377196542581
-2.3529411764706 0.1573564319323
-2.1176470588235 0.1851141226835
-1.8823529411765 0.2276999642274
-1.6470588235294 0.2952371678294
-1.4117647058824 0.3304019168765
-1.1764705882353 0.2777054163621
-0.9411764705882 0.2316863394132
-0.7058823529412 0.1998449179176
-0.4705882352941 0.1777592565472
-0.2352941176471 0.1623056062631
0.0000000000000 0.1514942647645
0.2352941176471 0.1439032754790
0.4705882352941 0.1389172513910
0.7058823529412 0.1362062646431
0.9411764705882 0.1347882212600
1.1764705882353 0.1335243016317
1.4117647058824 0.1293235884985
1.6470588235294 0.1213933169989
1.8823529411765 0.1123843632437
2.1176470588235 0.1041445746885
2.3529411764706 0.0969655240410
2.5882352941176 0.0906582840647
2.8235294117647 0.0850641744264
3.0588235294118 0.0800586820453
3.2941176470588 0.0755649483900
3.5294117647059 0.0715072713426
3.7647058823529 0.0678305951433
4.0000000000000 0.0644878672920
"x-label y
"y-label TWOPUNCTURES::puncture_u (x = 0.0000000000000, z = 0.0000000000000), (xi = 17, zi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0657566681070
-3.7647058823529 0.0689850564220
-3.5294117647059 0.0724993225181
-3.2941176470588 0.0764050847855
-3.0588235294118 0.0805680042042
-2.8235294117647 0.0851054498011
-2.5882352941176 0.0901681861838
-2.3529411764706 0.0955424184467
-2.1176470588235 0.1013472460292
-1.8823529411765 0.1077435913100
-1.6470588235294 0.1143794652848
-1.4117647058824 0.1214483859458
-1.1764705882353 0.1285751544869
-0.9411764705882 0.1354173206630
-0.7058823529412 0.1417439488036
-0.4705882352941 0.1468718786655
-0.2352941176471 0.1502711588039
0.0000000000000 0.1514942647645
0.2352941176471 0.1503007093133
0.4705882352941 0.1469136918171
0.7058823529412 0.1417765322946
0.9411764705882 0.1354229904321
1.1764705882353 0.1285457114547
1.4117647058824 0.1213858237123
1.6470588235294 0.1142892267750
1.8823529411765 0.1076184700961
2.1176470588235 0.1012236769973
2.3529411764706 0.0954107299960
2.5882352941176 0.0900333239180
2.8235294117647 0.0849718102015
3.0588235294118 0.0804367909163
3.2941176470588 0.0762781396357
3.5294117647059 0.0723781404481
3.7647058823529 0.0688692451263
4.0000000000000 0.0656466260019
"x-label z
"y-label TWOPUNCTURES::puncture_u (x = 0.0000000000000, y = 0.0000000000000), (xi = 17, yi = 17)
"Time = 0.0000000000000
-4.0000000000000 0.0654106434723
-3.7647058823529 0.0686580846583
-3.5294117647059 0.0722068197816
-3.2941176470588 0.0761449863444
-3.0588235294118 0.0803816756442
-2.8235294117647 0.0850263362870
-2.5882352941176 0.0902330553934
-2.3529411764706 0.0958029749121
-2.1176470588235 0.1018642922933
-1.8823529411765 0.1086081678037
-1.6470588235294 0.1156626124658
-1.4117647058824 0.1231950319765
-1.1764705882353 0.1308233766890
-0.9411764705882 0.1380024382406
-0.7058823529412 0.1445039757468
-0.4705882352941 0.1493527837551
-0.2352941176471 0.1518430014970
0.0000000000000 0.1514942647645
0.2352941176471 0.1483094471051
0.4705882352941 0.1428282937464
0.7058823529412 0.1360083959318
0.9411764705882 0.1284369353860
1.1764705882353 0.1208321610056
1.4117647058824 0.1133269528626
1.6470588235294 0.1062460477930
1.8823529411765 0.0997627307834
2.1176470588235 0.0937409771933
2.3529411764706 0.0883025846943
2.5882352941176 0.0833501232675
2.8235294117647 0.0787724723954
3.0588235294118 0.0746560863638
3.2941176470588 0.0709013216214
3.5294117647059 0.0674230056581
3.7647058823529 0.0642714663222
4.0000000000000 0.0613781643201
# $Header$
ActiveThorns = "Boundary CartGrid3D Time CoordBase SymBase"
ActiveThorns = "PUGH PUGHReduce PUGHSlab LocalReduce"
ActiveThorns = "IOASCII IOBasic IOUtil"
ActiveThorns = "ADMBase StaticConformal"
ActiveThorns = "TmunuBase ADMConstraints ADMCoupling ADMMacros SpaceMask"
ActiveThorns = "TwoPunctures"
Cactus::cctk_itlast = 0
Time::dtfac = 0.25
Grid::type = "byrange"
Grid::domain = "full"
Grid::xmin = -4
Grid::xmax = 4
Grid::ymin = -4
Grid::ymax = 4
Grid::zmin = -4
Grid::zmax = 4
Driver::global_nx = 35
Driver::global_ny = 35
Driver::global_nz = 35
ADMBase::initial_data = "twopunctures"
TwoPunctures::keep_u_around = yes
TwoPunctures::npoints_A = 20
TwoPunctures::npoints_B = 20
TwoPunctures::npoints_phi = 12
TwoPunctures::par_b = 1.5
TwoPunctures::par_m_plus = 1.5
TwoPunctures::par_P_plus[1] = 2.0
TwoPunctures::par_S_plus[1] = 0.5
TwoPunctures::par_S_plus[2] = -0.5
TwoPunctures::par_m_minus = 1.0
TwoPunctures::par_P_minus[1] = -2.0
TwoPunctures::par_S_minus[0] = -1.0
TwoPunctures::par_S_minus[2] = -1.0
ADMBase::lapse_evolution_method = "static"
ADMBase::initial_lapse = "one"
IO::out_dir = $parfile
IO::out_fileinfo = "axis labels"
IOBasic::outScalar_every = 1
IOBasic::outScalar_vars = "admbase::metric admbase::curv admconstraints::hamiltonian admconstraints::momentum TwoPunctures::puncture_u"
IOASCII::out1D_every = 1
IOASCII::out1D_vars = "admbase::metric admbase::curv admconstraints::hamiltonian admconstraints::momentum TwoPunctures::puncture_u"
# ==================================
# Numerical Relativity Metadata file
# ==================================
#
# This file contains information about the simulation provided by the
# TwoPunctures thorn. The format is described in the NR Data Format Document
# http://arxiv.org/abs/0709.0093 [draft SVN r707].
[metadata]
initial-ADM-energy = 1.007876500039254219
initial-ADM-angular-momentumx = 0
initial-ADM-angular-momentumy = 0
initial-ADM-angular-momentumz = 0.7787643274923383707
initial-separation = 2.337285746000000053
initial-data-type = Bowen-York
initial-data-bibtex-keys = Bowen:1980yu Brandt:1997tf Ansorg:2004ds
initial-bh-position1x = 1.168642873000000026
initial-bh-position1y = 0
initial-bh-position1z = 0
initial-bh-position2x = -1.168642873000000026
initial-bh-position2y = 0
initial-bh-position2z = 0
initial-bh-momentum1x = 0
initial-bh-momentum1y = 0.3331917497999999922
initial-bh-momentum1z = 0
initial-bh-momentum2x = 0
initial-bh-momentum2y = -0.3331917497999999922
initial-bh-momentum2z = 0
initial-bh-spin1x = 0
initial-bh-spin1y = 0
initial-bh-spin1z = 0
initial-bh-spin2x = 0
initial-bh-spin2y = 0
initial-bh-spin2z = 0
initial-bh-puncture-adm-mass1 = 0.5168196241765837806
initial-bh-puncture-adm-mass2 = 0.5168196241769023036
# 0D ASCII output created by CarpetIOASCII
#
0 0 0 0 0 25 25 25 0 0 0 0 4.089612235476418611
0 0 0 1 0 25 25 25 0 0 0 0 4.089612235476418611
# 1D ASCII output created by CarpetIOASCII
#
0 0 0 0 0 0 0 0 0 -2.5 -2.5 -2.5 1.71530327760696677
0 0 0 0 0 1 1 1 0 -2.400000000000000355 -2.400000000000000355 -2.400000000000000355 1.71530327760696677
0 0 0 0 0 2 2 2 0 -2.300000000000000266 -2.300000000000000266 -2.300000000000000266 1.71530327760696677
0 0 0 0 0 3 3 3 0 -2.200000000000000178 -2.200000000000000178 -2.200000000000000178 1.71530327760696677
0 0 0 0 0 4 4 4 0 -2.100000000000000089 -2.100000000000000089 -2.100000000000000089 1.71530327760696677
0 0 0 0 0 5 5 5 0 -2 -2 -2 1.71530327760696677
0 0 0 0 0 6 6 6 0 -1.900000000000000133 -1.900000000000000133 -1.900000000000000133 1.760072001535862629
0 0 0 0 0 7 7 7 0 -1.800000000000000044 -1.800000000000000044 -1.800000000000000044 1.810465631241670703
0 0 0 0 0 8 8 8 0 -1.700000000000000178 -1.700000000000000178 -1.700000000000000178 1.867598119353859776
0 0 0 0 0 9 9 9 0 -1.600000000000000089 -1.600000000000000089 -1.600000000000000089 1.932739027716428692
0 0 0 0 0 10 10 10 0 -1.5 -1.5 -1.5 2.007514102004078094
0 0 0 0 0 11 11 11 0 -1.400000000000000133 -1.400000000000000133 -1.400000000000000133 2.093941178367344502
0 0 0 0 0 12 12 12 0 -1.300000000000000044 -1.300000000000000044 -1.300000000000000044 2.194461363794840469
0 0 0 0 0 13 13 13 0 -1.200000000000000178 -1.200000000000000178 -1.200000000000000178 2.312113481397650272
0 0 0 0 0 14 14 14 0 -1.100000000000000089 -1.100000000000000089 -1.100000000000000089 2.450278418241534695
0 0 0 0 0 15 15 15 0 -1 -1 -1 2.612566376253476541
0 0 0 0 0 16 16 16 0 -0.9000000000000000222 -0.9000000000000000222 -0.9000000000000000222 2.801916720560823748
0 0 0 0 0 17 17 17 0 -0.8000000000000000444 -0.8000000000000000444 -0.8000000000000000444 3.018802993909616372
0 0 0 0 0 18 18 18 0 -0.7000000000000000666 -0.7000000000000000666 -0.7000000000000000666 3.258003474426795165
0 0 0 0 0 19 19 19 0 -0.6000000000000000888 -0.6000000000000000888 -0.6000000000000000888 3.504549752124062056
0 0 0 0 0 20 20 20 0 -0.5 -0.5 -0.5 3.733119865800035075
0 0 0 0 0 21 21 21 0 -0.4000000000000000222 -0.4000000000000000222 -0.4000000000000000222 3.911829562660859683
0 0 0 0 0 22 22 22 0 -0.3000000000000000444 -0.3000000000000000444 -0.3000000000000000444 4.023414488666974265
0 0 0 0 0 23 23 23 0 -0.2000000000000000111 -0.2000000000000000111 -0.2000000000000000111 4.074134014280875959
0 0 0 0 0 24 24 24 0 -0.1000000000000000056 -0.1000000000000000056 -0.1000000000000000056 4.088197310511604954
0 0 0 0 0 25 25 25 0 0 0 0 4.089612235476418611
0 0 0 0 0 26 26 26 0 0.1000000000000000056 0.1000000000000000056 0.1000000000000000056 4.088197310511359817
0 0 0 0 0 27 27 27 0 0.2000000000000000111 0.2000000000000000111 0.2000000000000000111 4.074134014280404337
0 0 0 0 0 28 28 28 0 0.3000000000000000444 0.3000000000000000444 0.3000000000000000444 4.023414488666272604
0 0 0 0 0 29 29 29 0 0.4000000000000000222 0.4000000000000000222 0.4000000000000000222 3.911829562659972837
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
0 0 0 1 0 20 20 20 0 -0.5 -0.5 -0.5 3.733119865800035075
0 0 0 1 0 21 21 21 0 -0.4000000000000000222 -0.4000000000000000222 -0.4000000000000000222 3.911829562660859683
0 0 0 1 0 22 22 22 0 -0.3000000000000000444 -0.3000000000000000444 -0.3000000000000000444 4.023414488666974265
0 0 0 1 0 23 23 23 0 -0.2000000000000000111 -0.2000000000000000111 -0.2000000000000000111 4.074134014280875959
0 0 0 1 0 24 24 24 0 -0.1000000000000000056 -0.1000000000000000056 -0.1000000000000000056 4.088197310511604954
0 0 0 1 0 25 25 25 0 0 0 0 4.089612235476418611
0 0 0 1 0 26 26 26 0 0.1000000000000000056 0.1000000000000000056 0.1000000000000000056 4.088197310511359817
0 0 0 1 0 27 27 27 0 0.2000000000000000111 0.2000000000000000111 0.2000000000000000111 4.074134014280404337
0 0 0 1 0 28 28 28 0 0.3000000000000000444 0.3000000000000000444 0.3000000000000000444 4.023414488666272604
0 0 0 1 0 29 29 29 0 0.4000000000000000222 0.4000000000000000222 0.4000000000000000222 3.911829562659972837
0 0 0 1 0 30 30 30 0 0.5 0.5 0.5 3.733119865799045201
0 0 0 1 0 31 31 31 0 0.6000000000000000888 0.6000000000000000888 0.6000000000000000888 3.504549752123117923
0 0 0 1 0 32 32 32 0 0.7000000000000000666 0.7000000000000000666 0.7000000000000000666 3.258003474425911872
0 0 0 1 0 33 33 33 0 0.8000000000000000444 0.8000000000000000444 0.8000000000000000444 3.018802993908825005
0 0 0 1 0 34 34 34 0 0.9000000000000000222 0.9000000000000000222 0.9000000000000000222 2.801916720560137186
0 0 0 1 0 35 35 35 0 1 1 1 2.612566376252883238
0 0 0 1 0 36 36 36 0 1.100000000000000089 1.100000000000000089 1.100000000000000089 2.450278418241025324
0 0 0 1 0 37 37 37 0 1.200000000000000178 1.200000000000000178 1.200000000000000178 2.312113481397211956
0 0 0 1 0 38 38 38 0 1.300000000000000044 1.300000000000000044 1.300000000000000044 2.194461363794465658
0 0 0 1 0 39 39 39 0 1.400000000000000133 1.400000000000000133 1.400000000000000133 2.093941178367019873
0 0 0 1 0 40 40 40 0 1.5 1.5 1.5 2.007514102003796541
0 0 0 1 0 41 41 41 0 1.600000000000000089 1.600000000000000089 1.600000000000000089 1.932739027716182667
0 0 0 1 0 42 42 42 0 1.700000000000000178 1.700000000000000178 1.700000000000000178 1.86759811935364417
0 0 0 1 0 43 43 43 0 1.800000000000000044 1.800000000000000044 1.800000000000000044 1.810465631241479523
0 0 0 1 0 44 44 44 0 1.900000000000000133 1.900000000000000133 1.900000000000000133 1.760072001535691433
0 0 0 1 0 45 45 45 0 2 2 2 1.760072001535691433
0 0 0 1 0 46 46 46 0 2.100000000000000089 2.100000000000000089 2.100000000000000089 1.760072001535691433
0 0 0 1 0 47 47 47 0 2.200000000000000178 2.200000000000000178 2.200000000000000178 1.760072001535691433
0 0 0 1 0 48 48 48 0 2.300000000000000266 2.300000000000000266 2.300000000000000266 1.760072001535691433
0 0 0 1 0 49 49 49 0 2.400000000000000355 2.400000000000000355 2.400000000000000355 1.760072001535691433
# 1D ASCII output created by CarpetIOASCII
#
0 0 0 0 0 0 25 25 0 -2.5 0 0 3.550735477038978516
0 0 0 0 0 1 25 25 0 -2.400000000000000355 0 0 3.550735477038978516
0 0 0 0 0 2 25 25 0 -2.300000000000000266 0 0 3.550735477038978516
0 0 0 0 0 3 25 25 0 -2.200000000000000178 0 0 3.550735477038978516
0 0 0 0 0 4 25 25 0 -2.100000000000000089 0 0 3.550735477038978516
0 0 0 0 0 5 25 25 0 -2 0 0 3.550735477038978516
0 0 0 0 0 6 25 25 0 -1.900000000000000133 0 0 3.997090812492702927
0 0 0 0 0 7 25 25 0 -1.800000000000000044 0 0 4.635782756373686198
0 0 0 0 0 8 25 25 0 -1.700000000000000178 0 0 5.617616246842297656
0 0 0 0 0 9 25 25 0 -1.600000000000000089 0 0 7.293667329534550881
0 0 0 0 0 10 25 25 0 -1.5 0 0 10.66602557534580242
0 0 0 0 0 11 25 25 0 -1.400000000000000133 0 0 19.75251659302954721
0 0 0 0 0 12 25 25 0 -1.300000000000000044 0 0 66.79878041735194927
0 0 0 0 0 13 25 25 0 -1.200000000000000178 0 0 4890.860000010032309
0 0 0 0 0 14 25 25 0 -1.100000000000000089 0 0 389.8575185164259551
0 0 0 0 0 15 25 25 0 -1 0 0 38.49610554549347796
0 0 0 0 0 16 25 25 0 -0.9000000000000000222 0 0 15.82972817175791214
0 0 0 0 0 17 25 25 0 -0.8000000000000000444 0 0 9.815085279645035854
0 0 0 0 0 18 25 25 0 -0.7000000000000000666 0 0 7.298450324227836461
0 0 0 0 0 19 25 25 0 -0.6000000000000000888 0 0 5.986825709163613674
0 0 0 0 0 20 25 25 0 -0.5 0 0 5.215880416586135659
0 0 0 0 0 21 25 25 0 -0.4000000000000000222 0 0 4.733308560145030874
0 0 0 0 0 22 25 25 0 -0.3000000000000000444 0 0 4.423436720811250389
0 0 0 0 0 23 25 25 0 -0.2000000000000000111 0 0 4.230187037346865964
0 0 0 0 0 24 25 25 0 -0.1000000000000000056 0 0 4.123758674127764756
0 0 0 0 0 25 25 25 0 0 0 0 4.089612235476418611
0 0 0 0 0 26 25 25 0 0.1000000000000000056 0 0 4.123758674127481427
0 0 0 0 0 27 25 25 0 0.2000000000000000111 0 0 4.230187037346255785
0 0 0 0 0 28 25 25 0 0.3000000000000000444 0 0 4.423436720810207667
0 0 0 0 0 29 25 25 0 0.4000000000000000222 0 0 4.73330856014341439
0 0 0 0 0 30 25 25 0 0.5 0 0 5.215880416583839718
0 0 0 0 0 31 25 25 0 0.6000000000000000888 0 0 5.986825709160462416
0 0 0 0 0 32 25 25 0 0.7000000000000000666 0 0 7.298450324223671792
0 0 0 0 0 33 25 25 0 0.8000000000000000444 0 0 9.815085279639431448
0 0 0 0 0 34 25 25 0 0.9000000000000000222 0 0 15.82972817174962898
0 0 0 0 0 35 25 25 0 1 0 0 38.49610554547456331
0 0 0 0 0 36 25 25 0 1.100000000000000089 0 0 389.8575185162825392
0 0 0 0 0 37 25 25 0 1.200000000000000178 0 0 4890.860000008660791
0 0 0 0 0 38 25 25 0 1.300000000000000044 0 0 66.79878041731198834
0 0 0 0 0 39 25 25 0 1.400000000000000133 0 0 19.75251659301558504
0 0 0 0 0 40 25 25 0 1.5 0 0 10.66602557533780171
0 0 0 0 0 41 25 25 0 1.600000000000000089 0 0 7.293667329529005094
0 0 0 0 0 42 25 25 0 1.700000000000000178 0 0 5.617616246838124106
0 0 0 0 0 43 25 25 0 1.800000000000000044 0 0 4.63578275637034487
0 0 0 0 0 44 25 25 0 1.900000000000000133 0 0 3.997090812489918488
0 0 0 0 0 45 25 25 0 2 0 0 3.997090812489918488
0 0 0 0 0 46 25 25 0 2.100000000000000089 0 0 3.997090812489918488
0 0 0 0 0 47 25 25 0 2.200000000000000178 0 0 3.997090812489918488
0 0 0 0 0 48 25 25 0 2.300000000000000266 0 0 3.997090812489918488
0 0 0 0 0 49 25 25 0 2.400000000000000355 0 0 3.997090812489918488
0 0 0 1 0 0 25 25 0 -2.5 0 0 3.550735477038978516
0 0 0 1 0 1 25 25 0 -2.400000000000000355 0 0 3.550735477038978516
0 0 0 1 0 2 25 25 0 -2.300000000000000266 0 0 3.550735477038978516
0 0 0 1 0 3 25 25 0 -2.200000000000000178 0 0 3.550735477038978516
0 0 0 1 0 4 25 25 0 -2.100000000000000089 0 0 3.550735477038978516
0 0 0 1 0 5 25 25 0 -2 0 0 3.550735477038978516
0 0 0 1 0 6 25 25 0 -1.900000000000000133 0 0 3.997090812492702927
0 0 0 1 0 7 25 25 0 -1.800000000000000044 0 0 4.635782756373686198
0 0 0 1 0 8 25 25 0 -1.700000000000000178 0 0 5.617616246842297656
0 0 0 1 0 9 25 25 0 -1.600000000000000089 0 0 7.293667329534550881
0 0 0 1 0 10 25 25 0 -1.5 0 0 10.66602557534580242
0 0 0 1 0 11 25 25 0 -1.400000000000000133 0 0 19.75251659302954721
0 0 0 1 0 12 25 25 0 -1.300000000000000044 0 0 66.79878041735194927
0 0 0 1 0 13 25 25 0 -1.200000000000000178 0 0 4890.860000010032309
0 0 0 1 0 14 25 25 0 -1.100000000000000089 0 0 389.8575185164259551
0 0 0 1 0 15 25 25 0 -1 0 0 38.49610554549347796
0 0 0 1 0 16 25 25 0 -0.9000000000000000222 0 0 15.82972817175791214
0 0 0 1 0 17 25 25 0 -0.8000000000000000444 0 0 9.815085279645035854
0 0 0 1 0 18 25 25 0 -0.7000000000000000666 0 0 7.298450324227836461
0 0 0 1 0 19 25 25 0 -0.6000000000000000888 0 0 5.986825709163613674
0 0 0 1 0 20 25 25 0 -0.5 0 0 5.215880416586135659
0 0 0 1 0 21 25 25 0 -0.4000000000000000222 0 0 4.733308560145030874
0 0 0 1 0 22 25 25 0 -0.3000000000000000444 0 0 4.423436720811250389
0 0 0 1 0 23 25 25 0 -0.2000000000000000111 0 0 4.230187037346865964
0 0 0 1 0 24 25 25 0 -0.1000000000000000056 0 0 4.123758674127764756
0 0 0 1 0 25 25 25 0 0 0 0 4.089612235476418611
0 0 0 1 0 26 25 25 0 0.1000000000000000056 0 0 4.123758674127481427
0 0 0 1 0 27 25 25 0 0.2000000000000000111 0 0 4.230187037346255785
0 0 0 1 0 28 25 25 0 0.3000000000000000444 0 0 4.423436720810207667
0 0 0 1 0 29 25 25 0 0.4000000000000000222 0 0 4.73330856014341439
0 0 0 1 0 30 25 25 0 0.5 0 0 5.215880416583839718
0 0 0 1 0 31 25 25 0 0.6000000000000000888 0 0 5.986825709160462416
0 0 0 1 0 32 25 25 0 0.7000000000000000666 0 0 7.298450324223671792
0 0 0 1 0 33 25 25 0 0.8000000000000000444 0 0 9.815085279639431448
0 0 0 1 0 34 25 25 0 0.9000000000000000222 0 0 15.82972817174962898
0 0 0 1 0 35 25 25 0 1 0 0 38.49610554547456331
0 0 0 1 0 36 25 25 0 1.100000000000000089 0 0 389.8575185162825392
0 0 0 1 0 37 25 25 0 1.200000000000000178 0 0 4890.860000008660791
0 0 0 1 0 38 25 25 0 1.300000000000000044 0 0 66.79878041731198834
0 0 0 1 0 39 25 25 0 1.400000000000000133 0 0 19.75251659301558504
0 0 0 1 0 40 25 25 0 1.5 0 0 10.66602557533780171
0 0 0 1 0 41 25 25 0 1.600000000000000089 0 0 7.293667329529005094
0 0 0 1 0 42 25 25 0 1.700000000000000178 0 0 5.617616246838124106
0 0 0 1 0 43 25 25 0 1.800000000000000044 0 0 4.63578275637034487
0 0 0 1 0 44 25 25 0 1.900000000000000133 0 0 3.997090812489918488
0 0 0 1 0 45 25 25 0 2 0 0 3.997090812489918488
0 0 0 1 0 46 25 25 0 2.100000000000000089 0 0 3.997090812489918488
0 0 0 1 0 47 25 25 0 2.200000000000000178 0 0 3.997090812489918488
0 0 0 1 0 48 25 25 0 2.300000000000000266 0 0 3.997090812489918488
0 0 0 1 0 49 25 25 0 2.400000000000000355 0 0 3.997090812489918488
# 1D ASCII output created by CarpetIOASCII
#
0 0 0 0 0 25 0 25 0 0 -2.5 0 2.191984374648477285
0 0 0 0 0 25 1 25 0 0 -2.400000000000000355 0 2.191984374648477285
0 0 0 0 0 25 2 25 0 0 -2.300000000000000266 0 2.191984374648477285
0 0 0 0 0 25 3 25 0 0 -2.200000000000000178 0 2.191984374648477285
0 0 0 0 0 25 4 25 0 0 -2.100000000000000089 0 2.191984374648477285
0 0 0 0 0 25 5 25 0 0 -2 0 2.191984374648477285
0 0 0 0 0 25 6 25 0 0 -1.900000000000000133 0 2.251788786861731229
0 0 0 0 0 25 7 25 0 0 -1.800000000000000044 0 2.316625293368441696
0 0 0 0 0 25 8 25 0 0 -1.700000000000000178 0 2.386965493001598215
0 0 0 0 0 25 9 25 0 0 -1.600000000000000089 0 2.463295049556552652
0 0 0 0 0 25 10 25 0 0 -1.5 0 2.546679590808772708
0 0 0 0 0 25 11 25 0 0 -1.400000000000000133 0 2.636548218737633231
0 0 0 0 0 25 12 25 0 0 -1.300000000000000044 0 2.733760575928178671
0 0 0 0 0 25 13 25 0 0 -1.200000000000000178 0 2.838546149458483381
0 0 0 0 0 25 14 25 0 0 -1.100000000000000089 0 2.951399674637283255
0 0 0 0 0 25 15 25 0 0 -1 0 3.071326264927372041
0 0 0 0 0 25 16 25 0 0 -0.9000000000000000222 0 3.197805832973394047
0 0 0 0 0 25 17 25 0 0 -0.8000000000000000444 0 3.329253527649771893
0 0 0 0 0 25 18 25 0 0 -0.7000000000000000666 0 3.463799262443227889
0 0 0 0 0 25 19 25 0 0 -0.6000000000000000888 0 3.5976481605275481
0 0 0 0 0 25 20 25 0 0 -0.5 0 3.726088337447190035
0 0 0 0 0 25 21 25 0 0 -0.4000000000000000222 0 3.844328628652963431
0 0 0 0 0 25 22 25 0 0 -0.3000000000000000444 0 3.94525813888290422
0 0 0 0 0 25 23 25 0 0 -0.2000000000000000111 0 4.023579594390471748
0 0 0 0 0 25 24 25 0 0 -0.1000000000000000056 0 4.07280846918009054
0 0 0 0 0 25 25 25 0 0 0 0 4.089612235476418611
0 0 0 0 0 25 26 25 0 0 0.1000000000000000056 0 4.07280846918009054
0 0 0 0 0 25 27 25 0 0 0.2000000000000000111 0 4.023579594390471748
0 0 0 0 0 25 28 25 0 0 0.3000000000000000444 0 3.94525813888290422
0 0 0 0 0 25 29 25 0 0 0.4000000000000000222 0 3.8443286286657532
0 0 0 0 0 25 30 25 0 0 0.5 0 3.726088337447190035
0 0 0 0 0 25 31 25 0 0 0.6000000000000000888 0 3.597648160527543215
0 0 0 0 0 25 32 25 0 0 0.7000000000000000666 0 3.463799262475773411
0 0 0 0 0 25 33 25 0 0 0.8000000000000000444 0 3.329253527649771893
0 0 0 0 0 25 34 25 0 0 0.9000000000000000222 0 3.197805832973389606
0 0 0 0 0 25 35 25 0 0 1 0 3.071326264927372041
0 0 0 0 0 25 36 25 0 0 1.100000000000000089 0 2.951399674637283255
0 0 0 0 0 25 37 25 0 0 1.200000000000000178 0 2.838546149458483381
0 0 0 0 0 25 38 25 0 0 1.300000000000000044 0 2.733760575928180447
0 0 0 0 0 25 39 25 0 0 1.400000000000000133 0 2.636548218754763973
0 0 0 0 0 25 40 25 0 0 1.5 0 2.546679590808772708
0 0 0 0 0 25 41 25 0 0 1.600000000000000089 0 2.463295049556552652
0 0 0 0 0 25 42 25 0 0 1.700000000000000178 0 2.386965493001598215
0 0 0 0 0 25 43 25 0 0 1.800000000000000044 0 2.316625293368441696
0 0 0 0 0 25 44 25 0 0 1.900000000000000133 0 2.251788786861731229
0 0 0 0 0 25 45 25 0 0 2 0 2.251788786861731229
0 0 0 0 0 25 46 25 0 0 2.100000000000000089 0 2.251788786861731229
0 0 0 0 0 25 47 25 0 0 2.200000000000000178 0 2.251788786861731229
0 0 0 0 0 25 48 25 0 0 2.300000000000000266 0 2.251788786861731229
0 0 0 0 0 25 49 25 0 0 2.400000000000000355 0 2.251788786861731229
0 0 0 1 0 25 0 25 0 0 -2.5 0 2.191984374648477285
0 0 0 1 0 25 1 25 0 0 -2.400000000000000355 0 2.191984374648477285
0 0 0 1 0 25 2 25 0 0 -2.300000000000000266 0 2.191984374648477285
0 0 0 1 0 25 3 25 0 0 -2.200000000000000178 0 2.191984374648477285
0 0 0 1 0 25 4 25 0 0 -2.100000000000000089 0 2.191984374648477285
0 0 0 1 0 25 5 25 0 0 -2 0 2.191984374648477285
0 0 0 1 0 25 6 25 0 0 -1.900000000000000133 0 2.251788786861731229
0 0 0 1 0 25 7 25 0 0 -1.800000000000000044 0 2.316625293368441696
0 0 0 1 0 25 8 25 0 0 -1.700000000000000178 0 2.386965493001598215
0 0 0 1 0 25 9 25 0 0 -1.600000000000000089 0 2.463295049556552652
0 0 0 1 0 25 10 25 0 0 -1.5 0 2.546679590808772708
0 0 0 1 0 25 11 25 0 0 -1.400000000000000133 0 2.636548218737633231
0 0 0 1 0 25 12 25 0 0 -1.300000000000000044 0 2.733760575928178671
0 0 0 1 0 25 13 25 0 0 -1.200000000000000178 0 2.838546149458483381
0 0 0 1 0 25 14 25 0 0 -1.100000000000000089 0 2.951399674637283255
0 0 0 1 0 25 15 25 0 0 -1 0 3.071326264927372041
0 0 0 1 0 25 16 25 0 0 -0.9000000000000000222 0 3.197805832973394047
0 0 0 1 0 25 17 25 0 0 -0.8000000000000000444 0 3.329253527649771893
0 0 0 1 0 25 18 25 0 0 -0.7000000000000000666 0 3.463799262443227889
0 0 0 1 0 25 19 25 0 0 -0.6000000000000000888 0 3.5976481605275481
0 0 0 1 0 25 20 25 0 0 -0.5 0 3.726088337447190035
0 0 0 1 0 25 21 25 0 0 -0.4000000000000000222 0 3.844328628652963431
0 0 0 1 0 25 22 25 0 0 -0.3000000000000000444 0 3.94525813888290422
0 0 0 1 0 25 23 25 0 0 -0.2000000000000000111 0 4.023579594390471748
0 0 0 1 0 25 24 25 0 0 -0.1000000000000000056 0 4.07280846918009054
0 0 0 1 0 25 25 25 0 0 0 0 4.089612235476418611
0 0 0 1 0 25 26 25 0 0 0.1000000000000000056 0 4.07280846918009054
0 0 0 1 0 25 27 25 0 0 0.2000000000000000111 0 4.023579594390471748
0 0 0 1 0 25 28 25 0 0 0.3000000000000000444 0 3.94525813888290422
0 0 0 1 0 25 29 25 0 0 0.4000000000000000222 0 3.8443286286657532
0 0 0 1 0 25 30 25 0 0 0.5 0 3.726088337447190035
0 0 0 1 0 25 31 25 0 0 0.6000000000000000888 0 3.597648160527543215
0 0 0 1 0 25 32 25 0 0 0.7000000000000000666 0 3.463799262475773411
0 0 0 1 0 25 33 25 0 0 0.8000000000000000444 0 3.329253527649771893
0 0 0 1 0 25 34 25 0 0 0.9000000000000000222 0 3.197805832973389606
0 0 0 1 0 25 35 25 0 0 1 0 3.071326264927372041
0 0 0 1 0 25 36 25 0 0 1.100000000000000089 0 2.951399674637283255
0 0 0 1 0 25 37 25 0 0 1.200000000000000178 0 2.838546149458483381
0 0 0 1 0 25 38 25 0 0 1.300000000000000044 0 2.733760575928180447
0 0 0 1 0 25 39 25 0 0 1.400000000000000133 0 2.636548218754763973
0 0 0 1 0 25 40 25 0 0 1.5 0 2.546679590808772708
0 0 0 1 0 25 41 25 0 0 1.600000000000000089 0 2.463295049556552652
0 0 0 1 0 25 42 25 0 0 1.700000000000000178 0 2.386965493001598215
0 0 0 1 0 25 43 25 0 0 1.800000000000000044 0 2.316625293368441696
0 0 0 1 0 25 44 25 0 0 1.900000000000000133 0 2.251788786861731229
0 0 0 1 0 25 45 25 0 0 2 0 2.251788786861731229
0 0 0 1 0 25 46 25 0 0 2.100000000000000089 0 2.251788786861731229
0 0 0 1 0 25 47 25 0 0 2.200000000000000178 0 2.251788786861731229
0 0 0 1 0 25 48 25 0 0 2.300000000000000266 0 2.251788786861731229
0 0 0 1 0 25 49 25 0 0 2.400000000000000355 0 2.251788786861731229
# 1D ASCII output created by CarpetIOASCII
#
0 0 0 0 0 25 25 0 0 0 0 -2.5 2.184137784702686158
0 0 0 0 0 25 25 1 0 0 0 -2.400000000000000355 2.184137784702686158
0 0 0 0 0 25 25 2 0 0 0 -2.300000000000000266 2.184137784702686158
0 0 0 0 0 25 25 3 0 0 0 -2.200000000000000178 2.184137784702686158
0 0 0 0 0 25 25 4 0 0 0 -2.100000000000000089 2.184137784702686158
0 0 0 0 0 25 25 5 0 0 0 -2 2.184137784702686158
0 0 0 0 0 25 25 6 0 0 0 -1.900000000000000133 2.243498586278763973
0 0 0 0 0 25 25 7 0 0 0 -1.800000000000000044 2.307891764289854653
0 0 0 0 0 25 25 8 0 0 0 -1.700000000000000178 2.377800493040261198
0 0 0 0 0 25 25 9 0 0 0 -1.600000000000000089 2.453727210942706183
0 0 0 0 0 25 25 10 0 0 0 -1.5 2.536531485705132205
0 0 0 0 0 25 25 11 0 0 0 -1.400000000000000133 2.626050897072094603
0 0 0 0 0 25 25 12 0 0 0 -1.300000000000000044 2.723006252187264664
0 0 0 0 0 25 25 13 0 0 0 -1.200000000000000178 2.827678474925546137
0 0 0 0 0 25 25 14 0 0 0 -1.100000000000000089 2.940476758346839858
0 0 0 0 0 25 25 15 0 0 0 -1 3.060571466364226723
0 0 0 0 0 25 25 16 0 0 0 -0.9000000000000000222 3.187457978544051329
0 0 0 0 0 25 25 17 0 0 0 -0.8000000000000000444 3.319644688316428116
0 0 0 0 0 25 25 18 0 0 0 -0.7000000000000000666 3.455228878217830424
0 0 0 0 0 25 25 19 0 0 0 -0.6000000000000000888 3.590230248470878127
0 0 0 0 0 25 25 20 0 0 0 -0.5 3.720409744868240054
0 0 0 0 0 25 25 21 0 0 0 -0.4000000000000000222 3.840069844927436193
0 0 0 0 0 25 25 22 0 0 0 -0.3000000000000000444 3.942759245922209832
0 0 0 0 0 25 25 23 0 0 0 -0.2000000000000000111 4.022158871424036164
0 0 0 0 0 25 25 24 0 0 0 -0.1000000000000000056 4.072417428869360201
0 0 0 0 0 25 25 25 0 0 0 0 4.089612235476418611
0 0 0 0 0 25 25 26 0 0 0 0.1000000000000000056 4.072417428869360201
0 0 0 0 0 25 25 27 0 0 0 0.2000000000000000111 4.022158871424036164
0 0 0 0 0 25 25 28 0 0 0 0.3000000000000000444 3.942759245922209832
0 0 0 0 0 25 25 29 0 0 0 0.4000000000000000222 3.840069844962366918
0 0 0 1 0 25 25 20 0 0 0 -0.5 3.720409744868240054
0 0 0 1 0 25 25 21 0 0 0 -0.4000000000000000222 3.840069844927436193
0 0 0 1 0 25 25 22 0 0 0 -0.3000000000000000444 3.942759245922209832
0 0 0 1 0 25 25 23 0 0 0 -0.2000000000000000111 4.022158871424036164
0 0 0 1 0 25 25 24 0 0 0 -0.1000000000000000056 4.072417428869360201
0 0 0 1 0 25 25 25 0 0 0 0 4.089612235476418611
0 0 0 1 0 25 25 26 0 0 0 0.1000000000000000056 4.072417428869360201
0 0 0 1 0 25 25 27 0 0 0 0.2000000000000000111 4.022158871424036164
0 0 0 1 0 25 25 28 0 0 0 0.3000000000000000444 3.942759245922209832
0 0 0 1 0 25 25 29 0 0 0 0.4000000000000000222 3.840069844962366918
0 0 0 1 0 25 25 30 0 0 0 0.5 3.720409744868240054
0 0 0 1 0 25 25 31 0 0 0 0.6000000000000000888 3.590230248470873686
0 0 0 1 0 25 25 32 0 0 0 0.7000000000000000666 3.455228878247486257
0 0 0 1 0 25 25 33 0 0 0 0.8000000000000000444 3.319644688316428116
0 0 0 1 0 25 25 34 0 0 0 0.9000000000000000222 3.187457978544046888
0 0 0 1 0 25 25 35 0 0 0 1 3.060571466364226723
0 0 0 1 0 25 25 36 0 0 0 1.100000000000000089 2.940476758346839858
0 0 0 1 0 25 25 37 0 0 0 1.200000000000000178 2.827678474925546137
0 0 0 1 0 25 25 38 0 0 0 1.300000000000000044 2.723006252187264664
0 0 0 1 0 25 25 39 0 0 0 1.400000000000000133 2.62605089708116024
0 0 0 1 0 25 25 40 0 0 0 1.5 2.536531485705132205
0 0 0 1 0 25 25 41 0 0 0 1.600000000000000089 2.453727210942706183
0 0 0 1 0 25 25 42 0 0 0 1.700000000000000178 2.377800493040261198
0 0 0 1 0 25 25 43 0 0 0 1.800000000000000044 2.307891764289854653
0 0 0 1 0 25 25 44 0 0 0 1.900000000000000133 2.243498586278763973
0 0 0 1 0 25 25 45 0 0 0 2 2.243498586278763973
0 0 0 1 0 25 25 46 0 0 0 2.100000000000000089 2.243498586278763973
0 0 0 1 0 25 25 47 0 0 0 2.200000000000000178 2.243498586278763973
0 0 0 1 0 25 25 48 0 0 0 2.300000000000000266 2.243498586278763973
0 0 0 1 0 25 25 49 0 0 0 2.400000000000000355 2.243498586278763973
ActiveThorns = "CoordBase SymBase Boundary NanChecker CartGrid3d Time
MoL CarpetIOBasic CarpetIOScalar IOUtil Carpet
CarpetLib CarpetIOASCII ADMBase CarpetReduce
StaticConformal SpaceMask GenericFD CoordGauge
ADMCoupling LoopControl
TMuNuBase SphericalSurface ADMMacros
TwoPunctures"
#############################################################
# Evolution equations
#############################################################
# ADMBase::evolution_method = "ML_BSSN"
# ADMBase::lapse_evolution_method = "ML_BSSN"
# ADMBase::shift_evolution_method = "ML_BSSN"
# ADMBase::dtlapse_evolution_method = "ML_BSSN"
# ADMBase::dtshift_evolution_method = "ML_BSSN"
Boundary::radpower = 2
ADMBase::metric_type = "physical"
#############################################################
# Grid
#############################################################
CoordBase::domainsize = minmax
CoordBase::boundary_size_x_lower = 5
CoordBase::boundary_size_y_lower = 5
CoordBase::boundary_size_z_lower = 5
CoordBase::boundary_shiftout_x_lower = 1
CoordBase::boundary_shiftout_y_lower = 1
CoordBase::boundary_shiftout_z_lower = 1
CoordBase::boundary_size_x_upper = 5
CoordBase::boundary_size_y_upper = 5
CoordBase::boundary_size_z_upper = 5
CoordBase::boundary_shiftout_x_upper = 0
CoordBase::boundary_shiftout_y_upper = 0
CoordBase::boundary_shiftout_z_upper = 0
CartGrid3D::type = "coordbase"
CartGrid3D::domain = "full"
CartGrid3D::avoid_origin = "no"
CoordBase::xmin = -2
CoordBase::ymin = -2
CoordBase::zmin = -2
CoordBase::xmax = 2
CoordBase::ymax = 2
CoordBase::zmax = 2
CoordBase::dx = 0.1
CoordBase::dy = 0.1
CoordBase::dz = 0.1
#############################################################
# Carpet
#############################################################
Carpet::domain_from_coordbase = "yes"
Carpet::ghost_size = 5
Carpet::init_fill_timelevels = "yes"
Carpet::poison_new_timelevels = yes
Carpet::poison_value = 113
#############################################################
# Time integration
#############################################################
Cactus::cctk_itlast = 0
Cactus::terminate = "iteration"
#############################################################
# Initial data
#############################################################
ADMBase::initial_data = "twopunctures"
ADMBase::initial_lapse = "twopunctures-averaged"
ADMBase::initial_shift = "zero"
ADMBase::initial_dtlapse = "zero"
ADMBase::initial_dtshift = "zero"
TwoPunctures::par_b = 1.168642873
TwoPunctures::par_m_plus = 0.453
TwoPunctures::par_m_minus = 0.453
TwoPunctures::par_P_plus [1] = +0.3331917498
TwoPunctures::par_P_minus[1] = -0.3331917498
TwoPunctures::grid_setup_method = "Taylor expansion"
TwoPunctures::verbose = yes
# Low accuracy initial data for fast execution
TwoPunctures::npoints_A = 16
TwoPunctures::npoints_B = 16
TwoPunctures::npoints_phi = 8
#############################################################
# Output
#############################################################
IO::out_dir = $parfile
IO::out_fileinfo = "none"
CarpetIOBasic::outInfo_every = 1
CarpetIOBasic::outInfo_vars = "ADMBase::gxx"
IOASCII::out1D_every = 4
IOASCII::out_precision = 19
IOASCII::out1D_x = yes
IOASCII::out1D_y = yes
IOASCII::out1D_z = yes
IOASCII::out1D_d = yes
IOASCII::out1D_vars = "ADMBase::gxx"
CarpetIOASCII::out0d_vars = "ADMBase::gxx"
CarpetIOASCII::out0d_every = 1