mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Implement the element centered finite volume spatial discretization
This makes eWoms multi-discretization capable. Along the way, this fixes some bugs and does a medium sized reorganization of the source tree. This is a squashed patch of the following commits: -------- 1st commit message: add initial version of the element centered finite volume discretization currently, it is a misnomer as it is just a copy of the vertex centered discretization plus some renames... -------- 2nd commit message: rename [VE]cfvModel -> [VE]cfvDiscretization -------- 3rd commit message: ecfv: prelimary changes required to make it compile but not work yet... -------- 4th commit message: Rename *FvElementGeometry to *Stencil "Stencil" seems to be the standard expression for this concept... (also, it is not specific to finite volume methods and is shorter.) -------- 5th commit message: refactor the stencil class for the element centered finite volume discretization -------- 6th commit message: ECFV: some work on the stencil class -------- 7th commit message: ECFV: make the boundary handling code compile -------- 8th commit message: rename elemContext() to elementContext() -------- 9th commit message: ECFV: make the VTK output modules compile -------- 10th commit message: stencil: introduce the concept of primary DOFs also save an vector of all element pointers in the stencil. -------- 11th commit message: ECFV: try to fix assembly; add missing timeIdx arguments to the num*() methods -------- 12th commit message: ECFV: fix stupid mistake in the assembler -------- 13th commit message: ECFV: remove a few implicit DOF == vertex assumptions the black-oil example now runs without valgrind complaints until it encounters a negative oil mole fraction. -------- 14th commit message: VCFV: make everything compile again all vertex centered FV examples should now work again... -------- 15th commit message: rename [ev]cfvmodel.hh to [ev]cfvdiscretization.hh the classes have already been renamed. -------- 16th commit message: ECFV: make it work to the point where it can write out the initial solution. -------- 17th commit message: ECFV: make it work the local residual/jacobian needed some work in distinguishing primary and secondary DOFs and there was an minor issue with the serialization code. for some reason, it seems still not correct. (-> convergence is too slow.) -------- 18th commit message: VCFV: make it compile for the black oil model again -------- 19th commit message: VCFV: make it compile with the remaining models again -------- 20th commit message: flash model: make it work with ECFV although this breaks its compatibility with VCFV. (-> next commit) -------- 21st commit message: adapt the VCFV to make it compatible with the flash model again -------- 22nd commit message: make all models compile with VCFV again -------- 23rd commit message: VCFV: more cleanups of the stencil VcfvStencil now does not have any public attributes anymore. TODO: do not export attributes in the SubControlVolume and SubControlVolumeFace classes. -------- 24th commit message: VCFV: actually update the element pointer -------- 25th commit message: change the blackoil model back to ECFV -------- 26th commit message: immiscible model: make it compatible with the ECFV discretization -------- 27th commit message: PVS model: make it work with ECFV -------- 28th commit message: NCP model: make it work with ECFV -------- 29th commit message: rename Vcfv*VelocityModule to *VelocityModule -------- 30th commit message: richards model: make it work with ECFV -------- 31st commit message: unify the ECFV and the VCFV VTK output modules and other cleanups -------- 32nd commit message: unify the common code of the VCFV and the ECFV disctretizations -------- 33rd commit message: unify the element contexts between element and vertex centered finite volumes -------- 34th commit message: unify the local jacobian class of the finite volume discretizations -------- 35th commit message: replace [VE]vcf(LocalResidual|ElementContext|BoundaryContext|ConstraintsContext) by generic code -------- 36th commit message: replace the [EV]cfvLocalResidual by generic code -------- 37th commit message: unify the MultiPhaseProblem and Problem classes, introduce NullBorderListCreator -------- 38th commit message: remove the discretization specific boundary context -------- 39th commit message: unify the [EV]cfvDiscretization classes -------- 40th commit message: Unify [EV]cfvMultiPhaseFluxVariables -------- 41st commit message: Unify the [EC]cfvNewton* classes -------- 42nd commit message: Unify [EV]cfvVolumeVariables -------- 43rd commit message: unify [EV]cfvAssembler -------- 44th commit message: unified flux variables: fix stupid mistake when calculating pressure gradients -------- 45th commit message: unify what's to unify for the [EV]CFV properties -------- 46th commit message: make the method to calculate gradients and values at flux approximation points changeable Currently, this is used by the vertex centered finite volume method to be able to use P1-finite element gradients instead of two-point ones... -------- 47th commit message: make the restart code work correctly, use the correct DofMapper for VCFV -------- 48th commit message: actually use the gradient calculator in a model the immiscible model in this case -------- 49th commit message: move some files around to where they belong, use the new gradient calculation code in all models TODO: proper handling of boundary gradients -------- 50th commit message: fix the stokes model currently it only works with the vertex centered finite volume discretization, but the plan is to soon move it to a staggered grid scheme anyway... -------- 51st commit message: move all models back to using the vertex centered finite volume discretization by default -------- 52nd commit message: models: some variable renames and documentation fixes - scv -> dof - vert -> dof - vertex -> dof - replace 'VCFV' - fix some typos -------- 53rd commit message: don't expect UG anymore since it is quite non-free and hard to get. we now use ALUGrid instead! -------- 54th commit message: temporarily disable jacobian recycling -------- 55th commit message: fix writing/reading restart files using the generic code -------- 56th commit message: fix bug where fluxes were only counted once in the stencil this only affected the vertex centered finite volumes discretization... -------- 57th commit message: boundary gradients: use the center of the sub-control volume adjacent to a boundary segment -------- 58th commit message: make it compile on GCC -------- 59th commit message: get rid of most hacks for this, partial reassemble and jacobian recycling was brought back. For the this and the remaining stuff the main trick is the introduction of the GridCommHandleFactory concept which constructs communication handles suited for the respective spatial discretization... -------- 60th commit message: fix a few annoying bugs first, default the convergence criterion for the linear solver did not honor the initial residual which lead to linear solver breakdowns, then some debugging code was left in the discrete fracture model and then there was a bug in the TP gradient approximation class... this has the consequence that we need a new reference solution for the discrete fracture problem... -------- 61st commit message: iterative linear solver: remove the code for the non-default convergence criteria -------- 62nd commit message: provide the FE cache instead of the local FE this fixes a segfault in the stokes model caused by the fact that the local FE was not initialized at this point. -------- 63rd commit message: (Navier-)Stokes: fix bug due to the transition to unit normals now, all tests pass for this branch. The only things which need to be fixed are some annoying performance regressions compared to master and some bug in the splices feature of the property system... -------- 64th commit message: some fix for the local residual of the immiscible model -------- 65th commit message: Navier-Stokes: implement SCV center gradients There seems to be a bug in the previous implementation (the jacobian inverse transposed is evaluated using the local, not the global geometry), so the reference solution for the stokes2c test problem has also been updated... -------- 66th commit message: remove the ALUGrid specialization of the LensGridCreator and the YaspGrid one for the fingerproblem using different grid seems to sometimes cause a different vertex order, which in turn causes the respective test to fail if the reference solution was computed using the other grid... -------- 67th commit message: VCFV: use the correct BorderListCreator this makes MPI parallel computations work again. apart from performance regressions, this branch does not exhibit any known regressions compared to master anymore... -------- 68th commit message: make verything compile with the element centered finite volume discretization except the Navier-Stokes and the two-phase DFM models, of course... -------- 69th commit message: minor fixes - make the navier-stokes model slighly more generic by using the proper (in,ex)teriorIndex() methods on sub-control volumes - make the signature of the calculateValue() template method of the common two-point gradient approximator match the one of the vertex centered finite volume one -------- 70th commit message: fix fallout from the Big Rebase -------- 71st commit message: ECFV: some bugs in the boundary -------- 72nd commit message: make computeFlux() compute area-specific quantities -------- 73rd commit message: fix more bugs in the element centered FV discretization now eWoms should match Dumux pretty closely... -------- 74th commit message: coalesce the common code of the multi phase porous medium models into "MultiPhaseBaseModel" -------- 75th commit message: update reference solutions these were changed because of the screw-up with the area of boundary segments... -------- 76th commit message: rename "ImplicitBase" to "FvBase" because in eWoms, everything is implicit and these are currently the base classes for all finite volume discretizations. -------- 77th commit message: make the spatial discretization selectable using a splice This requires an opm-core with a the patches from https://github.com/OPM/opm-core/pull/446 merged... -------- 78th commit message: rename the properties used for splices to *Splice -------- 79th commit message: move the files in 'tests/models' to 'tests' since 'tests' was empty except for the 'models' subdirectory... -------- 80th commit message: improve and fix the tutorial -------- 81st commit message: remove the -fno-strict-aliasing flag from the provided option files seems like recent versions of Dune have been adapted... -------- 82nd commit message: also compile all CO2 injection simulations using the element centered finite volume discretization -------- 83rd commit message: PVS model: make it work properly with the element-centered finite volume discretiation because DOF != number of vertices
This commit is contained in:
parent
3f7d617237
commit
bf32eb0010
@ -110,6 +110,13 @@
|
||||
}
|
||||
{\end{itemize}}
|
||||
|
||||
\newcommand*\justifyNoHyphen{%
|
||||
\fontdimen2\font=0.4em% interword space
|
||||
\fontdimen3\font=0.2em% interword stretch
|
||||
\fontdimen4\font=0.1em% interword shrink
|
||||
\fontdimen7\font=0.1em% extra space
|
||||
\hyphenchar\font=`\-% allowing hyphenation
|
||||
}
|
||||
% a new counter
|
||||
% you can give a label to it and thus reference it
|
||||
% syntax: \numberThis{printedTextToBeLabeled}{label}
|
||||
|
@ -22,7 +22,7 @@ will be considered. The source code of these tutorials is shipped with
|
||||
the \eWoms source package and can be found in the \texttt{tutorial}
|
||||
directory.
|
||||
|
||||
\input{tutorial-coupled}
|
||||
\input{tutorial1}
|
||||
|
||||
%%% Local Variables:
|
||||
%%% mode: latex
|
||||
|
@ -1,5 +1,5 @@
|
||||
\section{Upfront considerations}
|
||||
\label{tutorial-coupled}
|
||||
\label{tutorial1}
|
||||
|
||||
The process of setting up a problem using \eWoms can be roughly
|
||||
divided into three parts:
|
||||
@ -12,7 +12,7 @@ divided into three parts:
|
||||
\end{enumerate}
|
||||
|
||||
The physical set-up of the flow problem being solved in this tutorial
|
||||
is illustrated in Figure \ref{tutorial-coupled:problemfigure}: It
|
||||
is illustrated in Figure \ref{tutorial1:problemfigure}: It
|
||||
consists of a rectangular domain with no-flow boundary conditions on
|
||||
the top and on the bottom of the domain, which is initially fully
|
||||
saturated by a light oil. Water infiltrates from the left side and
|
||||
@ -32,7 +32,7 @@ replaces the oil. The effect of gravity is neglected.
|
||||
\psfrag{q_n = -3 x 10^-4 [kg/m^2s]}{$q_n = 3 \times 10^{-2}$ $\left[\frac{\textnormal{kg}}{\textnormal{m}^2 \textnormal{s}}\right]$}
|
||||
\centering
|
||||
\includegraphics[width=0.9\linewidth,keepaspectratio]{EPS/tutorial-problemconfiguration}
|
||||
\caption{Geometry of the tutorial problem with initial and boundary conditions.}\label{tutorial-coupled:problemfigure}
|
||||
\caption{Geometry of the tutorial problem with initial and boundary conditions.}\label{tutorial1:problemfigure}
|
||||
\end{figure}
|
||||
|
||||
The solved equations are the mass balances of water and oil:
|
||||
@ -57,13 +57,13 @@ The solved equations are the mass balances of water and oil:
|
||||
|
||||
\subsection{The main source file}
|
||||
|
||||
Listing \ref{tutorial-coupled:mainfile} shows the main file
|
||||
Listing \ref{tutorial1:mainfile} shows the main file
|
||||
\texttt{tutorial/tutorial1.cc} for the tutorial problem using
|
||||
a fully-implicit model that assumes immiscibility. This file has to be
|
||||
compiled and executed in order to solve the problem described above.
|
||||
|
||||
\begin{lst}[File tutorial/tutorial1.cc]\label{tutorial-coupled:mainfile} \mbox{}
|
||||
\lstinputlisting[style=eWomsCode, numbersep=5pt, firstline=25, firstnumber=25]{../../tutorial/tutorial1.cc}
|
||||
\begin{lst}[File tutorial/tutorial1.cc]\label{tutorial1:mainfile} \mbox{}
|
||||
\lstinputlisting[style=eWomsCode, numbersep=5pt, firstline=27, firstnumber=27]{../../tutorial/tutorial1.cc}
|
||||
\end{lst}
|
||||
|
||||
In \eWoms, this file is usually quite short, as most of the work for
|
||||
@ -71,52 +71,51 @@ setting up the simulation is done by the generic startup routine
|
||||
\texttt{Ewoms::start()}. The tasks left for the main source file are:
|
||||
\begin{itemize}
|
||||
\item Inclusion of the necessary header files from line
|
||||
\ref{tutorial-coupled:include-begin} to line
|
||||
\ref{tutorial-coupled:include-end}.
|
||||
\ref{tutorial1:include-begin} to line
|
||||
\ref{tutorial1:include-end}.
|
||||
\item Specifying the type tag of the problem which is going to be
|
||||
simulated at line \ref{tutorial-coupled:set-type-tag}.
|
||||
simulated at line \ref{tutorial1:set-type-tag}.
|
||||
\item Starting the simulation using default \eWoms startup routine
|
||||
\texttt{Ewoms::start()} on line \ref{tutorial-coupled:call-start}.
|
||||
\texttt{Ewoms::start()} on line \ref{tutorial1:call-start}.
|
||||
\end{itemize}
|
||||
|
||||
The default \eWoms startup routine deals with parsing the command line
|
||||
arguments, reading the parameter file, properly setting up the \Dune
|
||||
infrastructure, creating the grid, and starting the actual simulation.
|
||||
Required parameters for the start of the simulation, such as the
|
||||
initial time-step size, the final simulation time or details of the
|
||||
grid, can be either specified by command line arguments of the form
|
||||
The default \eWoms startup routine parses the command line arguments,
|
||||
optionally reads a file which may specify further parameters, creates
|
||||
the grid which represents the spatial domain, and then starts the
|
||||
actual simulation. Parameters for the simulation, can be either
|
||||
specified using command line arguments of the form
|
||||
(\texttt{--parameter-name=value}), or in the file specified by the
|
||||
\texttt{--parameter-file="file\_name"} argument. A list of all
|
||||
parameters that can be specified at run-time can be obtained by passing
|
||||
the \texttt{--help} argument to the exectutable of the simulation.
|
||||
\texttt{--parameter-file="file\_name"} argument. The list of all
|
||||
parameters used by a simulation can be obtained by passing
|
||||
\texttt{--help} to the executable on the command line.
|
||||
|
||||
\subsection{The problem file}
|
||||
|
||||
When solving a problem using \eWoms, the most important file is the
|
||||
so-called \textit{problem file} as shown in
|
||||
listing~\ref{tutorial-coupled:problemfile}.
|
||||
|
||||
\begin{lst}[File tutorial/tutorial1problem1.hh]\label{tutorial-coupled:problemfile} \mbox{}
|
||||
\lstinputlisting[style=eWomsCode, numbersep=5pt, firstline=25, firstnumber=25]{../../tutorial/tutorial1problem.hh}
|
||||
\begin{lst}[File tutorial/tutorial1problem.hh] \label{tutorial1:problemfile}\mbox{}
|
||||
\lstinputlisting[style=eWomsCode, numbersep=5pt, firstline=28, firstnumber=28]{../../tutorial/tutorial1problem.hh}
|
||||
\end{lst}
|
||||
|
||||
This file specifies everything that is related to the physical
|
||||
problem. It first sets up the properties relevant for this problem
|
||||
using the \eWoms property system (for more information see chapter
|
||||
\ref{sec:propertysystem})
|
||||
For using \eWoms, the central file is the \textit{problem file} as
|
||||
shown in listing~\ref{tutorial1:problemfile}. This file is responsible
|
||||
for specifying the physical setup of the problem which is to be
|
||||
simulated. In this context, all problems first need to set up the
|
||||
relevant properties for the \eWoms property system:
|
||||
\begin{itemize}
|
||||
\item First, a new type tag is created for the problem in line
|
||||
\ref{tutorial-coupled:create-type-tag}. In this case, the new type
|
||||
tag inherits all properties from the \texttt{BoxImmiscibleTwoPhase}
|
||||
type tag, which means that for this problem the immiscible box model
|
||||
\item First, a new type tag is created for the problem on line
|
||||
\ref{tutorial1:create-type-tag}. In this case, the new type
|
||||
tag inherits all properties from the \texttt{ImmiscibleTwoPhaseModel}
|
||||
type tag, which means that for this problem the immiscible model
|
||||
for two fluid phases is chosen as discretization scheme.
|
||||
\item On line \ref{tutorial-coupled:set-problem}, the problem class is
|
||||
specified for the new type tag, while the kind of grid which is
|
||||
going to be used is defined in line \ref{tutorial-coupled:set-grid}
|
||||
-- in this case that is \texttt{Dune::YaspGrid}.
|
||||
\item Since \Dune does not provide a uniform mechanism to initialize
|
||||
and load grids, \eWoms features the concept of grid creators. In
|
||||
this case, the generic \texttt{CubeGridCreator} is used. This grid
|
||||
\item Next, the spatial discretization which ought to be used is
|
||||
selected on line~\ref{tutorial1:include-discretization}. In this
|
||||
case, the vertex-centered finite volume (VCFV) method is chosen.
|
||||
\item On line \ref{tutorial1:set-problem}, the problem class is
|
||||
specified for the new type tag, while the kind of grid that is to be
|
||||
used is defined in line \ref{tutorial1:set-grid} -- in this case
|
||||
it is \texttt{Dune::YaspGrid}.
|
||||
\item Since \Dune does not provide a uniform mechanism to create or
|
||||
load grids, \eWoms features the concept of grid creators. In this
|
||||
case, the generic \texttt{CubeGridCreator} is used. This grid
|
||||
creator constructs a structured rectangular grid with a specified
|
||||
size and resolution. For this grid creator, the physical domain of
|
||||
the grid is specified via the run-time parameters
|
||||
@ -124,62 +123,62 @@ using the \eWoms property system (for more information see chapter
|
||||
\texttt{CellsX} and \texttt{CellsY}. These parameters can be
|
||||
specified via the command-line or in a parameter file, but the
|
||||
problem file must define default values for them. Defining these
|
||||
defaults is done on lines
|
||||
\ref{tutorial-coupled:grid-default-params-begin} to
|
||||
\ref{tutorial-coupled:default-params-end}.
|
||||
defaults is done on lines \ref{tutorial1:grid-default-params-begin}
|
||||
to \ref{tutorial1:default-params-end}.
|
||||
\end{itemize}
|
||||
|
||||
Next, an appropriate fluid system -- which specifies the thermodynamic
|
||||
relations of the fluid phases -- has to be chosen. By default, the
|
||||
fully-implicit immiscible model for two fluid phases uses
|
||||
\texttt{Ewoms::FluidSystems::TwoPImmiscible}. This fluid system
|
||||
simplifies things considerably by assuming immiscibility of the
|
||||
phases, but it requires to explicitly specify the fluids used for the
|
||||
immiscible model for two fluid phases uses
|
||||
\texttt{\justifyNoHyphen{}Ewoms::Fluid\-Systems::TwoPImmiscible}. This
|
||||
fluid system simplifies things considerably by assuming immiscibility
|
||||
of the phases, but it requires to explicitly specify the fluids of the
|
||||
wetting and non-wetting phases. In this case, liquid water based on
|
||||
the relations from IAPWS'97~\cite{IAPWS1997} is chosen as the wetting
|
||||
phase on line \ref{tutorial-coupled:wettingPhase} and liquid oil is
|
||||
chosen as the non-wetting phase on line
|
||||
\ref{tutorial-coupled:nonwettingPhase}. The next property, which is
|
||||
set in line \ref{tutorial-coupled:gravity}, tells the model not to use
|
||||
gravity. This is then followed by the specifcation default values for
|
||||
parameters specifying the temporal and spatial domain from line
|
||||
\ref{tutorial-coupled:default-params-begin} to line
|
||||
\ref{tutorial-coupled:default-params-end}. The values of those can be
|
||||
simple relations is selected as the wetting phase on line
|
||||
\ref{tutorial1:wettingPhase} and a light liquid oil is chosen as the
|
||||
non-wetting phase on line \ref{tutorial1:nonwettingPhase}. The next
|
||||
property, which is set on line \ref{tutorial1:gravity}, tells the
|
||||
model not to use gravity. This is then followed by the specification
|
||||
default values for parameters specifying the temporal and spatial
|
||||
simulation domain from line \ref{tutorial1:default-params-begin} to
|
||||
line \ref{tutorial1:default-params-end}. The values of those can be
|
||||
overwritten at run-time if desired.
|
||||
|
||||
Following the property definitions comes the definition of the actual
|
||||
physical set-up to be simulated. This is done by means of the
|
||||
\textit{problem class}. The problem class specifies boundary and
|
||||
initial conditions, source terms or spatial quantities like
|
||||
temperature, porosity, intrinsic permeability and the parameters of
|
||||
the material law within the domain. Since there are quite a few
|
||||
methods of the problem called by the \eWoms models, and often there
|
||||
are sensible defaults for these methods, it is strongly recomended to
|
||||
derive the problem class from the class specified by the
|
||||
\texttt{BaseProblem} property as done on line
|
||||
\ref{tutorial-coupled:def-problem}\footnote{Technically, deriving the
|
||||
problem from the \texttt{BaseProblem} property is not required if it
|
||||
implements all necessary methods. Do not complain if things explode
|
||||
in this case, though.}.
|
||||
Following the property definitions, is the problem class which
|
||||
specifies the variable parameters of the physical set-up to be
|
||||
simulated. Such parameters are, for example, boundary and initial
|
||||
conditions, source terms and spatially dependent quantities like
|
||||
temperature, porosity, intrinsic permeability and the parameters
|
||||
required by the capillary pressure/relative permeability law within
|
||||
the domain. Since there are quite a few methods necessary to fully
|
||||
specify a problem, and it is often possible to specify meaningful
|
||||
defaults, it is strongly recomended to derive the problem from the
|
||||
class specified by the \texttt{BaseProblem} property as done on line
|
||||
\ref{tutorial1:def-problem}\footnote{Technically, deriving the problem
|
||||
from the \texttt{BaseProblem} is not required if it implements all
|
||||
necessary methods. Do not complain if things explode in this case,
|
||||
though.}.
|
||||
|
||||
For isothermal multi-phase porous media model, the problem class must
|
||||
always provide at least the following methods:
|
||||
For the isothermal multi-phase porous media model which assumes
|
||||
immiscibility, the problem class provided by the user must implement
|
||||
at least the following methods:
|
||||
\begin{itemize}
|
||||
\item \texttt{initial()} for specifying the initial condition within
|
||||
the domain,
|
||||
\item \texttt{source()} which specifies the source term for each conservation quantitym
|
||||
\item \texttt{boundary()} for specifying the conditions which apply on
|
||||
the domain boundary,
|
||||
\item \texttt{temperature()} specifying the temperature within the
|
||||
domain. Note, that if energy is conserved, this method is not
|
||||
necessary. Though in this case, energy fluxes must be specified by
|
||||
the \texttt{boundary()} and \texttt{source()} methods and an initial
|
||||
temperature needs to be defined by the \texttt{initial()} method.
|
||||
\item \texttt{intrinsicPermeability()} returns the intrinsic
|
||||
\item \texttt{source()} which defines the source term for each conservation quantity,
|
||||
\item \texttt{boundary()} for the conditions at the spatial domain's
|
||||
boundary,
|
||||
\item \texttt{temperature()} which provides the temperature within the
|
||||
spatial domain. Note, that if energy is conserved, this method is
|
||||
not necessary. Instead, energy fluxes must be specified by the
|
||||
\texttt{boundary()} and \texttt{source()} methods and an initial
|
||||
temperature needs to be defined by the \texttt{initial()} method in
|
||||
this case.
|
||||
\item \texttt{intrinsicPermeability()} for returning the intrinsic
|
||||
permeability matrix $\mathbf{K}$ in $[m^2]$ at a given location.
|
||||
\item \texttt{porosity()} returns the ratio of pore space to
|
||||
\item \texttt{porosity()} which specifies the ratio of pore space to
|
||||
total volume of the medium at a given location.
|
||||
\item \texttt{materialLawParams()} returns the function parameters for
|
||||
\item \texttt{materialLawParams()} which defines the parameters for
|
||||
the capillary pressure and relative permeability relations at a
|
||||
given location.
|
||||
\end{itemize}
|
||||
@ -187,21 +186,21 @@ always provide at least the following methods:
|
||||
All of these methods take a single template argument,
|
||||
\texttt{Context}, and the three function arguments \texttt{context},
|
||||
\texttt{spaceIdx} and \texttt{timeIdx}. Together, these form the
|
||||
\textit{execution context}. The execution context can be thought of as
|
||||
a collection of all available information when a given method is
|
||||
called. Execution contexts are thus a way to abstract the differences
|
||||
of the different discretization schemes. The following methods are
|
||||
so-called \textit{execution context}. The execution context can be
|
||||
thought of as a collection of all available information for a given
|
||||
method. Thus, execution contexts a way to abstract away the
|
||||
differences of discretization schemes. The following methods are
|
||||
provided by all \texttt{context} objects:
|
||||
\begin{itemize}
|
||||
\item \texttt{pos(spaceIdx, timeIdx)}: This method returns the
|
||||
relevant position of the execution context within the physical
|
||||
relevant position of the execution context within the spatial
|
||||
domain.
|
||||
\item \texttt{globalSpaceIndex(spaceIdx, timeIdx)}: Returns a global
|
||||
index for the spatial entity which is described by the execution
|
||||
context. This index can be used to store spatially dependent
|
||||
information in an array.
|
||||
\item \texttt{element()}: Returns the \Dune grid element for which the
|
||||
execution context is valid.
|
||||
index for the spatial degree of freedom which is associated to the
|
||||
execution context. This index can be used to store spatially
|
||||
dependent information in an array.
|
||||
\item \texttt{element()}: Returns the \Dune grid element to which the
|
||||
execution context applies.
|
||||
\item \texttt{gridView()}: Returns the \Dune grid view of which the
|
||||
element is part of.
|
||||
\item \texttt{problem()}: Returns the \eWoms object which describes
|
||||
@ -242,7 +241,7 @@ In addition to these methods, there might be some additional
|
||||
model-specific methods.
|
||||
|
||||
\subsection{Defining fluid properties}
|
||||
\label{tutorial-coupled:description-fluid-class}
|
||||
\label{tutorial1:description-fluid-class}
|
||||
|
||||
The \eWoms distribution includes representations of some common
|
||||
substances which can be used out of the box. The properties of pure
|
||||
@ -259,7 +258,7 @@ interactions are defined by {\em fluid systems}, which are located in
|
||||
chapter~\ref{sec:fluidframework}.
|
||||
|
||||
\subsection{Exercises}
|
||||
\label{tutorial-coupled:exercises}
|
||||
\label{tutorial1:exercises}
|
||||
|
||||
The following exercises will give you the opportunity to learn how you
|
||||
can change soil parameters, boundary conditions, run-time parameters
|
||||
@ -275,10 +274,13 @@ even not at all.
|
||||
\begin{enumerate}
|
||||
|
||||
\item \textbf{Running the Program} \\
|
||||
To get an impression what the results should look like, you can first run the original version of
|
||||
the fully-implicit tutorial problem by typing \texttt{./tutorial1}.
|
||||
Note, that the time-step size is automatically adapted during the simulation.
|
||||
For visualizing the results using the program \texttt{paraview}, please refer to section \ref{quick-start-guide}.
|
||||
To get an impression what the results should look like, you can
|
||||
first run the original version of the tutorial problem by entering
|
||||
the directory into which you installed \eWoms, followed typing
|
||||
\texttt{make tutorial1 \&\& ./bin/tutorial1}. Note, that the
|
||||
time-step size is automatically adapted during the simulation. For
|
||||
visualizing the results using the program \texttt{paraview}, please
|
||||
refer to section \ref{quick-start-guide}.
|
||||
|
||||
\item \textbf{Changing the Model Domain} \\
|
||||
Change the size of the model domain so that you get a rectangle with
|
||||
@ -286,8 +288,8 @@ For visualizing the results using the program \texttt{paraview}, please refer to
|
||||
\unit[500]{m}$ and with discretization lengths of $\Delta \text{x} =
|
||||
\unit[20]{m}$ and $\Delta \text{y} = \unit[20]{m}$. For this, you can
|
||||
either change the properties defined between lines
|
||||
\ref{tutorial-coupled:default-params-begin} and
|
||||
\ref{tutorial-coupled:default-params-end}, or you may pass them as
|
||||
\ref{tutorial1:default-params-begin} and
|
||||
\ref{tutorial1:default-params-end}, or you may pass them as
|
||||
command line parameters to the simulation when you run it.
|
||||
|
||||
If you chose to change the problem file, re-compile the simulation
|
||||
@ -310,24 +312,33 @@ For visualizing the results using the program \texttt{paraview}, please refer to
|
||||
simulation by typing \texttt{make tutorial1} and re-run it
|
||||
as explained above.
|
||||
|
||||
\item \textbf{Changing the Spatial Discretization} \\
|
||||
Change the spatial discretization used for this problem from the
|
||||
vertex-centered finite element method (VCFV) to the element-centered
|
||||
one (ECFV). For this, you need to change the file included on
|
||||
line~\ref{tutorial1:include-discretization} and the definition of
|
||||
the splice for the spatial discretization on
|
||||
line~\ref{tutorial1:set-spatial-discretization}.
|
||||
|
||||
\item \textbf{Changing the Shape of the Discrete Elements} \\
|
||||
In order to complete this exercise you need a \Dune grid manager
|
||||
that is capable of handling simplex grids. By default, \Dune does
|
||||
not include such a grid manager in its core modules, but the freely
|
||||
available \texttt{ALUGrid}~\cite{ALUGRID-HP} can be used. If you did
|
||||
not install such a grid manager, you may also skip this exercise.
|
||||
available \texttt{ALUGrid}~\cite{ALUGRID-HP} can be used. If you do
|
||||
not want to go through the trouble of installing this grid manager,
|
||||
please skip this exercise.
|
||||
|
||||
Change the grid creator used by the problem to
|
||||
\texttt{SimplexGridCreator<TypeTag>} and the type of the grid to
|
||||
\texttt{Dune::ALUSimplexGrid<2, 2>}. The grid creator is specified
|
||||
on line \ref{tutorial-coupled:set-gridcreator}, whil the type of the
|
||||
on line \ref{tutorial1:set-gridcreator}, whil the type of the
|
||||
\Dune grid manager is set on line
|
||||
\ref{tutorial-coupled:set-grid}. You also need to change the include
|
||||
\ref{tutorial1:set-grid}. You also need to change the include
|
||||
statement of the grid creator from \texttt{cubegridcreator.hh} to
|
||||
\texttt{simplexgridcreator.hh} on line
|
||||
\ref{tutorial-coupled:include-grid-creator} and the one for the grid
|
||||
\ref{tutorial1:include-grid-creator} and the one for the grid
|
||||
manager from \texttt{dune/grid/yaspgrid.hh} to
|
||||
\texttt{dune/grid/alugrid.hh} on line \ref{tutorial-coupled:include-grid-manager}.
|
||||
\texttt{dune/grid/alugrid.hh} on line \ref{tutorial1:include-grid-manager}.
|
||||
|
||||
The resulting grid can be examined by re-compiling and starting the
|
||||
simulation, loading the result into \texttt{paraview}, and selecting
|
||||
@ -371,14 +382,14 @@ chapter~\ref{sec:fluidframework}.
|
||||
fluid systems and the concepts related to it, see chapter
|
||||
\ref{sec:fluidframework}}. In order to include a fluid system,
|
||||
you first have to comment out lines
|
||||
\ref{tutorial-coupled:2p-system-start}
|
||||
to \ref{tutorial-coupled:2p-system-end} in the problem file.\\
|
||||
\ref{tutorial1:2p-system-start}
|
||||
to \ref{tutorial1:2p-system-end} in the problem file.\\
|
||||
Now include the file
|
||||
\texttt{ewoms/material/fluidsystems/h2oairfluidsystem.hh}, and
|
||||
instruct the model to use this fluid system by setting
|
||||
the \texttt{FluidSystem} property via:\\
|
||||
\begin{lstlisting}[style=eWomsCode]
|
||||
SET_TYPE_PROP(TutorialProblemCoupled,
|
||||
SET_TYPE_PROP(Tutorial1Problem,
|
||||
FluidSystem,
|
||||
Ewoms::FluidSystems::H2OAir<typename GET_PROP_TYPE(TypeTag, Scalar)>)
|
||||
\end{lstlisting}
|
||||
@ -405,7 +416,7 @@ complex fluid system.
|
||||
$p_e = 0.0\;\text{Pa}$ and maximal capillary pressure of
|
||||
$p_{c_{max}} = 2000.0\;\text{Pa}$. To do that, you have to change
|
||||
the material law property on line
|
||||
\ref{tutorial-coupled:eff2abs} as follows:
|
||||
\ref{tutorial1:eff2abs} as follows:
|
||||
\begin{itemize}
|
||||
\item First, switch to the linear material law. This can be achieved
|
||||
by replacing \texttt{RegularizedBrooksCorey} in the private section
|
||||
@ -426,7 +437,7 @@ complex fluid system.
|
||||
|
||||
\item \textbf{Heterogeneities} \\
|
||||
Set up a model domain with the soil properties given in Figure
|
||||
\ref{tutorial-coupled:exercise1_d}. Adjust the boundary conditions
|
||||
\ref{tutorial1:exercise1_d}. Adjust the boundary conditions
|
||||
so that water is flowing from the left to the right of the domain again.
|
||||
\begin{figure}[ht]
|
||||
\psfrag{K1 =}{$\mathbf{K} = 10^{-8}\;\text{m}^2$}
|
||||
@ -437,7 +448,7 @@ complex fluid system.
|
||||
\psfrag{300 m}{$300 \;\text{m}$}
|
||||
\centering
|
||||
\includegraphics[width=0.5\linewidth,keepaspectratio]{EPS/exercise1_c.eps}
|
||||
\caption{Exercise 1f: Set-up of a model domain with a heterogeneity. $\Delta x = 20 \;\text{m}$ $\Delta y = 20\;\text{m}$.}\label{tutorial-coupled:exercise1_d}
|
||||
\caption{Exercise 1f: Set-up of a model domain with a heterogeneity. $\Delta x = 20 \;\text{m}$ $\Delta y = 20\;\text{m}$.}\label{tutorial1:exercise1_d}
|
||||
\end{figure}
|
||||
You can use the fluids of exercise 1b).
|
||||
|
||||
@ -459,8 +470,8 @@ file needs to be included in the file \texttt{tutorial1.cc}.
|
||||
The new file should contain definitions of new classes with names that
|
||||
relate to the file name, such as
|
||||
\texttt{Ex2TutorialProblemCoupled}. Make sure that you also adjust the
|
||||
guardian macros in lines \ref{tutorial-coupled:guardian1} and
|
||||
\ref{tutorial-coupled:guardian1} in the header files (e.g. change
|
||||
guardian macros in lines \ref{tutorial1:guardian1} and
|
||||
\ref{tutorial1:guardian1} in the header files (e.g. change
|
||||
\mbox{\texttt{EWOMS\_TUTORIAL1PROBLEM\_HH}} to
|
||||
\mbox{\texttt{EWOMS\_EX2\_TUTORIAL1PROBLEM\_HH}}). Include the
|
||||
new problem file in \texttt{tutorial1.cc}. Besides adjusting
|
||||
@ -468,13 +479,13 @@ the guardian macros, the new problem file should define and use a new
|
||||
type tag for the problem as well as a new problem class
|
||||
e.g. \mbox{\texttt{Ex2TutorialProblemCoupled}}. The type tag for the
|
||||
problem should be adjusted, too. For this, modify line
|
||||
\ref{tutorial-coupled:set-type-tag} in the problem file and the adapt
|
||||
\ref{tutorial1:set-type-tag} in the problem file and the adapt
|
||||
the \texttt{main} function in the file \texttt{tutorial1.cc}.
|
||||
|
||||
After this, change the domain parameters so that they match the domain
|
||||
described by figure \ref{tutorial-coupled:ex2_Domain}. Adapt the
|
||||
described by figure \ref{tutorial1:ex2_Domain}. Adapt the
|
||||
problem class so that the boundary conditions are consistent with
|
||||
figure \ref{tutorial-coupled:ex2_BC}. Initially, the domain is fully
|
||||
figure \ref{tutorial1:ex2_BC}. Initially, the domain is fully
|
||||
saturated with water and the pressure is $p_w = 5\cdot
|
||||
10^5\;\text{Pa}$. Oil infiltrates from the left side. Create a grid
|
||||
with $20$ cells in $x$-direction and $10$ cells in $y$-direction. The
|
||||
@ -498,7 +509,7 @@ step size of $100\;\text{s}$.
|
||||
\psfrag{L3x}{$25\;\text{m}$}
|
||||
\centering
|
||||
\includegraphics[width=0.8\linewidth,keepaspectratio]{EPS/Ex2_Domain.eps}
|
||||
\caption{Set-up of the model domain and the soil parameters}\label{tutorial-coupled:ex2_Domain}
|
||||
\caption{Set-up of the model domain and the soil parameters}\label{tutorial1:ex2_Domain}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}[ht]
|
||||
@ -509,7 +520,7 @@ step size of $100\;\text{s}$.
|
||||
\psfrag{no flow}{no flow}
|
||||
\centering
|
||||
\includegraphics[width=0.8\linewidth,keepaspectratio]{EPS/Ex2_Boundary.eps}
|
||||
\caption{Boundary Conditions}\label{tutorial-coupled:ex2_BC}
|
||||
\caption{Boundary Conditions}\label{tutorial1:ex2_BC}
|
||||
\end{figure}
|
||||
|
||||
\begin{itemize}
|
@ -32,21 +32,22 @@
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/flash/flashmodel.hh>
|
||||
#include <ewoms/disc/ecfv/ecfvdiscretization.hh>
|
||||
#include "problems/co2injectionflash.hh"
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionFlashProblem,
|
||||
INHERITS_FROM(VcfvFlash, Co2InjectionBaseProblem));
|
||||
NEW_TYPE_TAG(Co2InjectionFlashEcfvProblem, INHERITS_FROM(FlashModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionFlashEcfvProblem, SpatialDiscretizationSplice, EcfvDiscretization);
|
||||
|
||||
// for the flash model we want to use thermodynamic hints or it will
|
||||
// get _very_ slow.
|
||||
SET_BOOL_PROP(Co2InjectionFlashProblem, EnableHints, true);
|
||||
SET_BOOL_PROP(Co2InjectionFlashEcfvProblem, EnableHints, true);
|
||||
|
||||
// use the flash solver adapted to the CO2 injection problem
|
||||
SET_TYPE_PROP(
|
||||
Co2InjectionFlashProblem, FlashSolver,
|
||||
Co2InjectionFlashEcfvProblem, FlashSolver,
|
||||
Ewoms::Co2InjectionFlash<typename GET_PROP_TYPE(TypeTag, Scalar),
|
||||
typename GET_PROP_TYPE(TypeTag, FluidSystem)>);
|
||||
|
||||
@ -54,15 +55,15 @@ SET_TYPE_PROP(
|
||||
// precision. if quadruple precision math is available, we use it,
|
||||
// else we increase the tolerance of the Newton solver
|
||||
#if HAVE_QUAD
|
||||
SET_TYPE_PROP(Co2InjectionFlashProblem, Scalar, quad);
|
||||
SET_TYPE_PROP(Co2InjectionFlashEcfvProblem, Scalar, quad);
|
||||
#else
|
||||
SET_SCALAR_PROP(Co2InjectionFlashProblem, NewtonRelativeTolerance, 1e-5);
|
||||
SET_SCALAR_PROP(Co2InjectionFlashEcfvProblem, NewtonRelativeTolerance, 1e-5);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
} // namespace Properties
|
||||
} // namespace Opm
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionFlashProblem) ProblemTypeTag;
|
||||
return Ewoms::start<ProblemTypeTag>(argc, argv);
|
||||
typedef TTAG(Co2InjectionFlashEcfvProblem) EcfvProblemTypeTag;
|
||||
return Ewoms::start<EcfvProblemTypeTag>(argc, argv);
|
||||
}
|
@ -29,23 +29,24 @@
|
||||
#include <ewoms/common/quad.hh>
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/flash/flashmodel.hh>
|
||||
#include <ewoms/disc/ecfv/ecfvdiscretization.hh>
|
||||
#include "problems/co2injectionflash.hh"
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionFlashNIProblem,
|
||||
INHERITS_FROM(VcfvFlash, Co2InjectionBaseProblem));
|
||||
NEW_TYPE_TAG(Co2InjectionFlashNiEcfvProblem, INHERITS_FROM(FlashModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionFlashNiEcfvProblem, SpatialDiscretizationSplice, EcfvDiscretization);
|
||||
|
||||
SET_BOOL_PROP(Co2InjectionFlashNIProblem, EnableEnergy, true);
|
||||
SET_BOOL_PROP(Co2InjectionFlashNiEcfvProblem, EnableEnergy, true);
|
||||
|
||||
// for the flash model we want to use thermodynamic hints or it will
|
||||
// get _very_ slow.
|
||||
SET_BOOL_PROP(Co2InjectionFlashNIProblem, EnableHints, true);
|
||||
SET_BOOL_PROP(Co2InjectionFlashNiEcfvProblem, EnableHints, true);
|
||||
|
||||
// use the CO2 injection problem adapted flash solver
|
||||
SET_TYPE_PROP(
|
||||
Co2InjectionFlashNIProblem, FlashSolver,
|
||||
Co2InjectionFlashNiEcfvProblem, FlashSolver,
|
||||
Ewoms::Co2InjectionFlash<typename GET_PROP_TYPE(TypeTag, Scalar),
|
||||
typename GET_PROP_TYPE(TypeTag, FluidSystem)>);
|
||||
|
||||
@ -53,15 +54,15 @@ SET_TYPE_PROP(
|
||||
// precision. if quadruple precision math is available, we use it,
|
||||
// else we increase the tolerance of the Newton solver
|
||||
#if HAVE_QUAD
|
||||
SET_TYPE_PROP(Co2InjectionFlashNIProblem, Scalar, quad);
|
||||
SET_TYPE_PROP(Co2InjectionFlashNiEcfvProblem, Scalar, quad);
|
||||
#else
|
||||
SET_SCALAR_PROP(Co2InjectionFlashNIProblem, NewtonRelativeTolerance, 1e-5);
|
||||
SET_SCALAR_PROP(Co2InjectionFlashNiEcfvProblem, NewtonRelativeTolerance, 1e-5);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionFlashNIProblem) ProblemTypeTag;
|
||||
return Ewoms::start<ProblemTypeTag>(argc, argv);
|
||||
typedef TTAG(Co2InjectionFlashNiEcfvProblem) EcfvProblemTypeTag;
|
||||
return Ewoms::start<EcfvProblemTypeTag>(argc, argv);
|
||||
}
|
68
examples/co2injection_flash_ni_vcfv.cpp
Normal file
68
examples/co2injection_flash_ni_vcfv.cpp
Normal file
@ -0,0 +1,68 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2012-2013 by Andreas Lauser
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
OPM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OPM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Test for the non-isothermal compositional model based on flash
|
||||
* calculations.
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
#include <ewoms/common/quad.hh>
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/flash/flashmodel.hh>
|
||||
#include <ewoms/disc/vcfv/vcfvdiscretization.hh>
|
||||
#include "problems/co2injectionflash.hh"
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionFlashNiVcfvProblem, INHERITS_FROM(FlashModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionFlashNiVcfvProblem, SpatialDiscretizationSplice, VcfvDiscretization);
|
||||
|
||||
SET_BOOL_PROP(Co2InjectionFlashNiVcfvProblem, EnableEnergy, true);
|
||||
|
||||
// for the flash model we want to use thermodynamic hints or it will
|
||||
// get _very_ slow.
|
||||
SET_BOOL_PROP(Co2InjectionFlashNiVcfvProblem, EnableHints, true);
|
||||
|
||||
// use the CO2 injection problem adapted flash solver
|
||||
SET_TYPE_PROP(
|
||||
Co2InjectionFlashNiVcfvProblem, FlashSolver,
|
||||
Ewoms::Co2InjectionFlash<typename GET_PROP_TYPE(TypeTag, Scalar),
|
||||
typename GET_PROP_TYPE(TypeTag, FluidSystem)>);
|
||||
|
||||
// the flash model has serious problems with the numerical
|
||||
// precision. if quadruple precision math is available, we use it,
|
||||
// else we increase the tolerance of the Newton solver
|
||||
#if HAVE_QUAD
|
||||
SET_TYPE_PROP(Co2InjectionFlashNiVcfvProblem, Scalar, quad);
|
||||
#else
|
||||
SET_SCALAR_PROP(Co2InjectionFlashNiVcfvProblem, NewtonRelativeTolerance, 1e-5);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionFlashNiVcfvProblem) VcfvProblemTypeTag;
|
||||
return Ewoms::start<VcfvProblemTypeTag>(argc, argv);
|
||||
}
|
69
examples/co2injection_flash_vcfv.cpp
Normal file
69
examples/co2injection_flash_vcfv.cpp
Normal file
@ -0,0 +1,69 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2012-2013 by Andreas Lauser
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
OPM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OPM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Test for the isothermal compositional model based on flash
|
||||
* calculations.
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
#if HAVE_QUAD
|
||||
#include <ewoms/common/quad.hh>
|
||||
#endif
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/flash/flashmodel.hh>
|
||||
#include <ewoms/disc/vcfv/vcfvdiscretization.hh>
|
||||
#include "problems/co2injectionflash.hh"
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionFlashVcfvProblem, INHERITS_FROM(FlashModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionFlashVcfvProblem, SpatialDiscretizationSplice, VcfvDiscretization);
|
||||
|
||||
// for the flash model we want to use thermodynamic hints or it will
|
||||
// get _very_ slow.
|
||||
SET_BOOL_PROP(Co2InjectionFlashVcfvProblem, EnableHints, true);
|
||||
|
||||
// use the flash solver adapted to the CO2 injection problem
|
||||
SET_TYPE_PROP(
|
||||
Co2InjectionFlashVcfvProblem, FlashSolver,
|
||||
Ewoms::Co2InjectionFlash<typename GET_PROP_TYPE(TypeTag, Scalar),
|
||||
typename GET_PROP_TYPE(TypeTag, FluidSystem)>);
|
||||
|
||||
// the flash model has serious problems with the numerical
|
||||
// precision. if quadruple precision math is available, we use it,
|
||||
// else we increase the tolerance of the Newton solver
|
||||
#if HAVE_QUAD
|
||||
SET_TYPE_PROP(Co2InjectionFlashVcfvProblem, Scalar, quad);
|
||||
#else
|
||||
SET_SCALAR_PROP(Co2InjectionFlashVcfvProblem, NewtonRelativeTolerance, 1e-5);
|
||||
#endif
|
||||
} // namespace Properties
|
||||
} // namespace Opm
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionFlashVcfvProblem) VcfvProblemTypeTag;
|
||||
return Ewoms::start<VcfvProblemTypeTag>(argc, argv);
|
||||
}
|
@ -21,26 +21,28 @@
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Test for the isothermal immiscible VCVF discretization
|
||||
* \brief Test for the isothermal immiscible model using the CO2 injection
|
||||
* example problem
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/immiscible/immisciblemodel.hh>
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
#include <ewoms/disc/ecfv/ecfvdiscretization.hh>
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionImmiscibleProblem,
|
||||
INHERITS_FROM(VcfvImmiscible, Co2InjectionBaseProblem));
|
||||
}
|
||||
}
|
||||
NEW_TYPE_TAG(Co2InjectionImmiscibleEcfvProblem, INHERITS_FROM(ImmiscibleModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionImmiscibleEcfvProblem, SpatialDiscretizationSplice, EcfvDiscretization);
|
||||
}}
|
||||
|
||||
////////////////////////
|
||||
// the main function
|
||||
////////////////////////
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionImmiscibleProblem) ProblemTypeTag;
|
||||
return Ewoms::start<ProblemTypeTag>(argc, argv);
|
||||
typedef TTAG(Co2InjectionImmiscibleEcfvProblem) EcfvProblemTypeTag;
|
||||
return Ewoms::start<EcfvProblemTypeTag>(argc, argv);
|
||||
}
|
@ -28,22 +28,22 @@
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/immiscible/immisciblemodel.hh>
|
||||
#include <ewoms/disc/ecfv/ecfvdiscretization.hh>
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionImmiscibleNIProblem,
|
||||
INHERITS_FROM(VcfvImmiscible, Co2InjectionBaseProblem));
|
||||
NEW_TYPE_TAG(Co2InjectionImmiscibleNiEcfvProblem, INHERITS_FROM(ImmiscibleModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionImmiscibleNiEcfvProblem, SpatialDiscretizationSplice, EcfvDiscretization);
|
||||
|
||||
SET_BOOL_PROP(Co2InjectionImmiscibleNIProblem, EnableEnergy, true);
|
||||
}
|
||||
}
|
||||
SET_BOOL_PROP(Co2InjectionImmiscibleNiEcfvProblem, EnableEnergy, true);
|
||||
}}
|
||||
|
||||
////////////////////////
|
||||
// the main function
|
||||
////////////////////////
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionImmiscibleNIProblem) ProblemTypeTag;
|
||||
return Ewoms::start<ProblemTypeTag>(argc, argv);
|
||||
typedef TTAG(Co2InjectionImmiscibleNiEcfvProblem) EcfvProblemTypeTag;
|
||||
return Ewoms::start<EcfvProblemTypeTag>(argc, argv);
|
||||
}
|
49
examples/co2injection_immiscible_ni_vcfv.cpp
Normal file
49
examples/co2injection_immiscible_ni_vcfv.cpp
Normal file
@ -0,0 +1,49 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2012-2013 by Andreas Lauser
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
OPM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OPM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Simulation of the injection problem using the VCVF discretization
|
||||
* assuming immisicibility and with energy enabled.
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/immiscible/immisciblemodel.hh>
|
||||
#include <ewoms/disc/vcfv/vcfvdiscretization.hh>
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionImmiscibleNiVcfvProblem, INHERITS_FROM(ImmiscibleModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionImmiscibleNiVcfvProblem, SpatialDiscretizationSplice, VcfvDiscretization);
|
||||
|
||||
SET_BOOL_PROP(Co2InjectionImmiscibleNiVcfvProblem, EnableEnergy, true);
|
||||
}}
|
||||
|
||||
////////////////////////
|
||||
// the main function
|
||||
////////////////////////
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionImmiscibleNiVcfvProblem) VcfvProblemTypeTag;
|
||||
return Ewoms::start<VcfvProblemTypeTag>(argc, argv);
|
||||
}
|
48
examples/co2injection_immiscible_vcfv.cpp
Normal file
48
examples/co2injection_immiscible_vcfv.cpp
Normal file
@ -0,0 +1,48 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2012-2013 by Andreas Lauser
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
OPM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OPM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Test for the isothermal immiscible model using the CO2 injection
|
||||
* example problem
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/immiscible/immisciblemodel.hh>
|
||||
#include <ewoms/disc/vcfv/vcfvdiscretization.hh>
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionImmiscibleVcfvProblem, INHERITS_FROM(ImmiscibleModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionImmiscibleVcfvProblem, SpatialDiscretizationSplice, VcfvDiscretization);
|
||||
}}
|
||||
|
||||
////////////////////////
|
||||
// the main function
|
||||
////////////////////////
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionImmiscibleVcfvProblem) VcfvProblemTypeTag;
|
||||
return Ewoms::start<VcfvProblemTypeTag>(argc, argv);
|
||||
}
|
@ -28,17 +28,17 @@
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/ncp/ncpmodel.hh>
|
||||
#include <ewoms/disc/ecfv/ecfvdiscretization.hh>
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionNcpProblem,
|
||||
INHERITS_FROM(VcfvNcp, Co2InjectionBaseProblem));
|
||||
}
|
||||
}
|
||||
NEW_TYPE_TAG(Co2InjectionNcpEcfvProblem, INHERITS_FROM(NcpModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionNcpEcfvProblem, SpatialDiscretizationSplice, EcfvDiscretization);
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionNcpProblem) ProblemTypeTag;
|
||||
return Ewoms::start<ProblemTypeTag>(argc, argv);
|
||||
typedef TTAG(Co2InjectionNcpEcfvProblem) EcfvProblemTypeTag;
|
||||
return Ewoms::start<EcfvProblemTypeTag>(argc, argv);
|
||||
}
|
@ -28,18 +28,18 @@
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/ncp/ncpmodel.hh>
|
||||
#include <ewoms/disc/ecfv/ecfvdiscretization.hh>
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionNcpNIProblem,
|
||||
INHERITS_FROM(VcfvNcp, Co2InjectionBaseProblem));
|
||||
SET_BOOL_PROP(Co2InjectionNcpNIProblem, EnableEnergy, true);
|
||||
}
|
||||
}
|
||||
NEW_TYPE_TAG(Co2InjectionNcpNiEcfvProblem, INHERITS_FROM(NcpModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionNcpNiEcfvProblem, SpatialDiscretizationSplice, EcfvDiscretization);
|
||||
SET_BOOL_PROP(Co2InjectionNcpNiEcfvProblem, EnableEnergy, true);
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionNcpNIProblem) ProblemTypeTag;
|
||||
return Ewoms::start<ProblemTypeTag>(argc, argv);
|
||||
typedef TTAG(Co2InjectionNcpNiEcfvProblem) EcfvProblemTypeTag;
|
||||
return Ewoms::start<EcfvProblemTypeTag>(argc, argv);
|
||||
}
|
45
examples/co2injection_ncp_ni_vcfv.cpp
Normal file
45
examples/co2injection_ncp_ni_vcfv.cpp
Normal file
@ -0,0 +1,45 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2012-2013 by Andreas Lauser
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
OPM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OPM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Test for the non-isothermal VCVF discretization based on non-linear
|
||||
* complementarity problems.
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/ncp/ncpmodel.hh>
|
||||
#include <ewoms/disc/vcfv/vcfvdiscretization.hh>
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionNcpNiVcfvProblem, INHERITS_FROM(NcpModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionNcpNiVcfvProblem, SpatialDiscretizationSplice, VcfvDiscretization);
|
||||
SET_BOOL_PROP(Co2InjectionNcpNiVcfvProblem, EnableEnergy, true);
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionNcpNiVcfvProblem) VcfvProblemTypeTag;
|
||||
return Ewoms::start<VcfvProblemTypeTag>(argc, argv);
|
||||
}
|
45
examples/co2injection_ncp_vcfv.cpp
Normal file
45
examples/co2injection_ncp_vcfv.cpp
Normal file
@ -0,0 +1,45 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2012-2013 by Andreas Lauser
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
OPM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OPM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Test for the isothermal VCVF discretization based on non-linear
|
||||
* complementarity problems.
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/ncp/ncpmodel.hh>
|
||||
#include <ewoms/disc/vcfv/vcfvdiscretization.hh>
|
||||
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionNcpVcfvProblem, INHERITS_FROM(NcpModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionNcpVcfvProblem, SpatialDiscretizationSplice, VcfvDiscretization);
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionNcpVcfvProblem) VcfvProblemTypeTag;
|
||||
return Ewoms::start<VcfvProblemTypeTag>(argc, argv);
|
||||
}
|
@ -28,17 +28,17 @@
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/pvs/pvsmodel.hh>
|
||||
#include <ewoms/disc/ecfv/ecfvdiscretization.hh>
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionPvsProblem,
|
||||
INHERITS_FROM(VcfvPvs, Co2InjectionBaseProblem));
|
||||
}
|
||||
}
|
||||
NEW_TYPE_TAG(Co2InjectionPvsEcfvProblem, INHERITS_FROM(PvsModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionPvsEcfvProblem, SpatialDiscretizationSplice, EcfvDiscretization);
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionPvsProblem) ProblemTypeTag;
|
||||
return Ewoms::start<ProblemTypeTag>(argc, argv);
|
||||
typedef TTAG(Co2InjectionPvsEcfvProblem) EcfvProblemTypeTag;
|
||||
return Ewoms::start<EcfvProblemTypeTag>(argc, argv);
|
||||
}
|
@ -28,19 +28,19 @@
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/pvs/pvsmodel.hh>
|
||||
#include <ewoms/disc/ecfv/ecfvdiscretization.hh>
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionPvsNIProblem,
|
||||
INHERITS_FROM(VcfvPvs, Co2InjectionBaseProblem));
|
||||
NEW_TYPE_TAG(Co2InjectionPvsNiEcfvProblem, INHERITS_FROM(PvsModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionPvsNiEcfvProblem, SpatialDiscretizationSplice, EcfvDiscretization);
|
||||
|
||||
SET_BOOL_PROP(Co2InjectionPvsNIProblem, EnableEnergy, true);
|
||||
}
|
||||
}
|
||||
SET_BOOL_PROP(Co2InjectionPvsNiEcfvProblem, EnableEnergy, true);
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionPvsNIProblem) ProblemTypeTag;
|
||||
return Ewoms::start<ProblemTypeTag>(argc, argv);
|
||||
typedef TTAG(Co2InjectionPvsNiEcfvProblem) EcfvProblemTypeTag;
|
||||
return Ewoms::start<EcfvProblemTypeTag>(argc, argv);
|
||||
}
|
46
examples/co2injection_pvs_ni_vcfv.cpp
Normal file
46
examples/co2injection_pvs_ni_vcfv.cpp
Normal file
@ -0,0 +1,46 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2012-2013 by Andreas Lauser
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
OPM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OPM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Test for the non-isothermal primary variable switching VCVF
|
||||
*discretization.
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/pvs/pvsmodel.hh>
|
||||
#include <ewoms/disc/vcfv/vcfvdiscretization.hh>
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionPvsNiVcfvProblem, INHERITS_FROM(PvsModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionPvsNiVcfvProblem, SpatialDiscretizationSplice, VcfvDiscretization);
|
||||
|
||||
SET_BOOL_PROP(Co2InjectionPvsNiVcfvProblem, EnableEnergy, true);
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionPvsNiVcfvProblem) VcfvProblemTypeTag;
|
||||
return Ewoms::start<VcfvProblemTypeTag>(argc, argv);
|
||||
}
|
45
examples/co2injection_pvs_vcfv.cpp
Normal file
45
examples/co2injection_pvs_vcfv.cpp
Normal file
@ -0,0 +1,45 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2009-2013 by Andreas Lauser
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
OPM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OPM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Test for the isothermal primary variable switching VCVF
|
||||
*discretization.
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
#include <ewoms/common/start.hh>
|
||||
#include <ewoms/models/pvs/pvsmodel.hh>
|
||||
#include <ewoms/disc/vcfv/vcfvdiscretization.hh>
|
||||
|
||||
#include "problems/co2injectionproblem.hh"
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Co2InjectionPvsVcfvProblem, INHERITS_FROM(PvsModel, Co2InjectionBaseProblem));
|
||||
SET_TAG_PROP(Co2InjectionPvsVcfvProblem, SpatialDiscretizationSplice, VcfvDiscretization);
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(Co2InjectionPvsVcfvProblem) VcfvProblemTypeTag;
|
||||
return Ewoms::start<VcfvProblemTypeTag>(argc, argv);
|
||||
}
|
@ -31,9 +31,8 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(CuvetteProblem, INHERITS_FROM(VcfvPvs, CuvetteBaseProblem));
|
||||
}
|
||||
}
|
||||
NEW_TYPE_TAG(CuvetteProblem, INHERITS_FROM(PvsModel, CuvetteBaseProblem));
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
@ -31,7 +31,7 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(DiffusionProblem, INHERITS_FROM(VcfvFlash, DiffusionBaseProblem));
|
||||
NEW_TYPE_TAG(DiffusionProblem, INHERITS_FROM(FlashModel, DiffusionBaseProblem));
|
||||
}
|
||||
}
|
||||
|
@ -31,9 +31,8 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(DiffusionProblem, INHERITS_FROM(VcfvNcp, DiffusionBaseProblem));
|
||||
}
|
||||
}
|
||||
NEW_TYPE_TAG(DiffusionProblem, INHERITS_FROM(NcpModel, DiffusionBaseProblem));
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
@ -31,9 +31,8 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(DiffusionProblem, INHERITS_FROM(VcfvPvs, DiffusionBaseProblem));
|
||||
}
|
||||
}
|
||||
NEW_TYPE_TAG(DiffusionProblem, INHERITS_FROM(PvsModel, DiffusionBaseProblem));
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
@ -31,10 +31,8 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(GroundWaterProblem,
|
||||
INHERITS_FROM(VcfvImmiscibleOnePhase, GroundWaterBaseProblem));
|
||||
}
|
||||
}
|
||||
NEW_TYPE_TAG(GroundWaterProblem, INHERITS_FROM(ImmiscibleOnePhaseModel, GroundWaterBaseProblem));
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
@ -31,10 +31,8 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(InfiltrationProblem,
|
||||
INHERITS_FROM(VcfvPvs, InfiltrationBaseProblem));
|
||||
}
|
||||
}
|
||||
NEW_TYPE_TAG(InfiltrationProblem, INHERITS_FROM(PvsModel, InfiltrationBaseProblem));
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
@ -32,7 +32,7 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(ObstacleProblem, INHERITS_FROM(VcfvImmiscible, ObstacleBaseProblem));
|
||||
NEW_TYPE_TAG(ObstacleProblem, INHERITS_FROM(ImmiscibleModel, ObstacleBaseProblem));
|
||||
}
|
||||
}
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(ObstacleProblem, INHERITS_FROM(VcfvNcp, ObstacleBaseProblem));
|
||||
NEW_TYPE_TAG(ObstacleProblem, INHERITS_FROM(NcpModel, ObstacleBaseProblem));
|
||||
}
|
||||
}
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(ObstacleProblem, INHERITS_FROM(VcfvPvs, ObstacleBaseProblem));
|
||||
NEW_TYPE_TAG(ObstacleProblem, INHERITS_FROM(PvsModel, ObstacleBaseProblem));
|
||||
|
||||
// Verbosity of the PVS model (0=silent, 1=medium, 2=chatty)
|
||||
SET_INT_PROP(ObstacleProblem, PvsVerbosity, 1);
|
@ -31,7 +31,7 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(OutflowProblem, INHERITS_FROM(VcfvPvs, OutflowBaseProblem));
|
||||
NEW_TYPE_TAG(OutflowProblem, INHERITS_FROM(PvsModel, OutflowBaseProblem));
|
||||
|
||||
// Verbosity of the PVS model (0=silent, 1=medium, 2=chatty)
|
||||
SET_INT_PROP(OutflowProblem, PvsVerbosity, 1);
|
@ -26,7 +26,7 @@
|
||||
#ifndef EWOMS_CO2_INJECTION_PROBLEM_HH
|
||||
#define EWOMS_CO2_INJECTION_PROBLEM_HH
|
||||
|
||||
#include <ewoms/models/pvs/pvsproperties.hh>
|
||||
#include <ewoms/models/immiscible/immisciblemodel.hh>
|
||||
|
||||
#include <opm/material/fluidsystems/H2ON2FluidSystem.hpp>
|
||||
#include <opm/material/fluidsystems/BrineCO2FluidSystem.hpp>
|
||||
@ -101,8 +101,11 @@ public:
|
||||
SET_PROP(Co2InjectionBaseProblem, MaterialLaw)
|
||||
{
|
||||
private:
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
||||
enum { lPhaseIdx = FluidSystem::lPhaseIdx };
|
||||
enum { gPhaseIdx = FluidSystem::gPhaseIdx };
|
||||
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef Opm::TwoPhaseMaterialTraits<Scalar,
|
||||
/*wettingPhaseIdx=*/FluidSystem::lPhaseIdx,
|
||||
/*nonWettingPhaseIdx=*/FluidSystem::gPhaseIdx>
|
||||
@ -293,7 +296,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::registerParameters
|
||||
* \copydoc FvBaseMultiPhaseProblem::registerParameters
|
||||
*/
|
||||
static void registerParameters()
|
||||
{
|
||||
@ -342,6 +345,7 @@ public:
|
||||
oss << name_ << "_" << this->model().name();
|
||||
if (GET_PROP_VALUE(TypeTag, EnableEnergy))
|
||||
oss << "_ni";
|
||||
oss << "_" << this->model().discretizationName();
|
||||
return oss.str();
|
||||
}
|
||||
|
||||
@ -363,7 +367,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar temperature(const Context &context, int spaceIdx, int timeIdx) const
|
||||
@ -375,7 +379,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
@ -388,7 +392,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
@ -400,7 +404,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
||||
@ -413,7 +417,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatCapacitySolid
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatCapacitySolid
|
||||
*
|
||||
* In this case, we assume the rock-matrix to be granite.
|
||||
*/
|
||||
@ -426,7 +430,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatConductionParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatConductionParams
|
||||
*/
|
||||
template <class Context>
|
||||
const HeatConductionLawParams &
|
@ -305,14 +305,14 @@ public:
|
||||
//! \{
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar temperature(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return 293.15; /* [K] */ }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
@ -325,7 +325,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
@ -338,7 +338,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
||||
@ -352,7 +352,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatConductionParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatConductionParams
|
||||
*/
|
||||
template <class Context>
|
||||
const HeatConductionLawParams &
|
||||
@ -360,7 +360,7 @@ public:
|
||||
{ return heatCondParams_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatCapacitySolid
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatCapacitySolid
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar heatCapacitySolid(const Context &context, int spaceIdx,
|
@ -212,7 +212,7 @@ public:
|
||||
//! \{
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
@ -220,14 +220,14 @@ public:
|
||||
{ return K_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return 0.35; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
||||
@ -235,7 +235,7 @@ public:
|
||||
{ return materialParams_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar temperature(const Context &context, int spaceIdx, int timeIdx) const
|
@ -29,11 +29,7 @@
|
||||
#include <opm/core/utility/PropertySystem.hpp>
|
||||
#include <ewoms/common/parametersystem.hh>
|
||||
|
||||
#if HAVE_ALUGRDID
|
||||
#include <dune/grid/alugrid.hh>
|
||||
#else
|
||||
#include <dune/grid/yaspgrid.hh>
|
||||
#endif
|
||||
#include <dune/common/fvector.hh>
|
||||
#include <dune/common/version.hh>
|
||||
|
||||
@ -73,7 +69,6 @@ namespace Ewoms {
|
||||
/*!
|
||||
* \brief Helper class for grid instantiation of the finger problem.
|
||||
*/
|
||||
#if HAVE_ALUGRDID
|
||||
template <class TypeTag>
|
||||
class FingerGridCreator
|
||||
{
|
||||
@ -82,7 +77,7 @@ class FingerGridCreator
|
||||
enum { dim = FINGER_DIM };
|
||||
|
||||
public:
|
||||
typedef Dune::ALUGrid<LENS_DIM, LENS_DIM, Dune::cube, Dune::nonconforming> Grid;
|
||||
typedef Dune::ALUGrid<FINGER_DIM, FINGER_DIM, Dune::cube, Dune::nonconforming> Grid;
|
||||
|
||||
/*!
|
||||
* \brief Register all run-time parameters for the grid creator.
|
||||
@ -312,118 +307,6 @@ private:
|
||||
|
||||
template <class TypeTag>
|
||||
typename FingerGridCreator<TypeTag>::Grid *FingerGridCreator<TypeTag>::grid_;
|
||||
|
||||
#else // ! HAVE_ALUGRDID
|
||||
|
||||
template <class TypeTag>
|
||||
class FingerGridCreator
|
||||
{
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
|
||||
enum { dim = FINGER_DIM };
|
||||
|
||||
public:
|
||||
typedef Dune::YaspGrid<FINGER_DIM> Grid;
|
||||
|
||||
/*!
|
||||
* \brief Register all run-time parameters for the grid creator.
|
||||
*/
|
||||
static void registerParameters()
|
||||
{
|
||||
EWOMS_REGISTER_PARAM(TypeTag, unsigned, GridGlobalRefinements,
|
||||
"The number of global refinements of the grid "
|
||||
"executed after it was loaded");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeX,
|
||||
"The size of the domain in x direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsX,
|
||||
"The number of intervalls in x direction");
|
||||
if (dim > 1) {
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeY,
|
||||
"The size of the domain in y direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsY,
|
||||
"The number of intervalls in y direction");
|
||||
}
|
||||
if (dim > 2) {
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeZ,
|
||||
"The size of the domain in z direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsZ,
|
||||
"The number of intervalls in z direction");
|
||||
}
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief Create the grid for the finger problem
|
||||
*/
|
||||
static void makeGrid()
|
||||
{
|
||||
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
|
||||
std::bitset<FINGER_DIM> isPeriodic(false);
|
||||
std::array<int, FINGER_DIM> cellRes;
|
||||
#else
|
||||
Dune::FieldVector<bool, FINGER_DIM> isPeriodic(false);
|
||||
Dune::FieldVector<int, FINGER_DIM> cellRes;
|
||||
#endif
|
||||
|
||||
Dune::FieldVector<Scalar, FINGER_DIM> upperRight;
|
||||
Dune::FieldVector<Scalar, FINGER_DIM> lowerLeft;
|
||||
|
||||
grid_ = 0;
|
||||
|
||||
lowerLeft[1] = 0.0;
|
||||
upperRight[0] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeX);
|
||||
upperRight[1] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeY);
|
||||
|
||||
cellRes[0] = EWOMS_GET_PARAM(TypeTag, int, CellsX);
|
||||
cellRes[1] = EWOMS_GET_PARAM(TypeTag, int, CellsY);
|
||||
if (dim == 3) {
|
||||
upperRight[2] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeZ);
|
||||
cellRes[2] = EWOMS_GET_PARAM(TypeTag, int, CellsZ);
|
||||
}
|
||||
|
||||
unsigned numRefinments
|
||||
= EWOMS_GET_PARAM(TypeTag, unsigned, GridGlobalRefinements);
|
||||
|
||||
grid_ = new Dune::YaspGrid<FINGER_DIM>(
|
||||
#ifdef HAVE_MPI
|
||||
Dune::MPIHelper::getCommunicator(),
|
||||
#endif
|
||||
upperRight, // upper right
|
||||
cellRes, // number of cells
|
||||
isPeriodic, 0); // overlap size
|
||||
grid_->globalRefine(numRefinments);
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief Return a reference to the grid.
|
||||
*/
|
||||
static Grid &grid()
|
||||
{ return *grid_; }
|
||||
|
||||
/*!
|
||||
* \brief Distribute the grid (and attached data) over all
|
||||
* processes.
|
||||
*/
|
||||
static void loadBalance()
|
||||
{ grid_->loadBalance(); }
|
||||
|
||||
/*!
|
||||
* \brief Destroy the grid
|
||||
*
|
||||
* This is required to guarantee that the grid is deleted before
|
||||
* MPI_Comm_free is called.
|
||||
*/
|
||||
static void deleteGrid()
|
||||
{ delete grid_; }
|
||||
|
||||
private:
|
||||
static Grid *grid_;
|
||||
};
|
||||
|
||||
template <class TypeTag>
|
||||
Dune::YaspGrid<FINGER_DIM> *FingerGridCreator<TypeTag>::grid_;
|
||||
|
||||
#endif // HAVE_ALUGRDID
|
||||
|
||||
} // namespace Ewoms
|
||||
|
||||
#endif
|
@ -239,7 +239,7 @@ public:
|
||||
{ return std::string("finger_") + this->model().name(); }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::registerParameters
|
||||
* \copydoc FvBaseMultiPhaseProblem::registerParameters
|
||||
*/
|
||||
static void registerParameters()
|
||||
{
|
||||
@ -268,7 +268,7 @@ public:
|
||||
|
||||
// initialize the material parameter objects of the individual
|
||||
// finite volumes
|
||||
int n = this->model().numDofs();
|
||||
int n = this->model().numDof();
|
||||
materialParams_.resize(n);
|
||||
for (int i = 0; i < n; ++i) {
|
||||
materialParams_[i].setMicParams(&micParams_);
|
||||
@ -298,7 +298,7 @@ public:
|
||||
const auto &elemEndIt = this->gridView().template end<0>();
|
||||
for (; elemIt != elemEndIt; ++elemIt) {
|
||||
elemCtx.updateAll(*elemIt);
|
||||
for (int scvIdx = 0; scvIdx < elemCtx.numScv(); ++scvIdx) {
|
||||
for (int scvIdx = 0; scvIdx < elemCtx.numDof(/*timeIdx=*/0); ++scvIdx) {
|
||||
int globalIdx = elemCtx.globalSpaceIndex(scvIdx, /*timeIdx=*/0);
|
||||
const auto &fs
|
||||
= elemCtx.volVars(scvIdx, /*timeIdx=*/0).fluidState();
|
||||
@ -315,14 +315,14 @@ public:
|
||||
//! \{
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar temperature(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return temperature_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
@ -330,14 +330,14 @@ public:
|
||||
{ return K_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return 0.4; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
@ -2,7 +2,6 @@
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2008-2013 by Andreas Lauser
|
||||
Copyright (C) 2012 by Markus Wolff
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
@ -60,7 +59,7 @@ class FractureProblem;
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
// Create a type tag for the problem
|
||||
NEW_TYPE_TAG(FractureProblem, INHERITS_FROM(VcfvDiscreteFracture));
|
||||
NEW_TYPE_TAG(FractureProblem, INHERITS_FROM(DiscreteFractureModel));
|
||||
|
||||
// Set the GridCreator property
|
||||
SET_TYPE_PROP(FractureProblem, GridCreator, Ewoms::ArtGridCreator<TypeTag>);
|
||||
@ -97,8 +96,11 @@ public:
|
||||
SET_PROP(FractureProblem, MaterialLaw)
|
||||
{
|
||||
private:
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
||||
enum { wPhaseIdx = FluidSystem::wPhaseIdx };
|
||||
enum { nPhaseIdx = FluidSystem::nPhaseIdx };
|
||||
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef Opm::TwoPhaseMaterialTraits<Scalar,
|
||||
/*wettingPhaseIdx=*/FluidSystem::wPhaseIdx,
|
||||
/*nonWettingPhaseIdx=*/FluidSystem::nPhaseIdx>
|
||||
@ -109,7 +111,6 @@ private:
|
||||
typedef Opm::RegularizedBrooksCorey<Traits> EffectiveLaw;
|
||||
// typedef RegularizedVanGenuchten<Traits> EffectiveLaw;
|
||||
// typedef LinearMaterial<Traits> EffectiveLaw;
|
||||
|
||||
public:
|
||||
typedef Opm::EffToAbsLaw<EffectiveLaw> type;
|
||||
};
|
||||
@ -139,7 +140,7 @@ SET_BOOL_PROP(FractureProblem, EnableConstraints, true);
|
||||
SET_STRING_PROP(FractureProblem, GridFile, "grids/fracture.art");
|
||||
|
||||
// Set the default value for the end time
|
||||
SET_SCALAR_PROP(FractureProblem, EndTime, 1e6);
|
||||
SET_SCALAR_PROP(FractureProblem, EndTime, 3e3);
|
||||
|
||||
// Set the default value for the initial time step size
|
||||
SET_SCALAR_PROP(FractureProblem, InitialTimeStepSize, 100);
|
||||
@ -298,7 +299,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar temperature(const Context &context, int spaceIdx, int timeIdx) const
|
||||
@ -312,7 +313,7 @@ public:
|
||||
//! \{
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
@ -331,7 +332,7 @@ public:
|
||||
{ return fractureK_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
@ -348,7 +349,7 @@ public:
|
||||
{ return fracturePorosity_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
||||
@ -390,7 +391,7 @@ public:
|
||||
{ return fractureWidth_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatConductionParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatConductionParams
|
||||
*/
|
||||
template <class Context>
|
||||
const HeatConductionLawParams &
|
||||
@ -398,7 +399,7 @@ public:
|
||||
{ return heatCondParams_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatCapacitySolid
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatCapacitySolid
|
||||
*
|
||||
* In this case, we assume the rock-matrix to be granite.
|
||||
*/
|
||||
@ -490,7 +491,7 @@ public:
|
||||
MaterialLaw::capillaryPressures(pCFracture, fractureMaterialParams_,
|
||||
fractureFluidState);
|
||||
|
||||
fractureFluidState.setPressure(wPhaseIdx, /*pressure=*/1e5);
|
||||
fractureFluidState.setPressure(wPhaseIdx, /*pressure=*/1.0e5);
|
||||
fractureFluidState.setPressure(nPhaseIdx,
|
||||
fractureFluidState.pressure(wPhaseIdx)
|
||||
+ (pCFracture[nPhaseIdx]
|
@ -185,7 +185,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::registerParameters
|
||||
* \copydoc FvBaseMultiPhaseProblem::registerParameters
|
||||
*/
|
||||
static void registerParameters()
|
||||
{
|
||||
@ -239,21 +239,21 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar temperature(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return 273.15 + 10; } // 10C
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return 0.4; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
@ -258,14 +258,14 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar temperature(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return temperature_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
@ -278,7 +278,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
@ -292,7 +292,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
||||
@ -300,7 +300,7 @@ public:
|
||||
{ return materialParams_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatCapacitySolid
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatCapacitySolid
|
||||
*
|
||||
* In this case, we assume the rock-matrix to be quartz.
|
||||
*/
|
175
examples/problems/lensgridcreator.hh
Normal file
175
examples/problems/lensgridcreator.hh
Normal file
@ -0,0 +1,175 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2012-2013 by Andreas Lauser
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
OPM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OPM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
* \copydoc Ewoms::LensGridCreator
|
||||
*/
|
||||
#ifndef EWOMS_LENS_GRID_CREATOR_HH
|
||||
#define EWOMS_LENS_GRID_CREATOR_HH
|
||||
|
||||
#include <ewoms/parallel/mpihelper.hh>
|
||||
#include <opm/core/utility/PropertySystem.hpp>
|
||||
#include <ewoms/common/parametersystem.hh>
|
||||
|
||||
#include <dune/grid/yaspgrid.hh>
|
||||
#include <dune/common/fvector.hh>
|
||||
#include <dune/common/version.hh>
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace Ewoms {
|
||||
template <class TypeTag>
|
||||
class LensProblem;
|
||||
} // namespace Ewoms
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
// declare the properties required by the for the lens grid creator
|
||||
NEW_PROP_TAG(Grid);
|
||||
NEW_PROP_TAG(Scalar);
|
||||
|
||||
NEW_PROP_TAG(DomainSizeX);
|
||||
NEW_PROP_TAG(DomainSizeY);
|
||||
NEW_PROP_TAG(DomainSizeZ);
|
||||
|
||||
NEW_PROP_TAG(CellsX);
|
||||
NEW_PROP_TAG(CellsY);
|
||||
NEW_PROP_TAG(CellsZ);
|
||||
|
||||
NEW_PROP_TAG(GridGlobalRefinements);
|
||||
}} // namespace Opm, Properties
|
||||
|
||||
namespace Ewoms {
|
||||
/*!
|
||||
* \ingroup TestProblems
|
||||
*
|
||||
* \brief Helper class for grid instantiation of the lens problem.
|
||||
*/
|
||||
template <class TypeTag>
|
||||
class LensGridCreator
|
||||
{
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
|
||||
static const int dim = 2;
|
||||
|
||||
public:
|
||||
typedef Dune::YaspGrid<dim> Grid;
|
||||
|
||||
/*!
|
||||
* \brief Register all run-time parameters for the grid creator.
|
||||
*/
|
||||
static void registerParameters()
|
||||
{
|
||||
EWOMS_REGISTER_PARAM(TypeTag, unsigned, GridGlobalRefinements,
|
||||
"The number of global refinements of the grid "
|
||||
"executed after it was loaded");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeX,
|
||||
"The size of the domain in x direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsX,
|
||||
"The number of intervalls in x direction");
|
||||
if (dim > 1) {
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeY,
|
||||
"The size of the domain in y direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsY,
|
||||
"The number of intervalls in y direction");
|
||||
}
|
||||
if (dim > 2) {
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeZ,
|
||||
"The size of the domain in z direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsZ,
|
||||
"The number of intervalls in z direction");
|
||||
}
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief Create the grid for the lens problem
|
||||
*/
|
||||
static void makeGrid()
|
||||
{
|
||||
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
|
||||
std::bitset<dim> isPeriodic(false);
|
||||
std::array<int, dim> cellRes;
|
||||
#else
|
||||
Dune::FieldVector<bool, dim> isPeriodic(false);
|
||||
Dune::FieldVector<int, dim> cellRes;
|
||||
#endif
|
||||
|
||||
Dune::FieldVector<Scalar, dim> upperRight;
|
||||
Dune::FieldVector<Scalar, dim> lowerLeft;
|
||||
|
||||
grid_ = 0;
|
||||
|
||||
lowerLeft[1] = 0.0;
|
||||
upperRight[0] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeX);
|
||||
upperRight[1] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeY);
|
||||
|
||||
cellRes[0] = EWOMS_GET_PARAM(TypeTag, int, CellsX);
|
||||
cellRes[1] = EWOMS_GET_PARAM(TypeTag, int, CellsY);
|
||||
if (dim == 3) {
|
||||
upperRight[2] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeZ);
|
||||
cellRes[2] = EWOMS_GET_PARAM(TypeTag, int, CellsZ);
|
||||
}
|
||||
|
||||
unsigned numRefinements
|
||||
= EWOMS_GET_PARAM(TypeTag, unsigned, GridGlobalRefinements);
|
||||
|
||||
grid_ = new Dune::YaspGrid<dim>(
|
||||
#ifdef HAVE_MPI
|
||||
/*mpiCommunicator=*/Dune::MPIHelper::getCommunicator(),
|
||||
#endif
|
||||
/*upperRightCorner=*/upperRight,
|
||||
/*numCells=*/cellRes, isPeriodic,
|
||||
/*overlap=*/1);
|
||||
grid_->globalRefine(numRefinements);
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief Return a reference to the grid.
|
||||
*/
|
||||
static Grid &grid()
|
||||
{ return *grid_; }
|
||||
|
||||
/*!
|
||||
* \brief Distribute the grid (and attached data) over all
|
||||
* processes.
|
||||
*/
|
||||
static void loadBalance()
|
||||
{ grid_->loadBalance(); }
|
||||
|
||||
/*!
|
||||
* \brief Destroy the grid
|
||||
*
|
||||
* This is required to guarantee that the grid is deleted before
|
||||
* MPI_Comm_free is called.
|
||||
*/
|
||||
static void deleteGrid()
|
||||
{ delete grid_; }
|
||||
|
||||
private:
|
||||
static Grid *grid_;
|
||||
};
|
||||
|
||||
template <class TypeTag>
|
||||
typename LensGridCreator<TypeTag>::Grid *LensGridCreator<TypeTag>::grid_;
|
||||
|
||||
} // namespace Ewoms
|
||||
|
||||
#endif
|
@ -49,7 +49,6 @@
|
||||
#include <iostream>
|
||||
|
||||
namespace Ewoms {
|
||||
|
||||
template <class TypeTag>
|
||||
class LensProblem;
|
||||
}
|
||||
@ -100,8 +99,11 @@ public:
|
||||
SET_PROP(LensBaseProblem, MaterialLaw)
|
||||
{
|
||||
private:
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
||||
enum { wPhaseIdx = FluidSystem::wPhaseIdx };
|
||||
enum { nPhaseIdx = FluidSystem::nPhaseIdx };
|
||||
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef Opm::TwoPhaseMaterialTraits<Scalar,
|
||||
/*wettingPhaseIdx=*/FluidSystem::wPhaseIdx,
|
||||
/*nonWettingPhaseIdx=*/FluidSystem::nPhaseIdx>
|
||||
@ -117,7 +119,7 @@ public:
|
||||
};
|
||||
|
||||
// Use the algebraic multi-grid linear solver for this problem
|
||||
SET_TAG_PROP(LensBaseProblem, LinearSolver, ParallelAmgBackend);
|
||||
SET_TAG_PROP(LensBaseProblem, LinearSolverSplice, ParallelAmgBackend);
|
||||
|
||||
// Enable partial reassembly of the jacobian matrix?
|
||||
// SET_BOOL_PROP(LensBaseProblem, EnablePartialReassemble, true);
|
||||
@ -155,8 +157,9 @@ SET_SCALAR_PROP(LensBaseProblem, EndTime, 30e3);
|
||||
|
||||
// The default for the initial time step size of the simulation
|
||||
SET_SCALAR_PROP(LensBaseProblem, InitialTimeStepSize, 250);
|
||||
} // namespace Properties
|
||||
} // namespace Opm
|
||||
|
||||
//SET_BOOL_PROP(LensBaseProblem, EnableConstraints, true);
|
||||
}} // namespace Opm, Properties
|
||||
|
||||
namespace Ewoms {
|
||||
/*!
|
||||
@ -272,7 +275,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::registerParameters
|
||||
* \copydoc FvBaseMultiPhaseProblem::registerParameters
|
||||
*/
|
||||
static void registerParameters()
|
||||
{
|
||||
@ -307,7 +310,7 @@ public:
|
||||
//! \{
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
@ -321,14 +324,14 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return 0.4; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
||||
@ -342,7 +345,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar temperature(const Context &context, int spaceIdx, int timeIdx) const
|
@ -44,11 +44,10 @@ class NavierStokesTestProblem;
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(NavierStokesTestProblem, INHERITS_FROM(VcfvNavierStokes));
|
||||
NEW_TYPE_TAG(NavierStokesTestProblem, INHERITS_FROM(NavierStokesModel));
|
||||
|
||||
// Set the grid type
|
||||
SET_TYPE_PROP(NavierStokesTestProblem, Grid,
|
||||
Dune::ALUGrid<2, 2, Dune::cube, Dune::nonconforming>);
|
||||
SET_TYPE_PROP(NavierStokesTestProblem, Grid, Dune::ALUGrid<2, 2, Dune::cube, Dune::nonconforming>);
|
||||
|
||||
// Set the property which defines the type of the physical problem
|
||||
SET_TYPE_PROP(NavierStokesTestProblem, Problem,
|
||||
@ -83,7 +82,7 @@ SET_STRING_PROP(NavierStokesTestProblem, GridFile,
|
||||
|
||||
namespace Ewoms {
|
||||
/*!
|
||||
* \ingroup VcfvStokesModel
|
||||
* \ingroup StokesModel
|
||||
* \ingroup VcfvTestProblems
|
||||
* \brief Stokes flow problem with modified nitrogen (N2) circulating in
|
||||
* a cavity. (lid-driven cavity-flow)
|
@ -284,7 +284,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*
|
||||
* This problem simply assumes a constant temperature.
|
||||
*/
|
||||
@ -293,7 +293,7 @@ public:
|
||||
{ return temperature_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
@ -305,7 +305,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
@ -318,7 +318,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
||||
@ -332,7 +332,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatCapacitySolid
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatCapacitySolid
|
||||
*
|
||||
* For this problem, we assume that the solid phase of the porous
|
||||
* medium is granite.
|
||||
@ -346,7 +346,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatConductionParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatConductionParams
|
||||
*/
|
||||
template <class Context>
|
||||
const HeatConductionLawParams &
|
@ -165,7 +165,7 @@ public:
|
||||
{ return "outflow"; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*
|
||||
* This problem assumes a temperature.
|
||||
*/
|
||||
@ -174,7 +174,7 @@ public:
|
||||
{ return temperature_; } // in [K]
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*
|
||||
* This problem uses a constant intrinsic permeability.
|
||||
*/
|
||||
@ -184,7 +184,7 @@ public:
|
||||
{ return perm_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*
|
||||
* This problem uses a constant porosity.
|
||||
*/
|
@ -91,8 +91,11 @@ public:
|
||||
SET_PROP(PowerInjectionBaseProblem, MaterialLaw)
|
||||
{
|
||||
private:
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
||||
enum { wPhaseIdx = FluidSystem::wPhaseIdx };
|
||||
enum { nPhaseIdx = FluidSystem::nPhaseIdx };
|
||||
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef Opm::TwoPhaseMaterialTraits<Scalar,
|
||||
/*wettingPhaseIdx=*/FluidSystem::wPhaseIdx,
|
||||
/*nonWettingPhaseIdx=*/FluidSystem::nPhaseIdx>
|
||||
@ -226,7 +229,7 @@ public:
|
||||
std::ostringstream oss;
|
||||
oss << "powerinjection_";
|
||||
if (std::is_same<typename GET_PROP_TYPE(TypeTag, VelocityModule),
|
||||
Ewoms::VcfvDarcyVelocityModule<TypeTag> >::value)
|
||||
Ewoms::DarcyVelocityModule<TypeTag> >::value)
|
||||
oss << "darcy";
|
||||
else
|
||||
oss << "forchheimer";
|
||||
@ -255,7 +258,7 @@ public:
|
||||
//! \{
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
@ -271,14 +274,14 @@ public:
|
||||
{ return 0.3866; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return 0.558; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
||||
@ -286,7 +289,7 @@ public:
|
||||
{ return materialParams_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar temperature(const Context &context, int spaceIdx, int timeIdx) const
|
@ -52,8 +52,6 @@ namespace Properties {
|
||||
|
||||
NEW_TYPE_TAG(ReservoirBaseProblem);
|
||||
|
||||
// Problem specific properties:
|
||||
|
||||
// Maximum depth of the reservoir
|
||||
NEW_PROP_TAG(MaxDepth);
|
||||
// The temperature inside the reservoir
|
||||
@ -112,8 +110,7 @@ SET_SCALAR_PROP(ReservoirBaseProblem, InitialTimeStepSize, 10);
|
||||
|
||||
// The default DGF file to load
|
||||
SET_STRING_PROP(ReservoirBaseProblem, GridFile, "grids/reservoir.dgf");
|
||||
} // namespace Properties
|
||||
} // namespace Opm
|
||||
}} // namespace Properties, Opm
|
||||
|
||||
namespace Ewoms {
|
||||
/*!
|
||||
@ -295,7 +292,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::registerParameters
|
||||
* \copydoc FvBaseMultiPhaseProblem::registerParameters
|
||||
*/
|
||||
static void registerParameters()
|
||||
{
|
||||
@ -311,7 +308,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*
|
||||
* For this problem, a layer with high permability is located
|
||||
* above one with low permeability.
|
||||
@ -327,7 +324,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
@ -339,7 +336,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
||||
@ -363,7 +360,7 @@ public:
|
||||
{ return name_; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*
|
||||
* The black-oil model assumes constant temperature to define its
|
||||
* parameters. Although temperature is thus not really used by the
|
||||
@ -409,14 +406,8 @@ public:
|
||||
* the whole domain.
|
||||
*/
|
||||
template <class Context>
|
||||
void initial(PrimaryVariables &values, const Context &context, int spaceIdx,
|
||||
int timeIdx) const
|
||||
{
|
||||
//////
|
||||
// set the primary variables
|
||||
//////
|
||||
values.assignNaive(initialFluidState_);
|
||||
}
|
||||
void initial(PrimaryVariables &values, const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ values.assignNaive(initialFluidState_); }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvProblem::constraints
|
@ -2,7 +2,6 @@
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2008-2013 by Andreas Lauser
|
||||
Copyright (C) 2009 by Melanie Darcis
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
@ -49,7 +48,7 @@ class RichardsLensProblem;
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(RichardsLensProblem, VcfvRichards);
|
||||
NEW_TYPE_TAG(RichardsLensProblem, Richards);
|
||||
|
||||
// Use 2d YaspGrid
|
||||
SET_TYPE_PROP(RichardsLensProblem, Grid, Dune::YaspGrid<2>);
|
||||
@ -74,8 +73,11 @@ public:
|
||||
SET_PROP(RichardsLensProblem, MaterialLaw)
|
||||
{
|
||||
private:
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
||||
enum { wPhaseIdx = FluidSystem::wPhaseIdx };
|
||||
enum { nPhaseIdx = FluidSystem::nPhaseIdx };
|
||||
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef Opm::TwoPhaseMaterialTraits<Scalar,
|
||||
/*wettingPhaseIdx=*/FluidSystem::wPhaseIdx,
|
||||
/*nonWettingPhaseIdx=*/FluidSystem::nPhaseIdx>
|
||||
@ -234,14 +236,14 @@ public:
|
||||
{ return "lens_richards"; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::temperature
|
||||
* \copydoc FvBaseMultiPhaseProblem::temperature
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar temperature(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return 273.15 + 10; } // -> 10°C
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
@ -254,14 +256,14 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ return 0.4; }
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
@ -43,7 +43,7 @@ namespace Opm {
|
||||
// Specify the properties for the stokes2c problem
|
||||
//////////
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(Stokes2cTestProblem, INHERITS_FROM(VcfvStokes));
|
||||
NEW_TYPE_TAG(Stokes2cTestProblem, INHERITS_FROM(StokesModel));
|
||||
|
||||
// Set the grid type
|
||||
SET_TYPE_PROP(Stokes2cTestProblem, Grid, Dune::YaspGrid<2>);
|
||||
@ -78,7 +78,7 @@ SET_STRING_PROP(Stokes2cTestProblem, GridFile, "grids/test_stokes2c.dgf");
|
||||
|
||||
namespace Ewoms {
|
||||
/*!
|
||||
* \ingroup VcfvStokes2cModel
|
||||
* \ingroup Stokes2cModel
|
||||
* \ingroup VcfvTestProblems
|
||||
*
|
||||
* \brief Stokes transport problem with humid air flowing from the
|
@ -20,7 +20,7 @@
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
* \copydoc Ewoms::StokesNITestProblem
|
||||
* \copydoc Ewoms::StokesNiTestProblem
|
||||
*/
|
||||
#ifndef EWOMS_STOKES_NI_TEST_PROBLEM_HH
|
||||
#define EWOMS_STOKES_NI_TEST_PROBLEM_HH
|
||||
@ -36,53 +36,53 @@
|
||||
|
||||
namespace Ewoms {
|
||||
template <class TypeTag>
|
||||
class StokesNITestProblem;
|
||||
class StokesNiTestProblem;
|
||||
}
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(StokesNITestProblem, INHERITS_FROM(VcfvStokes));
|
||||
NEW_TYPE_TAG(StokesNiTestProblem, INHERITS_FROM(StokesModel));
|
||||
|
||||
// Set the grid type
|
||||
SET_TYPE_PROP(StokesNITestProblem, Grid, Dune::YaspGrid<2>);
|
||||
SET_TYPE_PROP(StokesNiTestProblem, Grid, Dune::YaspGrid<2>);
|
||||
|
||||
// Set the problem property
|
||||
SET_TYPE_PROP(StokesNITestProblem, Problem, Ewoms::StokesNITestProblem<TypeTag>);
|
||||
SET_TYPE_PROP(StokesNiTestProblem, Problem, Ewoms::StokesNiTestProblem<TypeTag>);
|
||||
|
||||
//! Select the fluid system
|
||||
SET_TYPE_PROP(StokesNITestProblem, FluidSystem,
|
||||
SET_TYPE_PROP(StokesNiTestProblem, FluidSystem,
|
||||
Opm::FluidSystems::H2OAir<typename GET_PROP_TYPE(TypeTag, Scalar)>);
|
||||
|
||||
//! Select the phase to be considered
|
||||
SET_INT_PROP(StokesNITestProblem, StokesPhaseIndex,
|
||||
SET_INT_PROP(StokesNiTestProblem, StokesPhaseIndex,
|
||||
GET_PROP_TYPE(TypeTag, FluidSystem)::gPhaseIdx);
|
||||
|
||||
// Enable gravity
|
||||
SET_BOOL_PROP(StokesNITestProblem, EnableGravity, true);
|
||||
SET_BOOL_PROP(StokesNiTestProblem, EnableGravity, true);
|
||||
|
||||
// Enable the energy equation
|
||||
SET_BOOL_PROP(StokesNITestProblem, EnableEnergy, true);
|
||||
SET_BOOL_PROP(StokesNiTestProblem, EnableEnergy, true);
|
||||
|
||||
// Enable constraints
|
||||
SET_BOOL_PROP(StokesNITestProblem, EnableConstraints, true);
|
||||
SET_BOOL_PROP(StokesNiTestProblem, EnableConstraints, true);
|
||||
|
||||
// Default simulation end time [s]
|
||||
SET_SCALAR_PROP(StokesNITestProblem, EndTime, 3.0);
|
||||
SET_SCALAR_PROP(StokesNiTestProblem, EndTime, 3.0);
|
||||
|
||||
// Default initial time step size [s]
|
||||
SET_SCALAR_PROP(StokesNITestProblem, InitialTimeStepSize, 0.1);
|
||||
SET_SCALAR_PROP(StokesNiTestProblem, InitialTimeStepSize, 0.1);
|
||||
|
||||
// Default grid file to load
|
||||
SET_STRING_PROP(StokesNITestProblem, GridFile, "grids/test_stokes2cni.dgf");
|
||||
SET_STRING_PROP(StokesNiTestProblem, GridFile, "grids/test_stokes2cni.dgf");
|
||||
} // namespace Properties
|
||||
} // namespace Opm
|
||||
|
||||
namespace Ewoms {
|
||||
/*!
|
||||
* \ingroup VcfvStokesNIModel
|
||||
* \ingroup StokesNiModel
|
||||
* \ingroup VcfvTestProblems
|
||||
* \brief StokesNI problem with air (N2) flowing
|
||||
* from the left to the right.
|
||||
* \brief Non-isothermal test problem for the Stokes model with a gas
|
||||
* (N2) flowing from the left to the right.
|
||||
*
|
||||
* The domain of this problem is 1m times 1m. The upper and the lower
|
||||
* boundaries are fixed to the initial condition by means of
|
||||
@ -90,7 +90,7 @@ namespace Ewoms {
|
||||
* conditions.
|
||||
*/
|
||||
template <class TypeTag>
|
||||
class StokesNITestProblem : public GET_PROP_TYPE(TypeTag, BaseProblem)
|
||||
class StokesNiTestProblem : public GET_PROP_TYPE(TypeTag, BaseProblem)
|
||||
{
|
||||
typedef typename GET_PROP_TYPE(TypeTag, BaseProblem) ParentType;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView;
|
||||
@ -131,7 +131,7 @@ public:
|
||||
/*!
|
||||
* \copydoc Doxygen::defaultProblemConstructor
|
||||
*/
|
||||
StokesNITestProblem(TimeManager &timeManager)
|
||||
StokesNiTestProblem(TimeManager &timeManager)
|
||||
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
|
||||
: ParentType(timeManager,
|
||||
GET_PROP_TYPE(TypeTag, GridCreator)::grid().leafGridView())
|
@ -44,7 +44,7 @@ class StokesTestProblem;
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(StokesTestProblem, INHERITS_FROM(VcfvStokes));
|
||||
NEW_TYPE_TAG(StokesTestProblem, INHERITS_FROM(StokesModel));
|
||||
|
||||
// Set the grid type
|
||||
SET_TYPE_PROP(StokesTestProblem, Grid, Dune::YaspGrid<2>);
|
||||
@ -82,7 +82,7 @@ SET_STRING_PROP(StokesTestProblem, GridFile, "grids/test_stokes.dgf");
|
||||
|
||||
namespace Ewoms {
|
||||
/*!
|
||||
* \ingroup VcfvStokesModel
|
||||
* \ingroup StokesModel
|
||||
* \ingroup VcfvTestProblems
|
||||
*
|
||||
* \brief Stokes flow problem with nitrogen (\f$N_2\f$) flowing
|
@ -40,7 +40,6 @@
|
||||
|
||||
#include <dune/grid/yaspgrid.hh>
|
||||
|
||||
#include <dune/common/version.hh>
|
||||
#include <dune/common/fvector.hh>
|
||||
#include <dune/common/fmatrix.hh>
|
||||
|
||||
@ -70,8 +69,7 @@ private:
|
||||
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
||||
typedef Opm::TwoPhaseMaterialTraits<Scalar,
|
||||
/*wettingPhaseIdx=*/FluidSystem::lPhaseIdx,
|
||||
/*nonWettingPhaseIdx=*/FluidSystem::gPhaseIdx>
|
||||
Traits;
|
||||
/*nonWettingPhaseIdx=*/FluidSystem::gPhaseIdx> Traits;
|
||||
|
||||
// define the material law which is parameterized by effective
|
||||
// saturations
|
||||
@ -152,8 +150,9 @@ namespace Ewoms {
|
||||
* saturation of zero and a geothermal temperature gradient of 0.03
|
||||
* K/m.
|
||||
*/
|
||||
template <class TypeTag>
|
||||
class WaterAirProblem : public GET_PROP_TYPE(TypeTag, BaseProblem)
|
||||
template <class TypeTag >
|
||||
class WaterAirProblem
|
||||
: public GET_PROP_TYPE(TypeTag, BaseProblem)
|
||||
{
|
||||
typedef typename GET_PROP_TYPE(TypeTag, BaseProblem) ParentType;
|
||||
|
||||
@ -164,30 +163,31 @@ class WaterAirProblem : public GET_PROP_TYPE(TypeTag, BaseProblem)
|
||||
// copy some indices for convenience
|
||||
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices;
|
||||
enum { numPhases = FluidSystem::numPhases };
|
||||
enum {
|
||||
numPhases = FluidSystem::numPhases,
|
||||
|
||||
// energy related indices
|
||||
enum { temperatureIdx = Indices::temperatureIdx };
|
||||
enum { energyEqIdx = Indices::energyEqIdx };
|
||||
// energy related indices
|
||||
temperatureIdx = Indices::temperatureIdx,
|
||||
energyEqIdx = Indices::energyEqIdx,
|
||||
|
||||
// component indices
|
||||
enum { H2OIdx = FluidSystem::H2OIdx };
|
||||
enum { AirIdx = FluidSystem::AirIdx };
|
||||
// component indices
|
||||
H2OIdx = FluidSystem::H2OIdx,
|
||||
AirIdx = FluidSystem::AirIdx,
|
||||
|
||||
// phase indices
|
||||
enum { lPhaseIdx = FluidSystem::lPhaseIdx };
|
||||
enum { gPhaseIdx = FluidSystem::gPhaseIdx };
|
||||
// phase indices
|
||||
lPhaseIdx = FluidSystem::lPhaseIdx,
|
||||
gPhaseIdx = FluidSystem::gPhaseIdx,
|
||||
|
||||
// equation indices
|
||||
enum { conti0EqIdx = Indices::conti0EqIdx };
|
||||
// equation indices
|
||||
conti0EqIdx = Indices::conti0EqIdx,
|
||||
|
||||
// Grid and world dimension
|
||||
enum { dim = GridView::dimension };
|
||||
enum { dimWorld = GridView::dimensionworld };
|
||||
// Grid and world dimension
|
||||
dim = GridView::dimension,
|
||||
dimWorld = GridView::dimensionworld
|
||||
};
|
||||
|
||||
typedef typename GET_PROP_TYPE(TypeTag, RateVector) RateVector;
|
||||
typedef typename GET_PROP_TYPE(TypeTag,
|
||||
BoundaryRateVector) BoundaryRateVector;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, BoundaryRateVector) BoundaryRateVector;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, PrimaryVariables) PrimaryVariables;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Constraints) Constraints;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, TimeManager) TimeManager;
|
||||
@ -196,8 +196,7 @@ class WaterAirProblem : public GET_PROP_TYPE(TypeTag, BaseProblem)
|
||||
typedef typename GET_PROP_TYPE(TypeTag, MaterialLawParams) MaterialLawParams;
|
||||
|
||||
typedef typename GET_PROP_TYPE(TypeTag, HeatConductionLaw) HeatConductionLaw;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, HeatConductionLawParams)
|
||||
HeatConductionLawParams;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, HeatConductionLawParams) HeatConductionLawParams;
|
||||
|
||||
typedef typename GridView::ctype CoordScalar;
|
||||
typedef Dune::FieldVector<CoordScalar, dimWorld> GlobalPosition;
|
||||
@ -209,13 +208,7 @@ public:
|
||||
* \copydoc Doxygen::defaultProblemConstructor
|
||||
*/
|
||||
WaterAirProblem(TimeManager &timeManager)
|
||||
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
|
||||
: ParentType(timeManager,
|
||||
GET_PROP_TYPE(TypeTag, GridCreator)::grid().leafGridView())
|
||||
#else
|
||||
: ParentType(timeManager,
|
||||
GET_PROP_TYPE(TypeTag, GridCreator)::grid().leafView())
|
||||
#endif
|
||||
: ParentType(timeManager, GET_PROP_TYPE(TypeTag, GridCreator)::grid().leafView())
|
||||
{
|
||||
maxDepth_ = 1000.0; // [m]
|
||||
eps_ = 1e-6;
|
||||
@ -272,14 +265,13 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::intrinsicPermeability
|
||||
* \copydoc FvBaseMultiPhaseProblem::intrinsicPermeability
|
||||
*
|
||||
* In this problem, the upper part of the domain is sightly less
|
||||
* permeable than the lower one.
|
||||
*/
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx,
|
||||
int timeIdx) const
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{
|
||||
const GlobalPosition &pos = context.pos(spaceIdx, timeIdx);
|
||||
if (isFineMaterial_(pos))
|
||||
@ -288,7 +280,7 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::porosity
|
||||
* \copydoc FvBaseMultiPhaseProblem::porosity
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx, int timeIdx) const
|
||||
@ -301,11 +293,10 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::materialLawParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::materialLawParams
|
||||
*/
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(const Context &context,
|
||||
int spaceIdx, int timeIdx) const
|
||||
const MaterialLawParams& materialLawParams(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{
|
||||
const GlobalPosition &pos = context.pos(spaceIdx, timeIdx);
|
||||
if (isFineMaterial_(pos))
|
||||
@ -315,23 +306,23 @@ public:
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatCapacitySolid
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatCapacitySolid
|
||||
*
|
||||
* In this case, we assume the rock-matrix to be granite.
|
||||
*/
|
||||
template <class Context>
|
||||
Scalar heatCapacitySolid(const Context &context, int spaceIdx,
|
||||
int timeIdx) const
|
||||
Scalar heatCapacitySolid(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{
|
||||
return 790 // specific heat capacity of granite [J / (kg K)]
|
||||
* 2700; // density of granite [kg/m^3]
|
||||
return
|
||||
790 // specific heat capacity of granite [J / (kg K)]
|
||||
* 2700; // density of granite [kg/m^3]
|
||||
}
|
||||
|
||||
/*!
|
||||
* \copydoc VcfvMultiPhaseProblem::heatConductionParams
|
||||
* \copydoc FvBaseMultiPhaseProblem::heatConductionParams
|
||||
*/
|
||||
template <class Context>
|
||||
const HeatConductionLawParams &
|
||||
const HeatConductionLawParams&
|
||||
heatConductionParams(const Context &context, int spaceIdx, int timeIdx) const
|
||||
{
|
||||
const GlobalPosition &pos = context.pos(spaceIdx, timeIdx);
|
||||
@ -356,12 +347,15 @@ public:
|
||||
* right boundaries of the domain.
|
||||
*/
|
||||
template <class Context>
|
||||
void boundary(BoundaryRateVector &values, const Context &context,
|
||||
void boundary(BoundaryRateVector &values,
|
||||
const Context &context,
|
||||
int spaceIdx, int timeIdx) const
|
||||
{
|
||||
const auto &pos = context.cvCenter(spaceIdx, timeIdx);
|
||||
assert(onLeftBoundary_(pos) || onLowerBoundary_(pos)
|
||||
|| onRightBoundary_(pos) || onUpperBoundary_(pos));
|
||||
assert(onLeftBoundary_(pos) ||
|
||||
onLowerBoundary_(pos) ||
|
||||
onRightBoundary_(pos) ||
|
||||
onUpperBoundary_(pos));
|
||||
|
||||
if (onInlet_(pos)) {
|
||||
RateVector massRate(0.0);
|
||||
@ -371,6 +365,8 @@ public:
|
||||
values.setMassRate(massRate);
|
||||
}
|
||||
else if (onLeftBoundary_(pos) || onRightBoundary_(pos)) {
|
||||
//int globalIdx = context.elementContext().globalSpaceIndex(context.insideScvIndex(spaceIdx,timeIdx), timeIdx);
|
||||
|
||||
Opm::CompositionalFluidState<Scalar, FluidSystem> fs;
|
||||
initialFluidState_(fs, context, spaceIdx, timeIdx);
|
||||
|
||||
@ -396,10 +392,9 @@ public:
|
||||
* liquid water and assume hydrostatic pressure.
|
||||
*/
|
||||
template <class Context>
|
||||
void initial(PrimaryVariables &values, const Context &context, int spaceIdx,
|
||||
int timeIdx) const
|
||||
void initial(PrimaryVariables &values, const Context &context, int spaceIdx, int timeIdx) const
|
||||
{
|
||||
// int globalIdx = context.globalSpaceIndex(spaceIdx, timeIdx);
|
||||
//int globalIdx = context.globalSpaceIndex(spaceIdx, timeIdx);
|
||||
|
||||
Opm::CompositionalFluidState<Scalar, FluidSystem> fs;
|
||||
initialFluidState_(fs, context, spaceIdx, timeIdx);
|
||||
@ -415,14 +410,14 @@ public:
|
||||
* of the finite-volumes which are closest to the inlet constant.
|
||||
*/
|
||||
template <class Context>
|
||||
void constraints(Constraints &constraints, const Context &context,
|
||||
void constraints(Constraints &constraints,
|
||||
const Context &context,
|
||||
int spaceIdx, int timeIdx) const
|
||||
{
|
||||
const auto &pos = context.pos(spaceIdx, timeIdx);
|
||||
|
||||
if (onInlet_(pos)) {
|
||||
constraints.setConstraint(temperatureIdx, energyEqIdx, 380);
|
||||
;
|
||||
constraints.setConstraint(temperatureIdx, energyEqIdx, 380);;
|
||||
}
|
||||
}
|
||||
|
||||
@ -433,8 +428,8 @@ public:
|
||||
* everywhere.
|
||||
*/
|
||||
template <class Context>
|
||||
void source(RateVector &rate, const Context &context, int spaceIdx,
|
||||
int timeIdx) const
|
||||
void source(RateVector &rate,
|
||||
const Context &context, int spaceIdx, int timeIdx) const
|
||||
{ rate = 0; }
|
||||
|
||||
//! \}
|
||||
@ -459,13 +454,12 @@ private:
|
||||
{ return (20 < pos[0]) && (pos[0] < 30) && (pos[1] < 30); }
|
||||
|
||||
template <class Context, class FluidState>
|
||||
void initialFluidState_(FluidState &fs, const Context &context,
|
||||
int spaceIdx, int timeIdx) const
|
||||
void initialFluidState_(FluidState &fs, const Context &context, int spaceIdx, int timeIdx) const
|
||||
{
|
||||
const GlobalPosition &pos = context.pos(spaceIdx, timeIdx);
|
||||
|
||||
Scalar densityW = 1000.0;
|
||||
fs.setPressure(lPhaseIdx, 1e5 + (maxDepth_ - pos[1]) * densityW * 9.81);
|
||||
fs.setPressure(lPhaseIdx, 1e5 + (maxDepth_ - pos[1])*densityW*9.81);
|
||||
fs.setSaturation(lPhaseIdx, 1.0);
|
||||
fs.setMoleFraction(lPhaseIdx, H2OIdx, 1.0);
|
||||
fs.setMoleFraction(lPhaseIdx, AirIdx, 0.0);
|
||||
@ -473,20 +467,18 @@ private:
|
||||
if (inHighTemperatureRegion_(pos))
|
||||
fs.setTemperature(380);
|
||||
else
|
||||
fs.setTemperature(283.0 + (maxDepth_ - pos[1]) * 0.03);
|
||||
fs.setTemperature(283.0 + (maxDepth_ - pos[1])*0.03);
|
||||
|
||||
// set the gas saturation and pressure
|
||||
fs.setSaturation(gPhaseIdx, 0);
|
||||
Scalar pc[numPhases];
|
||||
const auto &matParams = materialLawParams(context, spaceIdx, timeIdx);
|
||||
MaterialLaw::capillaryPressures(pc, matParams, fs);
|
||||
fs.setPressure(gPhaseIdx, fs.pressure(lPhaseIdx)
|
||||
+ (pc[gPhaseIdx] - pc[lPhaseIdx]));
|
||||
fs.setPressure(gPhaseIdx, fs.pressure(lPhaseIdx) + (pc[gPhaseIdx] - pc[lPhaseIdx]));
|
||||
|
||||
typename FluidSystem::ParameterCache paramCache;
|
||||
typedef Opm::ComputeFromReferencePhase<Scalar, FluidSystem> CFRP;
|
||||
CFRP::solve(fs, paramCache, lPhaseIdx, /*setViscosity=*/false,
|
||||
/*setEnthalpy=*/true);
|
||||
CFRP::solve(fs, paramCache, lPhaseIdx, /*setViscosity=*/false, /*setEnthalpy=*/true);
|
||||
}
|
||||
|
||||
void computeHeatCondParams_(HeatConductionLawParams ¶ms, Scalar poro)
|
||||
@ -510,13 +502,12 @@ private:
|
||||
for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) {
|
||||
Scalar lambdaSaturated;
|
||||
if (FluidSystem::isLiquid(phaseIdx)) {
|
||||
Scalar lambdaFluid
|
||||
= FluidSystem::thermalConductivity(fs, paramCache, phaseIdx);
|
||||
lambdaSaturated = std::pow(lambdaGranite, (1 - poro))
|
||||
+ std::pow(lambdaFluid, poro);
|
||||
Scalar lambdaFluid =
|
||||
FluidSystem::thermalConductivity(fs, paramCache, phaseIdx);
|
||||
lambdaSaturated = std::pow(lambdaGranite, (1-poro)) + std::pow(lambdaFluid, poro);
|
||||
}
|
||||
else
|
||||
lambdaSaturated = std::pow(lambdaGranite, (1 - poro));
|
||||
lambdaSaturated = std::pow(lambdaGranite, (1-poro));
|
||||
|
||||
params.setFullySaturatedLambda(phaseIdx, lambdaSaturated);
|
||||
if (!FluidSystem::isLiquid(phaseIdx))
|
||||
@ -525,7 +516,7 @@ private:
|
||||
}
|
||||
|
||||
bool isFineMaterial_(const GlobalPosition &pos) const
|
||||
{ return pos[dim - 1] > layerBottom_; }
|
||||
{ return pos[dim-1] > layerBottom_; }
|
||||
|
||||
DimMatrix fineK_;
|
||||
DimMatrix coarseK_;
|
@ -21,17 +21,15 @@
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \brief Main file of the tutorial for a fully coupled twophase VCVF
|
||||
*discretization.
|
||||
* \brief Main file of the tutorial problem using the model which assumes
|
||||
* immisciblility.
|
||||
*/
|
||||
#include "config.h" /*@\label{tutorial-coupled:include-begin}@*/
|
||||
#include <ewoms/common/start.hh> /*@\label{tutorial-coupled:include-end}@*/
|
||||
#include "tutorial1problem.hh" /*@\label{tutorial-coupled:include-problem-header}@*/
|
||||
#include "config.h" /*@\label{tutorial1:include-begin}@*/
|
||||
#include <ewoms/common/start.hh> /*@\label{tutorial1:include-end}@*/
|
||||
#include "tutorial1problem.hh" /*@\label{tutorial1:include-problem-header}@*/
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
typedef TTAG(
|
||||
TutorialProblemCoupled) TypeTag; /*@\label{tutorial-coupled:set-type-tag}@*/
|
||||
return Ewoms::start<TypeTag>(argc,
|
||||
argv); /*@\label{tutorial-coupled:call-start}@*/
|
||||
typedef TTAG(Tutorial1Problem) TypeTag; /*@\label{tutorial1:set-type-tag}@*/
|
||||
return Ewoms::start<TypeTag>(argc, argv); /*@\label{tutorial1:call-start}@*/
|
||||
}
|
||||
|
@ -23,31 +23,29 @@
|
||||
/*!
|
||||
* \file
|
||||
*
|
||||
* \copydoc Ewoms::TutorialProblemCoupled
|
||||
* \copydoc Ewoms::Tutorial1Problem
|
||||
*/
|
||||
#ifndef EWOMS_TUTORIAL1_PROBLEM_HH // guardian macro
|
||||
// /*@\label{tutorial-coupled:guardian1}@*/
|
||||
#define EWOMS_TUTORIAL1_PROBLEM_HH // guardian macro
|
||||
// /*@\label{tutorial-coupled:guardian2}@*/
|
||||
#ifndef EWOMS_TUTORIAL1_PROBLEM_HH /*@\label{tutorial1:guardian1}@*/
|
||||
#define EWOMS_TUTORIAL1_PROBLEM_HH /*@\label{tutorial1:guardian2}@*/
|
||||
|
||||
// The numerical model
|
||||
#include <ewoms/models/immiscible/immisciblemodel.hh>
|
||||
|
||||
// The spatial discretization (VCFV == Vertex-Centered Finite Volumes)
|
||||
#include <ewoms/disc/vcfv/vcfvdiscretization.hh> /*@\label{tutorial1:include-discretization}@*/
|
||||
|
||||
// The chemical species that are used
|
||||
#include <opm/material/components/SimpleH2O.hpp>
|
||||
#include <opm/material/components/Lnapl.hpp>
|
||||
|
||||
// Headers required for the capillary pressure law
|
||||
#include \
|
||||
<opm/material/fluidmatrixinteractions/RegularizedBrooksCorey.hpp> /*@\label{tutorial-coupled:rawLawInclude}@*/
|
||||
#include <opm/material/fluidmatrixinteractions/RegularizedBrooksCorey.hpp> /*@\label{tutorial1:rawLawInclude}@*/
|
||||
#include <opm/material/fluidmatrixinteractions/EffToAbsLaw.hpp>
|
||||
#include <opm/material/fluidmatrixinteractions/MaterialTraits.hpp>
|
||||
|
||||
// For the DUNE grid
|
||||
#include \
|
||||
<dune/grid/yaspgrid.hh> /*@\label{tutorial-coupled:include-grid-manager}@*/
|
||||
#include \
|
||||
<ewoms/io/cubegridcreator.hh> /*@\label{tutorial-coupled:include-grid-creator}@*/
|
||||
#include <dune/grid/yaspgrid.hh> /*@\label{tutorial1:include-grid-manager}@*/
|
||||
#include <ewoms/io/cubegridcreator.hh> /*@\label{tutorial1:include-grid-creator}@*/
|
||||
|
||||
// For Dune::FieldMatrix
|
||||
#include <dune/common/fmatrix.hh>
|
||||
@ -56,99 +54,88 @@
|
||||
namespace Ewoms {
|
||||
// forward declaration of the problem class
|
||||
template <class TypeTag>
|
||||
class TutorialProblemCoupled;
|
||||
class Tutorial1Problem;
|
||||
}
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
// Create a new type tag for the problem
|
||||
NEW_TYPE_TAG(TutorialProblemCoupled,
|
||||
INHERITS_FROM(VcfvImmiscibleTwoPhase)); /*@\label
|
||||
{tutorial-coupled:create-type-tag}@*/
|
||||
NEW_TYPE_TAG(Tutorial1Problem, INHERITS_FROM(ImmiscibleTwoPhaseModel)); /*@\label{tutorial1:create-type-tag}@*/
|
||||
|
||||
// Select the vertex centered finite volume method as spatial discretization
|
||||
SET_TAG_PROP(Tutorial1Problem, SpatialDiscretizationSplice,
|
||||
VcfvDiscretization); /*@\label{tutorial1:set-spatial-discretization}@*/
|
||||
|
||||
// Set the "Problem" property
|
||||
SET_PROP(TutorialProblemCoupled,
|
||||
Problem) /*@\label{tutorial-coupled:set-problem}@*/
|
||||
{
|
||||
typedef Ewoms::TutorialProblemCoupled<TypeTag> type;
|
||||
};
|
||||
SET_TYPE_PROP(Tutorial1Problem, Problem,
|
||||
Ewoms::Tutorial1Problem<TypeTag>); /*@\label{tutorial1:set-problem}@*/
|
||||
|
||||
// Set grid and the grid creator to be used
|
||||
SET_TYPE_PROP(TutorialProblemCoupled, Grid,
|
||||
Dune::YaspGrid</*dim=*/2>); /*@\label{tutorial-coupled:set-grid}@*/
|
||||
SET_TYPE_PROP(TutorialProblemCoupled, GridCreator,
|
||||
Ewoms::CubeGridCreator<TypeTag>); /*@\label{tutorial-coupled:set-gridcreator}@*/
|
||||
SET_TYPE_PROP(Tutorial1Problem, Grid, Dune::YaspGrid</*dim=*/2>); /*@\label{tutorial1:set-grid}@*/
|
||||
SET_TYPE_PROP(Tutorial1Problem, GridCreator, Ewoms::CubeGridCreator<TypeTag>); /*@\label{tutorial1:set-gridcreator}@*/
|
||||
|
||||
// Set the wetting phase /*@\label{tutorial-coupled:2p-system-start}@*/
|
||||
SET_TYPE_PROP(
|
||||
TutorialProblemCoupled,
|
||||
WettingPhase, /*@\label{tutorial-coupled:wettingPhase}@*/
|
||||
Opm::LiquidPhase<typename GET_PROP_TYPE(TypeTag, Scalar),
|
||||
Opm::SimpleH2O<typename GET_PROP_TYPE(TypeTag, Scalar)> >);
|
||||
// Set the wetting phase /*@\label{tutorial1:2p-system-start}@*/
|
||||
SET_TYPE_PROP(Tutorial1Problem,
|
||||
WettingPhase, /*@\label{tutorial1:wettingPhase}@*/
|
||||
Opm::LiquidPhase<typename GET_PROP_TYPE(TypeTag, Scalar),
|
||||
Opm::SimpleH2O<typename GET_PROP_TYPE(TypeTag, Scalar)> >);
|
||||
|
||||
// Set the non-wetting phase
|
||||
SET_TYPE_PROP(
|
||||
TutorialProblemCoupled,
|
||||
NonwettingPhase, /*@\label{tutorial-coupled:nonwettingPhase}@*/
|
||||
Opm::LiquidPhase<typename GET_PROP_TYPE(TypeTag, Scalar),
|
||||
Opm::LNAPL<typename GET_PROP_TYPE(TypeTag, Scalar)> >); /*@\label
|
||||
{tutorial-coupled:2p-system-end}@*/
|
||||
SET_TYPE_PROP(Tutorial1Problem,
|
||||
NonwettingPhase, /*@\label{tutorial1:nonwettingPhase}@*/
|
||||
Opm::LiquidPhase<typename GET_PROP_TYPE(TypeTag, Scalar),
|
||||
Opm::LNAPL<typename GET_PROP_TYPE(TypeTag, Scalar)> >); /*@\label{tutorial1:2p-system-end}@*/
|
||||
|
||||
// Set the material law
|
||||
SET_PROP(TutorialProblemCoupled, MaterialLaw)
|
||||
SET_PROP(Tutorial1Problem, MaterialLaw)
|
||||
{
|
||||
private:
|
||||
// create a class holding the necessary information for a
|
||||
// two-phase capillary pressure law
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
||||
enum { wPhaseIdx = FluidSystem::wPhaseIdx };
|
||||
enum { nPhaseIdx = FluidSystem::nPhaseIdx };
|
||||
typedef Opm::TwoPhaseMaterialTraits<Scalar,
|
||||
/*wettingPhaseIdx=*/FluidSystem::wPhaseIdx,
|
||||
/*nonWettingPhaseIdx=*/FluidSystem::nPhaseIdx>
|
||||
Traits;
|
||||
/*nonWettingPhaseIdx=*/FluidSystem::nPhaseIdx> Traits;
|
||||
|
||||
// define the material law which is parameterized by effective
|
||||
// saturations
|
||||
typedef Opm::RegularizedBrooksCorey<Traits>
|
||||
RawMaterialLaw; /*@\label{tutorial-coupled:rawlaw}@*/
|
||||
typedef Opm::RegularizedBrooksCorey<Traits> RawMaterialLaw; /*@\label{tutorial1:rawlaw}@*/
|
||||
|
||||
public:
|
||||
// Convert absolute saturations into effective ones before passing
|
||||
// it to the base capillary pressure law
|
||||
typedef Opm::EffToAbsLaw<RawMaterialLaw> type; /*@\label{tutorial-coupled:eff2abs}@*/
|
||||
typedef Opm::EffToAbsLaw<RawMaterialLaw> type; /*@\label{tutorial1:eff2abs}@*/
|
||||
};
|
||||
|
||||
// Disable gravity
|
||||
SET_BOOL_PROP(TutorialProblemCoupled, EnableGravity,
|
||||
false); /*@\label{tutorial-coupled:gravity}@*/
|
||||
SET_BOOL_PROP(Tutorial1Problem, EnableGravity, false); /*@\label{tutorial1:gravity}@*/
|
||||
|
||||
// define how long the simulation should run [s]
|
||||
// /*@\label{tutorial-coupled:default-params-begin}@*/
|
||||
SET_SCALAR_PROP(TutorialProblemCoupled, EndTime, 100e3);
|
||||
SET_SCALAR_PROP(Tutorial1Problem, EndTime, 100e3); /*@\label{tutorial1:default-params-begin}@*/
|
||||
|
||||
// define the size of the initial time step [s]
|
||||
SET_SCALAR_PROP(TutorialProblemCoupled, InitialTimeStepSize, 125.0);
|
||||
SET_SCALAR_PROP(Tutorial1Problem, InitialTimeStepSize, 125.0);
|
||||
|
||||
// define the physical size of the problem's domain [m]
|
||||
SET_SCALAR_PROP(TutorialProblemCoupled, DomainSizeX,
|
||||
300.0); /*@\label{tutorial-coupled:grid-default-params-begin}@*/
|
||||
SET_SCALAR_PROP(TutorialProblemCoupled, DomainSizeY, 60.0);
|
||||
SET_SCALAR_PROP(TutorialProblemCoupled, DomainSizeZ, 0.0);
|
||||
SET_SCALAR_PROP(Tutorial1Problem, DomainSizeX, 300.0); /*@\label{tutorial1:grid-default-params-begin}@*/
|
||||
SET_SCALAR_PROP(Tutorial1Problem, DomainSizeY, 60.0);
|
||||
SET_SCALAR_PROP(Tutorial1Problem, DomainSizeZ, 0.0);
|
||||
|
||||
// // define the number of cells used for discretizing the physical domain
|
||||
SET_INT_PROP(TutorialProblemCoupled, CellsX, 100);
|
||||
SET_INT_PROP(TutorialProblemCoupled, CellsY, 1);
|
||||
SET_INT_PROP(TutorialProblemCoupled, CellsZ,
|
||||
1); /*@\label{tutorial-coupled:default-params-end}@*/
|
||||
SET_INT_PROP(Tutorial1Problem, CellsX, 100);
|
||||
SET_INT_PROP(Tutorial1Problem, CellsY, 1);
|
||||
SET_INT_PROP(Tutorial1Problem, CellsZ, 1); /*@\label{tutorial1:default-params-end}@*/
|
||||
} // namespace Properties
|
||||
} // namespace Opm
|
||||
|
||||
namespace Ewoms {
|
||||
//! Tutorial problem using the fully-implicit immiscible model.
|
||||
//! Tutorial problem using the "immiscible" model.
|
||||
template <class TypeTag>
|
||||
class TutorialProblemCoupled
|
||||
: public GET_PROP_TYPE(TypeTag,
|
||||
BaseProblem) /*@\label{tutorial-coupled:def-problem}@*/
|
||||
class Tutorial1Problem
|
||||
: public GET_PROP_TYPE(TypeTag, BaseProblem) /*@\label{tutorial1:def-problem}@*/
|
||||
{
|
||||
typedef typename GET_PROP_TYPE(TypeTag, BaseProblem) ParentType;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
@ -164,13 +151,11 @@ class TutorialProblemCoupled
|
||||
typedef typename GET_PROP_TYPE(TypeTag, TimeManager) TimeManager;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, PrimaryVariables) PrimaryVariables;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, RateVector) RateVector;
|
||||
typedef typename GET_PROP_TYPE(TypeTag,
|
||||
BoundaryRateVector) BoundaryRateVector;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, BoundaryRateVector) BoundaryRateVector;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, MaterialLaw) MaterialLaw;
|
||||
typedef typename GET_PROP_TYPE(TypeTag, MaterialLawParams)
|
||||
MaterialLawParams; /*@\label{tutorial-coupled:matLawObjectType}@*/
|
||||
typedef typename GET_PROP_TYPE(TypeTag, MaterialLawParams) MaterialLawParams; /*@\label{tutorial1:matLawObjectType}@*/
|
||||
|
||||
// phase indices
|
||||
enum { numPhases = FluidSystem::numPhases };
|
||||
@ -183,7 +168,7 @@ class TutorialProblemCoupled
|
||||
|
||||
public:
|
||||
//! The constructor of the problem
|
||||
TutorialProblemCoupled(TimeManager &timeManager)
|
||||
Tutorial1Problem(TimeManager &timeManager)
|
||||
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
|
||||
: ParentType(timeManager,
|
||||
GET_PROP_TYPE(TypeTag, GridCreator)::grid().leafGridView()),
|
||||
@ -197,8 +182,7 @@ public:
|
||||
K_ = this->toDimMatrix_(1e-7);
|
||||
|
||||
// Parameters of the Brooks-Corey law
|
||||
materialParams_.setEntryPressure(500.0); // entry pressure [Pa]
|
||||
// /*@\label{tutorial-coupled:setLawParams}@*/
|
||||
materialParams_.setEntryPressure(500.0 /*Pa*/); /*@\label{tutorial1:setLawParams}@*/
|
||||
materialParams_.setLambda(2); // shape parameter
|
||||
|
||||
// Set the residual saturations
|
||||
@ -209,8 +193,7 @@ public:
|
||||
materialParams_.finalize();
|
||||
}
|
||||
|
||||
//! Specifies the problem name. This is used for files generated by the
|
||||
// simulation.
|
||||
//! Specifies the problem name. This is used for files generated by the simulation.
|
||||
const char *name() const
|
||||
{ return "tutorial_coupled"; }
|
||||
|
||||
@ -221,22 +204,20 @@ public:
|
||||
|
||||
//! Returns the intrinsic permeability tensor [m^2] at a position.
|
||||
template <class Context>
|
||||
const DimMatrix &intrinsicPermeability(
|
||||
const Context &context, /*@\label{tutorial-coupled:permeability}@*/
|
||||
int spaceIdx, int timeIdx) const
|
||||
const DimMatrix &intrinsicPermeability(const Context &context, /*@\label{tutorial1:permeability}@*/
|
||||
int spaceIdx, int timeIdx) const
|
||||
{ return K_; }
|
||||
|
||||
//! Defines the porosity [-] of the medium at a given position
|
||||
template <class Context>
|
||||
Scalar porosity(const Context &context, int spaceIdx,
|
||||
int timeIdx) const /*@\label{tutorial-coupled:porosity}@*/
|
||||
Scalar porosity(const Context &context,
|
||||
int spaceIdx, int timeIdx) const /*@\label{tutorial1:porosity}@*/
|
||||
{ return 0.2; }
|
||||
|
||||
//! Returns the parameter object for the material law at a given position
|
||||
template <class Context>
|
||||
const MaterialLawParams &materialLawParams(
|
||||
const Context &context, /*@\label{tutorial-coupled:matLawParams}@*/
|
||||
int spaceIdx, int timeIdx) const
|
||||
const MaterialLawParams &materialLawParams(const Context &context, /*@\label{tutorial1:matLawParams}@*/
|
||||
int spaceIdx, int timeIdx) const
|
||||
{ return materialParams_; }
|
||||
|
||||
//! Evaluates the boundary conditions.
|
||||
@ -277,8 +258,8 @@ public:
|
||||
}
|
||||
|
||||
//! Evaluates the source term for all conserved quantities at a given
|
||||
// position
|
||||
//! of the domain [kg/(m^3 * s)]. Positive values mean that mass is created.
|
||||
//! position of the domain [kg/(m^3 * s)]. Positive values mean that
|
||||
//! mass is created.
|
||||
template <class Context>
|
||||
void source(RateVector &source, const Context &context, int spaceIdx,
|
||||
int timeIdx) const
|
||||
@ -315,8 +296,8 @@ public:
|
||||
|
||||
private:
|
||||
DimMatrix K_;
|
||||
// Object that holds the values/parameters of the selected material law.
|
||||
MaterialLawParams materialParams_; /*@\label{tutorial-coupled:matParamsObject}@*/
|
||||
// Object that holds the parameters of required by the capillary pressure law.
|
||||
MaterialLawParams materialParams_; /*@\label{tutorial1:matParamsObject}@*/
|
||||
|
||||
// small epsilon value
|
||||
Scalar eps_;
|
||||
|
@ -31,11 +31,10 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(WaterAirProblem, INHERITS_FROM(VcfvPvs, WaterAirBaseProblem));
|
||||
NEW_TYPE_TAG(WaterAirProblem, INHERITS_FROM(PvsModel, WaterAirBaseProblem));
|
||||
|
||||
SET_BOOL_PROP(WaterAirProblem, EnableEnergy, true);
|
||||
}
|
||||
}
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
@ -31,10 +31,8 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(FingerProblem,
|
||||
INHERITS_FROM(VcfvImmiscibleTwoPhase, FingerBaseProblem));
|
||||
}
|
||||
}
|
||||
NEW_TYPE_TAG(FingerProblem, INHERITS_FROM(ImmiscibleTwoPhaseModel, FingerBaseProblem));
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
@ -32,7 +32,7 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(LensProblem, INHERITS_FROM(VcfvImmiscibleTwoPhase, LensBaseProblem));
|
||||
NEW_TYPE_TAG(LensProblem, INHERITS_FROM(ImmiscibleTwoPhaseModel, LensBaseProblem));
|
||||
}
|
||||
}
|
||||
|
@ -1,437 +0,0 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
Copyright (C) 2012-2013 by Andreas Lauser
|
||||
|
||||
This file is part of the Open Porous Media project (OPM).
|
||||
|
||||
OPM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OPM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*!
|
||||
* \file
|
||||
* \copydoc Ewoms::LensGridCreator
|
||||
*/
|
||||
#ifndef EWOMS_LENS_GRID_CREATOR_HH
|
||||
#define EWOMS_LENS_GRID_CREATOR_HH
|
||||
|
||||
#include <ewoms/parallel/mpihelper.hh>
|
||||
#include <opm/core/utility/PropertySystem.hpp>
|
||||
#include <ewoms/common/parametersystem.hh>
|
||||
|
||||
#if HAVE_UG
|
||||
#include <dune/grid/uggrid.hh>
|
||||
#else
|
||||
#include <dune/grid/yaspgrid.hh>
|
||||
#endif
|
||||
#include <dune/common/fvector.hh>
|
||||
#include <dune/common/version.hh>
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace Ewoms {
|
||||
// some hacky defines for the grid creator
|
||||
#define LENS_DIM 2
|
||||
#define LENS_CUBES 1
|
||||
|
||||
template <class TypeTag>
|
||||
class LensProblem;
|
||||
} // namespace Ewoms
|
||||
|
||||
//////////
|
||||
// Specify the properties for the lens problem
|
||||
//////////
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
// declare the properties required by the for the lens grid creator
|
||||
NEW_PROP_TAG(Grid);
|
||||
NEW_PROP_TAG(Scalar);
|
||||
|
||||
NEW_PROP_TAG(DomainSizeX);
|
||||
NEW_PROP_TAG(DomainSizeY);
|
||||
NEW_PROP_TAG(DomainSizeZ);
|
||||
|
||||
NEW_PROP_TAG(CellsX);
|
||||
NEW_PROP_TAG(CellsY);
|
||||
NEW_PROP_TAG(CellsZ);
|
||||
|
||||
NEW_PROP_TAG(GridGlobalRefinements);
|
||||
} // namespace Properties
|
||||
} // namespace Opm
|
||||
|
||||
namespace Ewoms {
|
||||
/*!
|
||||
* \ingroup VcfvTestProblems
|
||||
*
|
||||
* \brief Helper class for grid instantiation of the lens problem.
|
||||
*/
|
||||
#if HAVE_UG
|
||||
template <class TypeTag>
|
||||
class LensGridCreator
|
||||
{
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
|
||||
enum { dim = LENS_DIM };
|
||||
|
||||
public:
|
||||
#if LENS_CUBES
|
||||
typedef Dune::UGGrid<LENS_DIM> Grid;
|
||||
// typedef Dune::ALUGrid<LENS_DIM, LENS_DIM, Dune::cube, Dune::nonconforming>
|
||||
// Grid;
|
||||
#else
|
||||
typedef Dune::UGGrid<LENS_DIM> Grid;
|
||||
// typedef Dune::ALUGrid<LENS_DIM, LENS_DIM, Dune::simplex, Dune::nonconforming>
|
||||
// Grid;
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* \brief Register all run-time parameters for the grid creator.
|
||||
*/
|
||||
static void registerParameters()
|
||||
{
|
||||
EWOMS_REGISTER_PARAM(TypeTag, unsigned, GridGlobalRefinements,
|
||||
"The number of global refinements of the grid "
|
||||
"executed after it was loaded");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeX,
|
||||
"The size of the domain in x direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsX,
|
||||
"The number of intervalls in x direction");
|
||||
if (dim > 1) {
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeY,
|
||||
"The size of the domain in y direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsY,
|
||||
"The number of intervalls in y direction");
|
||||
}
|
||||
if (dim > 2) {
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeZ,
|
||||
"The size of the domain in z direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsZ,
|
||||
"The number of intervalls in z direction");
|
||||
}
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief Create the grid for the lens problem
|
||||
*/
|
||||
static void makeGrid()
|
||||
{
|
||||
Dune::FieldVector<int, dim> cellRes;
|
||||
Dune::FieldVector<Scalar, dim> upperRight;
|
||||
Dune::FieldVector<Scalar, dim> lowerLeft;
|
||||
|
||||
lowerLeft = 0.0;
|
||||
upperRight[0] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeX);
|
||||
upperRight[1] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeY);
|
||||
|
||||
cellRes[0] = EWOMS_GET_PARAM(TypeTag, int, CellsX);
|
||||
cellRes[1] = EWOMS_GET_PARAM(TypeTag, int, CellsY);
|
||||
if (dim == 3) {
|
||||
upperRight[2] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeZ);
|
||||
cellRes[2] = EWOMS_GET_PARAM(TypeTag, int, CellsZ);
|
||||
}
|
||||
|
||||
Dune::GridFactory<Grid> factory;
|
||||
|
||||
if (dim == 3) {
|
||||
Dune::FieldVector<double, dim> pos;
|
||||
for (int k = 0; k <= cellRes[0]; k++) {
|
||||
pos[2] = upperRight[2] * double(k) / cellRes[2];
|
||||
|
||||
for (int j = 0; j <= cellRes[1]; j++) {
|
||||
pos[1] = upperRight[1] * double(j) / cellRes[1];
|
||||
|
||||
for (int i = 0; i <= cellRes[0]; i++) {
|
||||
pos[0] = upperRight[0] * double(i) / cellRes[0];
|
||||
factory.insertVertex(pos);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
assert(dim == 2);
|
||||
Dune::FieldVector<double, dim> pos;
|
||||
for (int j = 0; j <= cellRes[1]; j++) {
|
||||
pos[1] = upperRight[1] * double(j) / cellRes[1];
|
||||
|
||||
for (int i = 0; i <= cellRes[0]; i++) {
|
||||
pos[0] = upperRight[0] * double(i) / cellRes[0];
|
||||
factory.insertVertex(pos);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = 0; i < cellRes[0]; ++i) {
|
||||
for (int j = 0; j < cellRes[1]; ++j) {
|
||||
#if LENS_CUBES
|
||||
std::vector<unsigned int> v(1 << dim);
|
||||
#else
|
||||
std::vector<unsigned int> v(dim + 1);
|
||||
#endif
|
||||
if (dim == 3) {
|
||||
int m = cellRes[0] + 1;
|
||||
int n = cellRes[1] + 1;
|
||||
for (int k = 0; k < cellRes[2]; ++k) {
|
||||
int i0 = k * m * n + j * m + i;
|
||||
int i1 = k * m * n + j * m + (i + 1);
|
||||
int i2 = k * m * n + (j + 1) * m + i;
|
||||
int i3 = k * m * n + (j + 1) * m + (i + 1);
|
||||
int i4 = (k + 1) * m * n + j * m + i;
|
||||
int i5 = (k + 1) * m * n + j * m + (i + 1);
|
||||
int i6 = (k + 1) * m * n + (j + 1) * m + i;
|
||||
int i7 = (k + 1) * m * n + (j + 1) * m + (i + 1);
|
||||
|
||||
#if LENS_CUBES
|
||||
v[0] = i0;
|
||||
v[1] = i1;
|
||||
v[2] = i2;
|
||||
v[3] = i3;
|
||||
v[4] = i4;
|
||||
v[5] = i5;
|
||||
v[6] = i6;
|
||||
v[7] = i7;
|
||||
factory.insertElement(
|
||||
Dune::GeometryType(Dune::GeometryType::cube, 3), v);
|
||||
|
||||
#else
|
||||
v[0] = i0;
|
||||
v[1] = i1;
|
||||
v[2] = i2;
|
||||
v[3] = i4;
|
||||
factory.insertElement(
|
||||
Dune::GeometryType(Dune::GeometryType::simplex, 3),
|
||||
v);
|
||||
|
||||
v[0] = i4;
|
||||
v[1] = i5;
|
||||
v[2] = i6;
|
||||
v[3] = i2;
|
||||
factory.insertElement(
|
||||
Dune::GeometryType(Dune::GeometryType::simplex, 3),
|
||||
v);
|
||||
|
||||
v[0] = i2;
|
||||
v[1] = i5;
|
||||
v[2] = i4;
|
||||
v[3] = i1;
|
||||
factory.insertElement(
|
||||
Dune::GeometryType(Dune::GeometryType::simplex, 3),
|
||||
v);
|
||||
|
||||
v[0] = i2;
|
||||
v[1] = i3;
|
||||
v[2] = i7;
|
||||
v[3] = i5;
|
||||
factory.insertElement(
|
||||
Dune::GeometryType(Dune::GeometryType::simplex, 3),
|
||||
v);
|
||||
|
||||
v[0] = i5;
|
||||
v[1] = i7;
|
||||
v[2] = i6;
|
||||
v[3] = i2;
|
||||
factory.insertElement(
|
||||
Dune::GeometryType(Dune::GeometryType::simplex, 3),
|
||||
v);
|
||||
|
||||
v[0] = i1;
|
||||
v[1] = i3;
|
||||
v[2] = i5;
|
||||
v[3] = i2;
|
||||
factory.insertElement(
|
||||
Dune::GeometryType(Dune::GeometryType::simplex, 3),
|
||||
v);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
else {
|
||||
assert(dim == 2);
|
||||
|
||||
int m = cellRes[0] + 1;
|
||||
int i0 = j * m + i;
|
||||
int i1 = j * m + (i + 1);
|
||||
int i2 = (j + 1) * m + i;
|
||||
int i3 = (j + 1) * m + (i + 1);
|
||||
#if LENS_CUBES
|
||||
v[0] = i0;
|
||||
v[1] = i1;
|
||||
v[2] = i2;
|
||||
v[3] = i3;
|
||||
factory.insertElement(
|
||||
Dune::GeometryType(Dune::GeometryType::cube, 2), v);
|
||||
#else
|
||||
v[0] = i0;
|
||||
v[1] = i1;
|
||||
v[2] = i2;
|
||||
factory.insertElement(
|
||||
Dune::GeometryType(Dune::GeometryType::simplex, 2), v);
|
||||
|
||||
v[0] = i1;
|
||||
v[1] = i3;
|
||||
v[2] = i2;
|
||||
factory.insertElement(
|
||||
Dune::GeometryType(Dune::GeometryType::simplex, 2), v);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
grid_ = factory.createGrid();
|
||||
|
||||
unsigned numRefinements
|
||||
= EWOMS_GET_PARAM(TypeTag, unsigned, GridGlobalRefinements);
|
||||
grid_->globalRefine(numRefinements);
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief Return a reference to the grid.
|
||||
*/
|
||||
static Grid &grid()
|
||||
{ return *grid_; }
|
||||
|
||||
/*!
|
||||
* \brief Distribute the grid (and attached data) over all
|
||||
* processes.
|
||||
*/
|
||||
static void loadBalance()
|
||||
{ grid_->loadBalance(); }
|
||||
|
||||
/*!
|
||||
* \brief Destroy the grid
|
||||
*
|
||||
* This is required to guarantee that the grid is deleted before
|
||||
* MPI_Comm_free is called.
|
||||
*/
|
||||
static void deleteGrid()
|
||||
{ delete grid_; }
|
||||
|
||||
private:
|
||||
static Grid *grid_;
|
||||
};
|
||||
|
||||
template <class TypeTag>
|
||||
typename LensGridCreator<TypeTag>::Grid *LensGridCreator<TypeTag>::grid_;
|
||||
|
||||
#else // ! HAVE_UG
|
||||
|
||||
template <class TypeTag>
|
||||
class LensGridCreator
|
||||
{
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
|
||||
enum { dim = LENS_DIM };
|
||||
|
||||
public:
|
||||
typedef Dune::YaspGrid<LENS_DIM> Grid;
|
||||
|
||||
/*!
|
||||
* \brief Register all run-time parameters for the grid creator.
|
||||
*/
|
||||
static void registerParameters()
|
||||
{
|
||||
EWOMS_REGISTER_PARAM(TypeTag, unsigned, GridGlobalRefinements,
|
||||
"The number of global refinements of the grid "
|
||||
"executed after it was loaded");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeX,
|
||||
"The size of the domain in x direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsX,
|
||||
"The number of intervalls in x direction");
|
||||
if (dim > 1) {
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeY,
|
||||
"The size of the domain in y direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsY,
|
||||
"The number of intervalls in y direction");
|
||||
}
|
||||
if (dim > 2) {
|
||||
EWOMS_REGISTER_PARAM(TypeTag, Scalar, DomainSizeZ,
|
||||
"The size of the domain in z direction");
|
||||
EWOMS_REGISTER_PARAM(TypeTag, int, CellsZ,
|
||||
"The number of intervalls in z direction");
|
||||
}
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief Create the grid for the lens problem
|
||||
*/
|
||||
static void makeGrid()
|
||||
{
|
||||
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
|
||||
std::bitset<LENS_DIM> isPeriodic(false);
|
||||
std::array<int, LENS_DIM> cellRes;
|
||||
#else
|
||||
Dune::FieldVector<bool, LENS_DIM> isPeriodic(false);
|
||||
Dune::FieldVector<int, LENS_DIM> cellRes;
|
||||
#endif
|
||||
|
||||
Dune::FieldVector<Scalar, LENS_DIM> upperRight;
|
||||
Dune::FieldVector<Scalar, LENS_DIM> lowerLeft;
|
||||
|
||||
grid_ = 0;
|
||||
|
||||
lowerLeft[1] = 0.0;
|
||||
upperRight[0] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeX);
|
||||
upperRight[1] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeY);
|
||||
|
||||
cellRes[0] = EWOMS_GET_PARAM(TypeTag, int, CellsX);
|
||||
cellRes[1] = EWOMS_GET_PARAM(TypeTag, int, CellsY);
|
||||
if (dim == 3) {
|
||||
upperRight[2] = EWOMS_GET_PARAM(TypeTag, Scalar, DomainSizeZ);
|
||||
cellRes[2] = EWOMS_GET_PARAM(TypeTag, int, CellsZ);
|
||||
}
|
||||
|
||||
unsigned numRefinements
|
||||
= EWOMS_GET_PARAM(TypeTag, unsigned, GridGlobalRefinements);
|
||||
|
||||
grid_ = new Dune::YaspGrid<LENS_DIM>(
|
||||
#ifdef HAVE_MPI
|
||||
/*mpiCommunicator=*/Dune::MPIHelper::getCommunicator(),
|
||||
#endif
|
||||
/*upperRightCorner=*/upperRight,
|
||||
/*numCells=*/cellRes, isPeriodic,
|
||||
/*overlap=*/1);
|
||||
grid_->globalRefine(numRefinements);
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief Return a reference to the grid.
|
||||
*/
|
||||
static Grid &grid()
|
||||
{ return *grid_; }
|
||||
|
||||
/*!
|
||||
* \brief Distribute the grid (and attached data) over all
|
||||
* processes.
|
||||
*/
|
||||
static void loadBalance()
|
||||
{ grid_->loadBalance(); }
|
||||
|
||||
/*!
|
||||
* \brief Destroy the grid
|
||||
*
|
||||
* This is required to guarantee that the grid is deleted before
|
||||
* MPI_Comm_free is called.
|
||||
*/
|
||||
static void deleteGrid()
|
||||
{ delete grid_; }
|
||||
|
||||
private:
|
||||
static Grid *grid_;
|
||||
};
|
||||
|
||||
template <class TypeTag>
|
||||
Dune::YaspGrid<LENS_DIM> *LensGridCreator<TypeTag>::grid_;
|
||||
|
||||
#endif // HAVE_UG
|
||||
|
||||
} // namespace Ewoms
|
||||
|
||||
#endif
|
@ -36,7 +36,7 @@
|
||||
#include <dune/common/version.hh>
|
||||
#include <dune/geometry/quadraturerules.hh>
|
||||
|
||||
#include <ewoms/disc/vcfv/vcfvelementgeometry.hh>
|
||||
#include <ewoms/disc/vcfv/vcfvstencil.hh>
|
||||
|
||||
const unsigned dim = 3;
|
||||
typedef double Scalar;
|
||||
@ -97,19 +97,17 @@ void writeTetrahedronSubControlVolumes(const Grid &grid)
|
||||
typedef typename Grid2::LeafGridView GridView2;
|
||||
typedef Dune::GridFactory<Grid2> GridFactory2;
|
||||
|
||||
// instanciate a ElementGeometry
|
||||
typedef Ewoms::VcfvElementGeometry<Scalar, GridView> FvElementGeometry;
|
||||
FvElementGeometry fvElemGeom;
|
||||
|
||||
GridFactory2 gf2;
|
||||
const auto &gridView = grid.leafView();
|
||||
typedef Ewoms::VcfvStencil<Scalar, GridView> Stencil;
|
||||
Stencil stencil(gridView);
|
||||
|
||||
auto eIt = gridView.template begin<0>();
|
||||
const auto &eEndIt = gridView.template end<0>();
|
||||
for (; eIt != eEndIt; ++eIt) {
|
||||
fvElemGeom.update(gridView, *eIt);
|
||||
for (int scvIdx = 0; scvIdx < fvElemGeom.numVertices; ++scvIdx) {
|
||||
const auto &scvLocalGeom
|
||||
= *(fvElemGeom.subContVol[scvIdx].localGeometry);
|
||||
stencil.update(*eIt);
|
||||
for (int scvIdx = 0; scvIdx < stencil.numDof(); ++scvIdx) {
|
||||
const auto &scvLocalGeom = stencil.subControlVolume(scvIdx).localGeometry();
|
||||
|
||||
for (int i = 0; i < scvLocalGeom.numCorners; ++i) {
|
||||
GlobalPosition pos(
|
||||
@ -122,10 +120,9 @@ void writeTetrahedronSubControlVolumes(const Grid &grid)
|
||||
int cornerOffset = 0;
|
||||
eIt = gridView.template begin<0>();
|
||||
for (; eIt != eEndIt; ++eIt) {
|
||||
fvElemGeom.update(gridView, *eIt);
|
||||
for (int scvIdx = 0; scvIdx < fvElemGeom.numVertices; ++scvIdx) {
|
||||
const auto &scvLocalGeom
|
||||
= *fvElemGeom.subContVol[scvIdx].localGeometry;
|
||||
stencil.update(*eIt);
|
||||
for (int scvIdx = 0; scvIdx < stencil.numDof(); ++scvIdx) {
|
||||
const auto &scvLocalGeom = stencil.subControlVolume(scvIdx).localGeometry();
|
||||
|
||||
std::vector<unsigned int> vertexIndices;
|
||||
for (int i = 0; i < scvLocalGeom.numCorners; ++i) {
|
||||
@ -179,20 +176,17 @@ void writeCubeSubControlVolumes(const Grid &grid)
|
||||
typedef Dune::ALUGrid<dim, dim, Dune::cube, Dune::nonconforming> Grid2;
|
||||
typedef typename Grid2::LeafGridView GridView2;
|
||||
typedef Dune::GridFactory<Grid2> GridFactory2;
|
||||
|
||||
// instanciate a ElementGeometry
|
||||
typedef Ewoms::VcfvElementGeometry<Scalar, GridView> FvElementGeometry;
|
||||
FvElementGeometry fvElemGeom;
|
||||
typedef Ewoms::VcfvStencil<Scalar, GridView> Stencil;
|
||||
|
||||
GridFactory2 gf2;
|
||||
const auto &gridView = grid.leafView();
|
||||
Stencil stencil(gridView);
|
||||
auto eIt = gridView.template begin<0>();
|
||||
const auto &eEndIt = gridView.template end<0>();
|
||||
for (; eIt != eEndIt; ++eIt) {
|
||||
fvElemGeom.update(gridView, *eIt);
|
||||
for (int scvIdx = 0; scvIdx < fvElemGeom.numVertices; ++scvIdx) {
|
||||
const auto &scvLocalGeom
|
||||
= *(fvElemGeom.subContVol[scvIdx].localGeometry);
|
||||
stencil.update(*eIt);
|
||||
for (int scvIdx = 0; scvIdx < stencil.numDof(); ++scvIdx) {
|
||||
const auto &scvLocalGeom = stencil.subControlVolume(scvIdx).localGeometry();
|
||||
|
||||
for (int i = 0; i < scvLocalGeom.numCorners; ++i) {
|
||||
GlobalPosition pos(
|
||||
@ -205,10 +199,9 @@ void writeCubeSubControlVolumes(const Grid &grid)
|
||||
int cornerOffset = 0;
|
||||
eIt = gridView.template begin<0>();
|
||||
for (; eIt != eEndIt; ++eIt) {
|
||||
fvElemGeom.update(gridView, *eIt);
|
||||
for (int scvIdx = 0; scvIdx < fvElemGeom.numVertices; ++scvIdx) {
|
||||
const auto &scvLocalGeom
|
||||
= *fvElemGeom.subContVol[scvIdx].localGeometry;
|
||||
stencil.update(*eIt);
|
||||
for (int scvIdx = 0; scvIdx < stencil.numDof(); ++scvIdx) {
|
||||
const auto &scvLocalGeom = stencil.subControlVolume(scvIdx).localGeometry();
|
||||
|
||||
std::vector<unsigned int> vertexIndices;
|
||||
for (int i = 0; i < scvLocalGeom.numCorners; ++i) {
|
||||
@ -294,18 +287,17 @@ void testQuadrature()
|
||||
auto eIt = gridView.begin<0>();
|
||||
const auto eEndIt = gridView.end<0>();
|
||||
Scalar result = 0;
|
||||
// instanciate a FvElementGeometry
|
||||
typedef Ewoms::VcfvElementGeometry<Scalar, GridView> FvElementGeometry;
|
||||
FvElementGeometry fvElemGeom;
|
||||
// instanciate a stencil
|
||||
typedef Ewoms::VcfvStencil<Scalar, GridView> Stencil;
|
||||
Stencil stencil(gridView);
|
||||
for (; eIt != eEndIt; ++eIt) {
|
||||
const auto &elemGeom = eIt->geometry();
|
||||
|
||||
fvElemGeom.update(gridView, *eIt);
|
||||
stencil.update(*eIt);
|
||||
|
||||
// loop over all sub-control volumes
|
||||
for (int scvIdx = 0; scvIdx < fvElemGeom.numVertices; ++scvIdx) {
|
||||
const auto &scvLocalGeom
|
||||
= *fvElemGeom.subContVol[scvIdx].localGeometry;
|
||||
for (int scvIdx = 0; scvIdx < stencil.numDof(); ++scvIdx) {
|
||||
const auto &scvLocalGeom = stencil.subControlVolume(scvIdx).localGeometry();
|
||||
|
||||
Dune::GeometryType geomType = scvLocalGeom.type();
|
||||
static const int quadratureOrder = 2;
|
@ -31,13 +31,10 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(PowerInjectionProblem,
|
||||
INHERITS_FROM(VcfvImmiscibleTwoPhase, PowerInjectionBaseProblem));
|
||||
NEW_TYPE_TAG(PowerInjectionProblem, INHERITS_FROM(ImmiscibleTwoPhaseModel, PowerInjectionBaseProblem));
|
||||
|
||||
SET_TYPE_PROP(PowerInjectionProblem, VelocityModule,
|
||||
Ewoms::VcfvDarcyVelocityModule<TypeTag>);
|
||||
}
|
||||
}
|
||||
SET_TYPE_PROP(PowerInjectionProblem, VelocityModule, Ewoms::DarcyVelocityModule<TypeTag>);
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
@ -31,13 +31,10 @@
|
||||
|
||||
namespace Opm {
|
||||
namespace Properties {
|
||||
NEW_TYPE_TAG(PowerInjectionProblem,
|
||||
INHERITS_FROM(VcfvImmiscibleTwoPhase, PowerInjectionBaseProblem));
|
||||
NEW_TYPE_TAG(PowerInjectionProblem, INHERITS_FROM(ImmiscibleTwoPhaseModel, PowerInjectionBaseProblem));
|
||||
|
||||
SET_TYPE_PROP(PowerInjectionProblem, VelocityModule,
|
||||
Ewoms::VcfvForchheimerVelocityModule<TypeTag>);
|
||||
}
|
||||
}
|
||||
SET_TYPE_PROP(PowerInjectionProblem, VelocityModule, Ewoms::ForchheimerVelocityModule<TypeTag>);
|
||||
}}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
@ -1,852 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="pressure_l">
|
||||
<DataArray type="Float32" Name="pressure_l" NumberOfComponents="1" format="ascii">
|
||||
2.63166e+07 2.63216e+07 2.62952e+07 2.62956e+07 2.63234e+07 2.6297e+07 2.63246e+07 2.62982e+07 2.63257e+07 2.62992e+07 2.63266e+07 2.63001e+07
|
||||
2.63273e+07 2.63008e+07 2.6328e+07 2.63015e+07 2.63285e+07 2.6302e+07 2.63291e+07 2.63025e+07 2.63298e+07 2.63031e+07 2.63307e+07 2.6304e+07
|
||||
2.63318e+07 2.63052e+07 2.6333e+07 2.63065e+07 2.63343e+07 2.63078e+07 2.63355e+07 2.6309e+07 2.63367e+07 2.63102e+07 2.63379e+07 2.63113e+07
|
||||
2.6339e+07 2.63124e+07 2.63401e+07 2.63136e+07 2.63412e+07 2.63146e+07 2.63422e+07 2.63157e+07 2.63431e+07 2.63167e+07 2.63438e+07 2.63175e+07
|
||||
2.63441e+07 2.63178e+07 2.62692e+07 2.62699e+07 2.62709e+07 2.62719e+07 2.62729e+07 2.62737e+07 2.62745e+07 2.62751e+07 2.62756e+07 2.62757e+07
|
||||
2.62761e+07 2.6277e+07 2.62786e+07 2.628e+07 2.62813e+07 2.62825e+07 2.62837e+07 2.62848e+07 2.62859e+07 2.6287e+07 2.62881e+07 2.62892e+07
|
||||
2.62904e+07 2.62915e+07 2.62926e+07 2.6243e+07 2.62438e+07 2.62447e+07 2.62457e+07 2.62466e+07 2.62475e+07 2.62483e+07 2.6249e+07 2.62494e+07
|
||||
2.62493e+07 2.62496e+07 2.625e+07 2.62521e+07 2.62536e+07 2.62549e+07 2.62561e+07 2.62572e+07 2.62583e+07 2.62594e+07 2.62605e+07 2.62616e+07
|
||||
2.62628e+07 2.6264e+07 2.62655e+07 2.62674e+07 2.62168e+07 2.62177e+07 2.62185e+07 2.62195e+07 2.62204e+07 2.62213e+07 2.62222e+07 2.6223e+07
|
||||
2.62237e+07 2.62239e+07 2.62242e+07 2.62246e+07 2.6226e+07 2.62274e+07 2.62286e+07 2.62297e+07 2.62308e+07 2.62319e+07 2.62329e+07 2.6234e+07
|
||||
2.62351e+07 2.62363e+07 2.62375e+07 2.62391e+07 2.62411e+07 2.61906e+07 2.61914e+07 2.61923e+07 2.61932e+07 2.61942e+07 2.61952e+07 2.61961e+07
|
||||
2.61971e+07 2.61981e+07 2.61984e+07 2.61987e+07 2.6199e+07 2.62002e+07 2.62013e+07 2.62023e+07 2.62034e+07 2.62044e+07 2.62054e+07 2.62064e+07
|
||||
2.62075e+07 2.62085e+07 2.62096e+07 2.62108e+07 2.62122e+07 2.62141e+07 2.61644e+07 2.61652e+07 2.61661e+07 2.6167e+07 2.6168e+07 2.6169e+07
|
||||
2.61701e+07 2.61712e+07 2.61724e+07 2.61728e+07 2.61732e+07 2.61735e+07 2.61743e+07 2.61752e+07 2.61761e+07 2.6177e+07 2.6178e+07 2.61789e+07
|
||||
2.61799e+07 2.61809e+07 2.61819e+07 2.61829e+07 2.61839e+07 2.6185e+07 2.61861e+07 2.61381e+07 2.61389e+07 2.61398e+07 2.61407e+07 2.61417e+07
|
||||
2.61428e+07 2.6144e+07 2.61453e+07 2.61468e+07 2.61473e+07 2.61477e+07 2.6148e+07 2.61485e+07 2.61491e+07 2.61498e+07 2.61507e+07 2.61515e+07
|
||||
2.61524e+07 2.61534e+07 2.61543e+07 2.61552e+07 2.61562e+07 2.6157e+07 2.61577e+07 2.6158e+07 2.61119e+07 2.61126e+07 2.61134e+07 2.61143e+07
|
||||
2.61153e+07 2.61165e+07 2.61177e+07 2.61192e+07 2.61211e+07 2.61219e+07 2.61223e+07 2.61226e+07 2.61225e+07 2.61229e+07 2.61235e+07 2.61242e+07
|
||||
2.61251e+07 2.61259e+07 2.61268e+07 2.61277e+07 2.61286e+07 2.61295e+07 2.61302e+07 2.61307e+07 2.61309e+07 2.60857e+07 2.60864e+07 2.60872e+07
|
||||
2.60882e+07 2.60893e+07 2.60904e+07 2.60918e+07 2.60933e+07 2.60952e+07 2.60961e+07 2.60966e+07 2.60968e+07 2.60966e+07 2.60969e+07 2.60974e+07
|
||||
2.6098e+07 2.60987e+07 2.60995e+07 2.61003e+07 2.61011e+07 2.61019e+07 2.61026e+07 2.61032e+07 2.61036e+07 2.61038e+07 2.60595e+07 2.60604e+07
|
||||
2.60613e+07 2.60623e+07 2.60635e+07 2.60647e+07 2.60661e+07 2.60677e+07 2.60694e+07 2.60699e+07 2.60703e+07 2.60706e+07 2.60708e+07 2.6071e+07
|
||||
2.60714e+07 2.60719e+07 2.60725e+07 2.60731e+07 2.60738e+07 2.60744e+07 2.6075e+07 2.60756e+07 2.6076e+07 2.60763e+07 2.60764e+07 2.60333e+07
|
||||
2.60343e+07 2.60353e+07 2.60364e+07 2.60376e+07 2.60388e+07 2.60402e+07 2.60418e+07 2.60434e+07 2.60439e+07 2.60443e+07 2.60446e+07 2.60448e+07
|
||||
2.60451e+07 2.60454e+07 2.60457e+07 2.60462e+07 2.60467e+07 2.60472e+07 2.60477e+07 2.60482e+07 2.60487e+07 2.6049e+07 2.60492e+07 2.60493e+07
|
||||
2.60071e+07 2.60082e+07 2.60092e+07 2.60103e+07 2.60115e+07 2.60128e+07 2.60142e+07 2.60158e+07 2.60175e+07 2.60181e+07 2.60185e+07 2.60187e+07
|
||||
2.60189e+07 2.6019e+07 2.60192e+07 2.60195e+07 2.60198e+07 2.60202e+07 2.60207e+07 2.60211e+07 2.60215e+07 2.60219e+07 2.60221e+07 2.60223e+07
|
||||
2.60224e+07 2.59809e+07 2.5982e+07 2.59831e+07 2.59842e+07 2.59854e+07 2.59866e+07 2.5988e+07 2.59896e+07 2.59916e+07 2.59923e+07 2.59929e+07
|
||||
2.59931e+07 2.5993e+07 2.59929e+07 2.5993e+07 2.59932e+07 2.59935e+07 2.59938e+07 2.59941e+07 2.59945e+07 2.59948e+07 2.59951e+07 2.59953e+07
|
||||
2.59955e+07 2.59955e+07 2.59547e+07 2.5956e+07 2.59571e+07 2.59581e+07 2.59592e+07 2.59604e+07 2.59617e+07 2.59631e+07 2.59646e+07 2.59662e+07
|
||||
2.59668e+07 2.5967e+07 2.59666e+07 2.59665e+07 2.59666e+07 2.59668e+07 2.5967e+07 2.59673e+07 2.59676e+07 2.59679e+07 2.59682e+07 2.59684e+07
|
||||
2.59686e+07 2.59688e+07 2.59688e+07 2.59287e+07 2.59303e+07 2.59309e+07 2.59318e+07 2.59328e+07 2.5934e+07 2.59352e+07 2.59366e+07 2.59378e+07
|
||||
2.5939e+07 2.59397e+07 2.594e+07 2.59401e+07 2.59401e+07 2.59402e+07 2.59403e+07 2.59405e+07 2.59408e+07 2.59411e+07 2.59413e+07 2.59416e+07
|
||||
2.59418e+07 2.5942e+07 2.59421e+07 2.59421e+07 2.59074e+07 2.59043e+07 2.59046e+07 2.59054e+07 2.59063e+07 2.59075e+07 2.59087e+07 2.591e+07
|
||||
2.59112e+07 2.59123e+07 2.5913e+07 2.59134e+07 2.59135e+07 2.59136e+07 2.59137e+07 2.59138e+07 2.5914e+07 2.59143e+07 2.59145e+07 2.59148e+07
|
||||
2.5915e+07 2.59153e+07 2.59154e+07 2.59155e+07 2.59156e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="pressure_g" NumberOfComponents="1" format="ascii">
|
||||
2.63216e+07 2.63266e+07 2.63002e+07 2.63006e+07 2.63284e+07 2.6302e+07 2.63296e+07 2.63032e+07 2.63307e+07 2.63042e+07 2.63316e+07 2.63051e+07
|
||||
2.63323e+07 2.63058e+07 2.6333e+07 2.63065e+07 2.63335e+07 2.6307e+07 2.63341e+07 2.63075e+07 2.63348e+07 2.63081e+07 2.63357e+07 2.6309e+07
|
||||
2.63368e+07 2.63102e+07 2.6338e+07 2.63115e+07 2.63393e+07 2.63128e+07 2.63405e+07 2.6314e+07 2.63417e+07 2.63152e+07 2.63429e+07 2.63163e+07
|
||||
2.6344e+07 2.63174e+07 2.63451e+07 2.63186e+07 2.63462e+07 2.63196e+07 2.63472e+07 2.63207e+07 2.63481e+07 2.63217e+07 2.63488e+07 2.63225e+07
|
||||
2.63491e+07 2.63228e+07 2.62742e+07 2.62749e+07 2.62759e+07 2.62769e+07 2.62779e+07 2.62787e+07 2.62795e+07 2.62801e+07 2.62806e+07 2.62807e+07
|
||||
2.62811e+07 2.6282e+07 2.62836e+07 2.6285e+07 2.62863e+07 2.62875e+07 2.62887e+07 2.62898e+07 2.62909e+07 2.6292e+07 2.62931e+07 2.62942e+07
|
||||
2.62954e+07 2.62965e+07 2.62976e+07 2.6248e+07 2.62488e+07 2.62497e+07 2.62507e+07 2.62516e+07 2.62525e+07 2.62533e+07 2.6254e+07 2.62544e+07
|
||||
2.62543e+07 2.62546e+07 2.6255e+07 2.62571e+07 2.62586e+07 2.62599e+07 2.62611e+07 2.62622e+07 2.62633e+07 2.62644e+07 2.62655e+07 2.62666e+07
|
||||
2.62678e+07 2.6269e+07 2.62705e+07 2.62724e+07 2.62218e+07 2.62227e+07 2.62235e+07 2.62245e+07 2.62254e+07 2.62263e+07 2.62272e+07 2.6228e+07
|
||||
2.62287e+07 2.62289e+07 2.62292e+07 2.62296e+07 2.6231e+07 2.62324e+07 2.62336e+07 2.62347e+07 2.62358e+07 2.62369e+07 2.62379e+07 2.6239e+07
|
||||
2.62401e+07 2.62413e+07 2.62425e+07 2.62441e+07 2.62461e+07 2.61956e+07 2.61964e+07 2.61973e+07 2.61982e+07 2.61992e+07 2.62002e+07 2.62011e+07
|
||||
2.62021e+07 2.62031e+07 2.62034e+07 2.62037e+07 2.6204e+07 2.62052e+07 2.62063e+07 2.62073e+07 2.62084e+07 2.62094e+07 2.62104e+07 2.62114e+07
|
||||
2.62125e+07 2.62135e+07 2.62146e+07 2.62158e+07 2.62172e+07 2.62191e+07 2.61694e+07 2.61702e+07 2.61711e+07 2.6172e+07 2.6173e+07 2.6174e+07
|
||||
2.61751e+07 2.61762e+07 2.61774e+07 2.61778e+07 2.61782e+07 2.61785e+07 2.61793e+07 2.61802e+07 2.61811e+07 2.6182e+07 2.6183e+07 2.61839e+07
|
||||
2.61849e+07 2.61859e+07 2.61869e+07 2.61879e+07 2.61889e+07 2.619e+07 2.61911e+07 2.61431e+07 2.61439e+07 2.61448e+07 2.61457e+07 2.61467e+07
|
||||
2.61478e+07 2.6149e+07 2.61503e+07 2.61518e+07 2.61523e+07 2.61527e+07 2.6153e+07 2.61535e+07 2.61541e+07 2.61548e+07 2.61557e+07 2.61565e+07
|
||||
2.61574e+07 2.61584e+07 2.61593e+07 2.61602e+07 2.61612e+07 2.6162e+07 2.61627e+07 2.6163e+07 2.61169e+07 2.61176e+07 2.61184e+07 2.61193e+07
|
||||
2.61203e+07 2.61215e+07 2.61227e+07 2.61242e+07 2.61261e+07 2.61269e+07 2.61273e+07 2.61276e+07 2.61275e+07 2.61279e+07 2.61285e+07 2.61292e+07
|
||||
2.61301e+07 2.61309e+07 2.61318e+07 2.61327e+07 2.61336e+07 2.61345e+07 2.61352e+07 2.61357e+07 2.61359e+07 2.60957e+07 2.60964e+07 2.60972e+07
|
||||
2.60982e+07 2.60993e+07 2.61004e+07 2.61018e+07 2.61033e+07 2.61052e+07 2.61061e+07 2.61066e+07 2.61068e+07 2.61066e+07 2.61069e+07 2.61074e+07
|
||||
2.6108e+07 2.61087e+07 2.61095e+07 2.61103e+07 2.61111e+07 2.61119e+07 2.61126e+07 2.61132e+07 2.61136e+07 2.61138e+07 2.60695e+07 2.60704e+07
|
||||
2.60713e+07 2.60723e+07 2.60735e+07 2.60747e+07 2.60761e+07 2.60777e+07 2.60794e+07 2.60799e+07 2.60803e+07 2.60806e+07 2.60808e+07 2.6081e+07
|
||||
2.60814e+07 2.60819e+07 2.60825e+07 2.60831e+07 2.60838e+07 2.60844e+07 2.6085e+07 2.60856e+07 2.6086e+07 2.60863e+07 2.60864e+07 2.60433e+07
|
||||
2.60443e+07 2.60453e+07 2.60464e+07 2.60476e+07 2.60488e+07 2.60502e+07 2.60518e+07 2.60534e+07 2.60539e+07 2.60543e+07 2.60546e+07 2.60548e+07
|
||||
2.60551e+07 2.60554e+07 2.60557e+07 2.60562e+07 2.60567e+07 2.60572e+07 2.60577e+07 2.60582e+07 2.60587e+07 2.6059e+07 2.60592e+07 2.60593e+07
|
||||
2.60171e+07 2.60182e+07 2.60192e+07 2.60203e+07 2.60215e+07 2.60228e+07 2.60242e+07 2.60258e+07 2.60275e+07 2.60281e+07 2.60285e+07 2.60287e+07
|
||||
2.60289e+07 2.6029e+07 2.60292e+07 2.60295e+07 2.60298e+07 2.60302e+07 2.60307e+07 2.60311e+07 2.60315e+07 2.60319e+07 2.60321e+07 2.60323e+07
|
||||
2.60324e+07 2.59909e+07 2.5992e+07 2.59931e+07 2.59942e+07 2.59954e+07 2.59966e+07 2.5998e+07 2.59996e+07 2.60016e+07 2.60023e+07 2.60029e+07
|
||||
2.60031e+07 2.6003e+07 2.60029e+07 2.6003e+07 2.60032e+07 2.60035e+07 2.60038e+07 2.60041e+07 2.60045e+07 2.60048e+07 2.60051e+07 2.60053e+07
|
||||
2.60055e+07 2.60055e+07 2.59647e+07 2.5966e+07 2.59671e+07 2.59681e+07 2.59692e+07 2.59704e+07 2.59717e+07 2.59731e+07 2.59746e+07 2.59762e+07
|
||||
2.59768e+07 2.5977e+07 2.59766e+07 2.59765e+07 2.59766e+07 2.59768e+07 2.5977e+07 2.59773e+07 2.59776e+07 2.59779e+07 2.59782e+07 2.59784e+07
|
||||
2.59786e+07 2.59788e+07 2.59788e+07 2.59387e+07 2.59403e+07 2.59409e+07 2.59418e+07 2.59428e+07 2.5944e+07 2.59452e+07 2.59466e+07 2.59478e+07
|
||||
2.5949e+07 2.59497e+07 2.595e+07 2.59501e+07 2.59501e+07 2.59502e+07 2.59503e+07 2.59505e+07 2.59508e+07 2.59511e+07 2.59513e+07 2.59516e+07
|
||||
2.59518e+07 2.5952e+07 2.59521e+07 2.59521e+07 2.59174e+07 2.59143e+07 2.59146e+07 2.59154e+07 2.59163e+07 2.59175e+07 2.59187e+07 2.592e+07
|
||||
2.59212e+07 2.59223e+07 2.5923e+07 2.59234e+07 2.59235e+07 2.59236e+07 2.59237e+07 2.59238e+07 2.5924e+07 2.59243e+07 2.59245e+07 2.59248e+07
|
||||
2.5925e+07 2.59253e+07 2.59254e+07 2.59255e+07 2.59256e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_l" NumberOfComponents="1" format="ascii">
|
||||
1082.34 1082.34 1082.33 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33
|
||||
1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33
|
||||
1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.35 1082.33 1082.35 1082.33 1082.35 1082.34
|
||||
1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34
|
||||
1082.35 1082.35 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32
|
||||
1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.33 1082.33 1082.33
|
||||
1082.33 1082.33 1084.64 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31
|
||||
1019.15 1019.15 1019.15 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31
|
||||
1082.32 1082.32 1082.34 1086.89 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3
|
||||
1082.3 1019.14 1019.14 1019.14 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3
|
||||
1082.3 1082.3 1082.3 1082.33 1086.88 1082.28 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29
|
||||
1082.29 1082.29 1019.14 1019.14 1019.14 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29
|
||||
1082.29 1082.29 1082.29 1082.29 1082.32 1086.87 1082.27 1082.27 1082.27 1082.28 1082.28 1082.28
|
||||
1082.28 1082.28 1082.28 1019.13 1019.13 1019.13 1082.28 1082.28 1082.28 1082.28 1082.28 1082.28
|
||||
1082.28 1082.28 1082.28 1082.28 1082.28 1082.29 1084.59 1082.26 1082.26 1082.26 1082.26 1082.26
|
||||
1082.27 1082.27 1082.27 1082.27 1019.12 1019.12 1019.12 1082.27 1082.27 1082.27 1082.27 1082.27
|
||||
1082.27 1082.27 1082.27 1082.27 1082.27 1082.27 1082.27 1082.28 1082.25 1082.25 1082.25 1082.25
|
||||
1082.25 1082.25 1082.25 1082.26 1082.26 1019.11 1019.11 1019.11 1082.26 1082.26 1082.26 1082.26
|
||||
1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.24 1082.24 1082.24
|
||||
1082.24 1082.24 1082.24 1082.24 1082.24 1082.25 1019.1 1019.1 1019.1 1082.25 1082.25 1082.25
|
||||
1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.23 1082.23
|
||||
1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1019.09 1019.09 1019.09 1082.24 1082.24
|
||||
1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.22
|
||||
1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1019.08 1019.08 1019.08 1082.22
|
||||
1082.22 1082.22 1082.22 1082.22 1082.22 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23
|
||||
1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1019.07 1019.07 1019.07
|
||||
1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21
|
||||
1082.21 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1019.06 1019.06
|
||||
1019.06 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2
|
||||
1082.2 1082.2 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19
|
||||
1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19
|
||||
1082.19 1082.19 1082.19 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18
|
||||
1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18
|
||||
1082.18 1082.18 1082.18 1082.18 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_g" NumberOfComponents="1" format="ascii">
|
||||
969.119 969.142 969.022 969.024 969.15 969.031 969.155 969.036 969.16 969.041 969.164 969.045
|
||||
969.167 969.048 969.17 969.051 969.173 969.053 969.175 969.055 969.178 969.058 969.182 969.062
|
||||
969.187 969.068 969.193 969.074 969.198 969.079 969.204 969.085 969.209 969.09 969.214 969.095
|
||||
969.219 969.1 969.224 969.105 969.229 969.11 969.234 969.115 969.238 969.119 969.241 969.123
|
||||
969.242 969.125 968.905 968.909 968.913 968.917 968.922 968.926 968.929 968.932 968.934 968.934
|
||||
968.937 968.941 968.948 968.954 968.96 968.965 968.971 968.976 968.981 968.986 968.991 968.996
|
||||
969.001 969.006 969.011 968.787 968.791 968.795 968.799 968.803 968.807 968.811 968.814 968.816
|
||||
527.756 527.761 527.767 968.828 968.835 968.841 968.846 968.851 968.856 968.861 968.866 968.871
|
||||
968.876 968.882 968.888 968.897 968.669 968.673 968.677 968.681 968.685 968.689 968.693 968.697
|
||||
968.7 527.321 527.326 527.333 968.711 968.717 968.722 968.727 968.732 968.737 968.742 968.747
|
||||
968.752 968.757 968.763 968.769 968.779 968.551 968.555 968.559 968.563 968.567 968.571 968.576
|
||||
968.58 968.584 526.885 526.89 526.896 968.594 968.599 968.604 968.608 968.613 968.617 968.622
|
||||
968.627 968.632 968.637 968.642 968.648 968.657 968.432 968.436 968.44 968.444 968.449 968.453
|
||||
968.458 968.463 968.469 526.448 526.454 526.459 968.477 968.481 968.485 968.49 968.494 968.498
|
||||
968.503 968.507 968.511 968.516 968.521 968.526 968.53 968.314 968.318 968.322 968.326 968.33
|
||||
968.335 968.341 968.347 968.353 526.012 526.019 526.023 968.361 968.364 968.367 968.371 968.375
|
||||
968.379 968.383 968.387 968.391 968.395 968.399 968.402 968.404 968.195 968.199 968.202 968.207
|
||||
968.211 968.216 968.222 968.229 968.237 525.577 525.585 525.59 968.244 968.245 968.248 968.251
|
||||
968.255 968.259 968.263 968.267 968.271 968.275 968.278 968.281 968.282 968.099 968.102 968.106
|
||||
968.111 968.115 968.121 968.127 968.134 968.143 525.218 525.226 525.23 968.149 968.15 968.152
|
||||
968.155 968.158 968.162 968.166 968.169 968.173 968.176 968.179 968.181 968.181 967.98 967.984
|
||||
967.989 967.993 967.998 968.004 968.01 968.017 968.025 524.766 524.773 524.777 968.031 968.033
|
||||
968.034 968.037 968.039 968.042 968.045 968.048 968.051 968.053 968.055 968.057 968.057 967.861
|
||||
967.866 967.87 967.875 967.881 967.886 967.893 967.9 967.907 524.316 524.323 524.327 967.914
|
||||
967.915 967.916 967.918 967.92 967.922 967.924 967.927 967.929 967.931 967.933 967.934 967.934
|
||||
967.742 967.747 967.752 967.757 967.762 967.768 967.775 967.782 967.79 523.869 523.876 523.88
|
||||
967.796 967.796 967.797 967.799 967.8 967.802 967.804 967.806 967.808 967.809 967.811 967.811
|
||||
967.812 967.623 967.628 967.633 967.638 967.644 967.649 967.656 967.663 967.672 523.424 523.433
|
||||
523.437 967.678 967.678 967.678 967.679 967.68 967.682 967.683 967.685 967.687 967.688 967.689
|
||||
967.69 967.69 967.504 967.51 967.515 967.52 967.525 967.53 967.536 967.543 967.549 967.557
|
||||
967.559 967.56 967.558 967.558 967.558 967.559 967.56 967.562 967.563 967.564 967.566 967.567
|
||||
967.568 967.568 967.568 967.386 967.394 967.396 967.4 967.405 967.41 967.416 967.422 967.428
|
||||
967.433 967.436 967.438 967.438 967.438 967.438 967.439 967.44 967.441 967.442 967.444 967.445
|
||||
967.446 967.447 967.447 967.447 967.289 967.275 967.276 967.28 967.284 967.29 967.295 967.301
|
||||
967.307 967.311 967.315 967.317 967.317 967.318 967.318 967.319 967.32 967.321 967.322 967.323
|
||||
967.324 967.325 967.326 967.326 967.327
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="porosity" NumberOfComponents="1" format="ascii">
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.989566 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.994946 0.984185 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.994942 0.984184 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.994947 0.984184 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.994984 0.989566 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.00500002 0.00501739 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.00500004 0.00501709 0.0104336 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.00500017 0.00505422 0.0158155 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.0050002 0.00505828 0.0158156 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.00500016 0.00505349 0.0158157 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.00500004 0.00501642 0.0104344 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.00500005 0.00501936 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327814 0.00327822 0.00327782 0.00327782 0.00327825 0.00327784 0.00327827 0.00327786 0.00327828 0.00327788 0.0032783 0.00327789
|
||||
0.00327831 0.0032779 0.00327832 0.00327791 0.00327833 0.00327792 0.00327834 0.00327793 0.00327835 0.00327794 0.00327836 0.00327795
|
||||
0.00327838 0.00327797 0.0032784 0.00327799 0.00327842 0.00327801 0.00327843 0.00327803 0.00327845 0.00327805 0.00327847 0.00327806
|
||||
0.00327849 0.00327808 0.00327851 0.0032781 0.00327852 0.00327811 0.00327854 0.00327813 0.00327855 0.00327815 0.00327856 0.00327816
|
||||
0.00327857 0.00327811 0.00327742 0.00327743 0.00327744 0.00327746 0.00327747 0.00327749 0.0032775 0.00327751 0.00327751 0.00327752
|
||||
0.00327752 0.00327754 0.00327756 0.00327758 0.0032776 0.00327762 0.00327764 0.00327766 0.00327767 0.00327769 0.00327771 0.00327772
|
||||
0.00327774 0.0032777 0.00325988 0.00327701 0.00327703 0.00327704 0.00327706 0.00327707 0.00327708 0.0032771 0.00327711 0.00327711
|
||||
0.029767 0.0297671 0.0297672 0.00327715 0.00327718 0.0032772 0.00327722 0.00327723 0.00327725 0.00327727 0.00327728 0.0032773
|
||||
0.00327732 0.00327734 0.00327718 0.00324176 0.00327661 0.00327662 0.00327664 0.00327665 0.00327667 0.00327668 0.00327669 0.00327671
|
||||
0.00327672 0.0297612 0.0297613 0.0297614 0.00327675 0.00327677 0.00327679 0.00327681 0.00327683 0.00327684 0.00327686 0.00327688
|
||||
0.00327689 0.00327691 0.00327693 0.00327676 0.00324136 0.00327621 0.00327622 0.00327623 0.00327625 0.00327626 0.00327628 0.00327629
|
||||
0.00327631 0.00327632 0.0297554 0.0297555 0.0297556 0.00327635 0.00327637 0.00327639 0.0032764 0.00327642 0.00327644 0.00327645
|
||||
0.00327647 0.00327648 0.0032765 0.00327652 0.00327636 0.00324095 0.0032758 0.00327582 0.00327583 0.00327584 0.00327586 0.00327587
|
||||
0.00327589 0.00327591 0.00327593 0.0297496 0.0297497 0.0297497 0.00327596 0.00327597 0.00327598 0.003276 0.00327601 0.00327603
|
||||
0.00327604 0.00327606 0.00327607 0.00327609 0.0032761 0.00327607 0.00325824 0.0032754 0.00327541 0.00327542 0.00327544 0.00327545
|
||||
0.00327547 0.00327549 0.00327551 0.00327553 0.0297438 0.0297439 0.0297439 0.00327556 0.00327557 0.00327558 0.00327559 0.0032756
|
||||
0.00327562 0.00327563 0.00327565 0.00327566 0.00327568 0.00327569 0.0032757 0.00327564 0.00327499 0.003275 0.00327501 0.00327503
|
||||
0.00327504 0.00327506 0.00327508 0.0032751 0.00327513 0.029738 0.0297381 0.0297381 0.00327516 0.00327516 0.00327517 0.00327518
|
||||
0.00327519 0.00327521 0.00327522 0.00327524 0.00327525 0.00327526 0.00327527 0.00327528 0.00327529 0.00327396 0.00327397 0.00327398
|
||||
0.003274 0.00327402 0.00327403 0.00327405 0.00327408 0.00327411 0.0297264 0.0297265 0.0297265 0.00327413 0.00327413 0.00327414
|
||||
0.00327415 0.00327416 0.00327417 0.00327419 0.0032742 0.00327421 0.00327422 0.00327423 0.00327424 0.00327424 0.00327355 0.00327357
|
||||
0.00327358 0.0032736 0.00327362 0.00327363 0.00327366 0.00327368 0.00327371 0.0297204 0.0297205 0.0297205 0.00327373 0.00327373
|
||||
0.00327374 0.00327375 0.00327376 0.00327376 0.00327378 0.00327379 0.00327379 0.0032738 0.00327381 0.00327381 0.00327382 0.00327315
|
||||
0.00327316 0.00327318 0.0032732 0.00327321 0.00327323 0.00327326 0.00327328 0.00327331 0.0297144 0.0297145 0.0297145 0.00327333
|
||||
0.00327333 0.00327334 0.00327334 0.00327335 0.00327336 0.00327336 0.00327337 0.00327338 0.00327339 0.00327339 0.0032734 0.0032734
|
||||
0.00327274 0.00327276 0.00327277 0.00327279 0.00327281 0.00327283 0.00327285 0.00327288 0.0032729 0.0297084 0.0297085 0.0297086
|
||||
0.00327292 0.00327293 0.00327293 0.00327293 0.00327294 0.00327295 0.00327295 0.00327296 0.00327297 0.00327297 0.00327298 0.00327298
|
||||
0.00327298 0.00327233 0.00327235 0.00327237 0.00327239 0.0032724 0.00327242 0.00327245 0.00327247 0.0032725 0.0297025 0.0297026
|
||||
0.0297027 0.00327252 0.00327252 0.00327252 0.00327253 0.00327253 0.00327253 0.00327254 0.00327255 0.00327255 0.00327256 0.00327256
|
||||
0.00327256 0.00327256 0.00327193 0.00327195 0.00327196 0.00327198 0.003272 0.00327202 0.00327204 0.00327206 0.00327208 0.00327211
|
||||
0.00327212 0.00327212 0.00327211 0.00327211 0.00327211 0.00327212 0.00327212 0.00327212 0.00327213 0.00327213 0.00327214 0.00327214
|
||||
0.00327214 0.00327215 0.00327215 0.00327152 0.00327155 0.00327156 0.00327157 0.00327159 0.0032716 0.00327162 0.00327164 0.00327166
|
||||
0.00327168 0.00327169 0.0032717 0.0032717 0.0032717 0.0032717 0.0032717 0.00327171 0.00327171 0.00327171 0.00327172 0.00327172
|
||||
0.00327173 0.00327173 0.00327173 0.00327173 0.00327119 0.00327114 0.00327115 0.00327116 0.00327117 0.00327119 0.00327121 0.00327123
|
||||
0.00327125 0.00327127 0.00327128 0.00327128 0.00327129 0.00327129 0.00327129 0.00327129 0.00327129 0.0032713 0.0032713 0.00327131
|
||||
0.00327131 0.00327131 0.00327132 0.00327132 0.00327132
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259408 0.259405 0.259424 0.259423 0.259403 0.259422 0.259402 0.259422 0.259402 0.259421 0.259401 0.25942
|
||||
0.2594 0.25942 0.2594 0.259419 0.2594 0.259419 0.259399 0.259418 0.259399 0.259418 0.259398 0.259417
|
||||
0.259397 0.259416 0.259396 0.259416 0.259395 0.259415 0.259395 0.259414 0.259394 0.259413 0.259393 0.259412
|
||||
0.259392 0.259411 0.259391 0.25941 0.259391 0.25941 0.25939 0.259409 0.259389 0.259408 0.259389 0.25941
|
||||
0.25939 0.260309 0.259443 0.259442 0.259441 0.259441 0.25944 0.259439 0.259439 0.259438 0.259438 0.259438
|
||||
0.259438 0.259437 0.259436 0.259435 0.259434 0.259433 0.259432 0.259431 0.25943 0.25943 0.259429 0.259428
|
||||
0.259429 0.260313 0.54135 0.259462 0.259461 0.25946 0.25946 0.259459 0.259458 0.259458 0.259457 0.259457
|
||||
0.301432 0.30143 0.301429 0.259455 0.259454 0.259453 0.259452 0.259451 0.25945 0.25945 0.259449 0.259448
|
||||
0.259447 0.259455 0.262259 0.820645 0.25948 0.25948 0.259479 0.259479 0.259478 0.259477 0.259477 0.259476
|
||||
0.259476 0.301553 0.301552 0.30155 0.259474 0.259473 0.259472 0.259471 0.25947 0.25947 0.259469 0.259468
|
||||
0.259467 0.259466 0.259476 0.262488 0.820711 0.259499 0.259499 0.259498 0.259497 0.259497 0.259496 0.259495
|
||||
0.259495 0.259494 0.301676 0.301674 0.301672 0.259492 0.259492 0.259491 0.25949 0.259489 0.259489 0.259488
|
||||
0.259487 0.259486 0.259486 0.259493 0.26226 0.820778 0.259518 0.259518 0.259517 0.259516 0.259516 0.259515
|
||||
0.259514 0.259513 0.259512 0.301798 0.301796 0.301795 0.259511 0.25951 0.25951 0.259509 0.259508 0.259508
|
||||
0.259507 0.259506 0.259506 0.259505 0.259506 0.260355 0.541553 0.259537 0.259536 0.259536 0.259535 0.259534
|
||||
0.259534 0.259533 0.259532 0.259531 0.30192 0.301918 0.301916 0.259529 0.259529 0.259528 0.259528 0.259527
|
||||
0.259527 0.259526 0.259525 0.259525 0.259524 0.259523 0.259525 0.260528 0.259556 0.259555 0.259555 0.259554
|
||||
0.259553 0.259553 0.259552 0.25955 0.259549 0.302041 0.302039 0.302038 0.259548 0.259548 0.259547 0.259547
|
||||
0.259546 0.259546 0.259545 0.259544 0.259544 0.259543 0.259542 0.259542 0.259543 0.259525 0.259525 0.259524
|
||||
0.259524 0.259523 0.259522 0.259521 0.25952 0.259518 0.302109 0.302107 0.302106 0.259517 0.259517 0.259517
|
||||
0.259516 0.259516 0.259515 0.259515 0.259514 0.259514 0.259513 0.259513 0.259512 0.259512 0.259545 0.259544
|
||||
0.259543 0.259543 0.259542 0.259541 0.25954 0.259539 0.259537 0.302236 0.302234 0.302233 0.259536 0.259536
|
||||
0.259536 0.259536 0.259535 0.259535 0.259534 0.259534 0.259533 0.259533 0.259533 0.259532 0.259532 0.259564
|
||||
0.259563 0.259562 0.259561 0.259561 0.25956 0.259559 0.259558 0.259556 0.302362 0.30236 0.302359 0.259555
|
||||
0.259555 0.259555 0.259555 0.259554 0.259554 0.259554 0.259553 0.259553 0.259553 0.259552 0.259552 0.259552
|
||||
0.259583 0.259582 0.259581 0.25958 0.25958 0.259579 0.259578 0.259576 0.259575 0.302488 0.302486 0.302485
|
||||
0.259574 0.259574 0.259574 0.259574 0.259573 0.259573 0.259573 0.259573 0.259572 0.259572 0.259572 0.259572
|
||||
0.259572 0.259602 0.259601 0.2596 0.259599 0.259598 0.259598 0.259597 0.259595 0.259594 0.302613 0.30261
|
||||
0.302609 0.259593 0.259593 0.259593 0.259593 0.259593 0.259592 0.259592 0.259592 0.259592 0.259591 0.259591
|
||||
0.259591 0.259591 0.259621 0.25962 0.259619 0.259618 0.259617 0.259617 0.259616 0.259615 0.259614 0.259612
|
||||
0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259611 0.259611 0.259611 0.259611
|
||||
0.259611 0.259611 0.25961 0.259639 0.259638 0.259638 0.259637 0.259636 0.259636 0.259635 0.259634 0.259633
|
||||
0.259632 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.25963 0.25963 0.25963
|
||||
0.25963 0.25963 0.25963 0.25963 0.259655 0.259657 0.259657 0.259657 0.259656 0.259655 0.259654 0.259653
|
||||
0.259652 0.259651 0.259651 0.259651 0.259651 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965
|
||||
0.259649 0.259649 0.259649 0.259649 0.259649
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="temperature" NumberOfComponents="1" format="ascii">
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15
|
||||
393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15
|
||||
</DataArray>
|
||||
</PointData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
456
tests/referencesolutions/co2injection_flash_ecfv-heuristix.vtu
Normal file
456
tests/referencesolutions/co2injection_flash_ecfv-heuristix.vtu
Normal file
@ -0,0 +1,456 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<CellData Scalars="moleFrac_l^Brine">
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994978 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994975 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994975 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994979 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994979
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00501881
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00502213 0.0104165
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500008 0.00502522 0.0104166
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500007 0.00502499 0.0104166
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500005 0.00502131 0.0104167
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00502135
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327804 0.00327805 0.00327807 0.00327808 0.00327809 0.0032781 0.00327811 0.00327811 0.00327811 0.00327812 0.00327813 0.00327814
|
||||
0.00327816 0.00327818 0.00327821 0.00327822 0.00327824 0.00327826 0.00327828 0.00327829 0.00327831 0.00327833 0.00327834 0.00327835
|
||||
0.00327763 0.00327765 0.00327766 0.00327768 0.00327769 0.0032777 0.0032777 0.00327771 0.0032777 0.00327771 0.00327772 0.00327773
|
||||
0.00327776 0.00327778 0.0032778 0.00327782 0.00327784 0.00327785 0.00327787 0.00327789 0.00327791 0.00327792 0.00327794 0.00327789
|
||||
0.00327723 0.00327724 0.00327726 0.00327727 0.00327728 0.00327729 0.0032773 0.0032773 0.0297698 0.0297699 0.0297699 0.0297701
|
||||
0.00327735 0.00327737 0.00327739 0.00327741 0.00327743 0.00327745 0.00327747 0.00327748 0.0032775 0.00327752 0.00327746 0.00325972
|
||||
0.00327683 0.00327684 0.00327685 0.00327687 0.00327688 0.00327689 0.0032769 0.00327691 0.029764 0.0297641 0.0297642 0.0297643
|
||||
0.00327695 0.00327697 0.00327699 0.00327701 0.00327702 0.00327704 0.00327706 0.00327707 0.00327709 0.00327711 0.00327705 0.00325932
|
||||
0.00327642 0.00327644 0.00327645 0.00327646 0.00327648 0.00327649 0.0032765 0.00327652 0.0297583 0.0297583 0.0297584 0.0297585
|
||||
0.00327655 0.00327657 0.00327659 0.0032766 0.00327662 0.00327663 0.00327665 0.00327667 0.00327668 0.0032767 0.00327664 0.00325891
|
||||
0.00327602 0.00327603 0.00327604 0.00327606 0.00327607 0.00327609 0.0032761 0.00327612 0.0297524 0.0297525 0.0297526 0.0297527
|
||||
0.00327615 0.00327617 0.00327618 0.0032762 0.00327621 0.00327623 0.00327624 0.00327626 0.00327627 0.00327629 0.00327624 0.00325849
|
||||
0.00327561 0.00327562 0.00327564 0.00327565 0.00327567 0.00327569 0.00327571 0.00327573 0.0297466 0.0297467 0.0297468 0.0297468
|
||||
0.00327576 0.00327577 0.00327578 0.00327579 0.00327581 0.00327582 0.00327583 0.00327585 0.00327586 0.00327587 0.00327589 0.00327583
|
||||
0.0032752 0.00327522 0.00327523 0.00327525 0.00327527 0.00327528 0.00327531 0.00327533 0.0297408 0.0297409 0.029741 0.029741
|
||||
0.00327536 0.00327537 0.00327537 0.00327539 0.0032754 0.00327541 0.00327542 0.00327543 0.00327545 0.00327546 0.00327547 0.00327547
|
||||
0.0032748 0.00327481 0.00327483 0.00327484 0.00327486 0.00327488 0.0032749 0.00327493 0.029735 0.0297351 0.0297352 0.0297352
|
||||
0.00327496 0.00327496 0.00327497 0.00327498 0.00327499 0.003275 0.00327501 0.00327502 0.00327504 0.00327505 0.00327505 0.00327506
|
||||
0.00327377 0.00327378 0.00327379 0.00327381 0.00327383 0.00327385 0.00327388 0.00327391 0.0297234 0.0297235 0.0297236 0.0297236
|
||||
0.00327393 0.00327393 0.00327394 0.00327395 0.00327396 0.00327397 0.00327398 0.00327399 0.003274 0.003274 0.00327401 0.00327401
|
||||
0.00327336 0.00327338 0.00327339 0.00327341 0.00327343 0.00327346 0.00327348 0.00327351 0.0297174 0.0297175 0.0297176 0.0297177
|
||||
0.00327353 0.00327354 0.00327354 0.00327354 0.00327355 0.00327356 0.00327357 0.00327357 0.00327358 0.00327359 0.00327359 0.0032736
|
||||
0.00327296 0.00327297 0.00327299 0.00327301 0.00327303 0.00327305 0.00327308 0.00327311 0.0297115 0.0297116 0.0297117 0.0297117
|
||||
0.00327313 0.00327313 0.00327314 0.00327314 0.00327314 0.00327315 0.00327316 0.00327316 0.00327317 0.00327317 0.00327318 0.00327318
|
||||
0.00327255 0.00327257 0.00327259 0.00327261 0.00327263 0.00327265 0.00327268 0.00327271 0.0297056 0.0297057 0.0297057 0.0297058
|
||||
0.00327273 0.00327273 0.00327273 0.00327273 0.00327274 0.00327274 0.00327274 0.00327275 0.00327275 0.00327276 0.00327276 0.00327276
|
||||
0.00327214 0.00327216 0.00327218 0.0032722 0.00327222 0.00327224 0.00327227 0.0032723 0.0296996 0.0296998 0.0296999 0.0296999
|
||||
0.00327233 0.00327233 0.00327232 0.00327232 0.00327233 0.00327233 0.00327233 0.00327234 0.00327234 0.00327234 0.00327234 0.00327235
|
||||
0.00327173 0.00327175 0.00327177 0.00327179 0.00327181 0.00327183 0.00327186 0.00327189 0.00327191 0.00327192 0.00327193 0.00327193
|
||||
0.00327192 0.00327192 0.00327191 0.00327191 0.00327192 0.00327192 0.00327192 0.00327192 0.00327193 0.00327193 0.00327193 0.00327193
|
||||
0.00327132 0.00327134 0.00327136 0.00327138 0.0032714 0.00327142 0.00327145 0.00327147 0.00327149 0.0032715 0.00327151 0.00327151
|
||||
0.00327151 0.0032715 0.0032715 0.0032715 0.0032715 0.0032715 0.00327151 0.00327151 0.00327151 0.00327151 0.00327152 0.00327152
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259413 0.259412 0.259412 0.259411 0.259411 0.25941 0.25941 0.25941 0.25941 0.259409 0.259409 0.259408
|
||||
0.259407 0.259406 0.259405 0.259404 0.259403 0.259403 0.259402 0.259401 0.2594 0.2594 0.259399 0.2594
|
||||
0.259432 0.259432 0.259431 0.25943 0.25943 0.259429 0.259429 0.259429 0.259429 0.259429 0.259428 0.259428
|
||||
0.259427 0.259426 0.259425 0.259424 0.259423 0.259422 0.259421 0.25942 0.25942 0.259419 0.259421 0.260393
|
||||
0.259451 0.259451 0.25945 0.25945 0.259449 0.259448 0.259448 0.259448 0.301373 0.301372 0.30137 0.301367
|
||||
0.259446 0.259445 0.259444 0.259443 0.259442 0.259441 0.25944 0.25944 0.259439 0.259441 0.260585 0.540484
|
||||
0.25947 0.25947 0.259469 0.259469 0.259468 0.259467 0.259467 0.259467 0.301494 0.301493 0.301491 0.301489
|
||||
0.259465 0.259464 0.259463 0.259462 0.259461 0.25946 0.25946 0.259459 0.259458 0.259461 0.260765 0.540526
|
||||
0.259489 0.259489 0.259488 0.259487 0.259487 0.259486 0.259486 0.259485 0.301616 0.301615 0.301613 0.301611
|
||||
0.259483 0.259482 0.259482 0.259481 0.25948 0.259479 0.259479 0.259478 0.259477 0.25948 0.260772 0.540569
|
||||
0.259508 0.259508 0.259507 0.259506 0.259506 0.259505 0.259504 0.259503 0.301738 0.301736 0.301735 0.301733
|
||||
0.259502 0.259501 0.2595 0.2595 0.259499 0.259498 0.259498 0.259497 0.259496 0.259498 0.260601 0.540613
|
||||
0.259527 0.259526 0.259526 0.259525 0.259524 0.259523 0.259523 0.259522 0.30186 0.301858 0.301857 0.301855
|
||||
0.25952 0.25952 0.259519 0.259519 0.259518 0.259517 0.259517 0.259516 0.259515 0.259515 0.259517 0.260622
|
||||
0.259546 0.259545 0.259544 0.259544 0.259543 0.259542 0.259541 0.25954 0.301982 0.30198 0.301978 0.301977
|
||||
0.259539 0.259538 0.259538 0.259537 0.259537 0.259536 0.259536 0.259535 0.259535 0.259534 0.259534 0.259535
|
||||
0.259565 0.259564 0.259564 0.259563 0.259562 0.259561 0.25956 0.259559 0.302104 0.302102 0.3021 0.3021
|
||||
0.259557 0.259557 0.259557 0.259557 0.259556 0.259555 0.259555 0.259554 0.259554 0.259553 0.259553 0.259553
|
||||
0.259535 0.259534 0.259533 0.259532 0.259532 0.259531 0.259529 0.259528 0.302172 0.302169 0.302167 0.302167
|
||||
0.259527 0.259527 0.259526 0.259526 0.259526 0.259525 0.259525 0.259524 0.259524 0.259523 0.259523 0.259523
|
||||
0.259554 0.259553 0.259552 0.259551 0.25955 0.259549 0.259548 0.259547 0.302298 0.302296 0.302294 0.302293
|
||||
0.259546 0.259546 0.259545 0.259545 0.259545 0.259544 0.259544 0.259544 0.259543 0.259543 0.259543 0.259543
|
||||
0.259573 0.259572 0.259571 0.25957 0.259569 0.259568 0.259567 0.259566 0.302424 0.302421 0.30242 0.302419
|
||||
0.259564 0.259564 0.259564 0.259564 0.259564 0.259564 0.259563 0.259563 0.259563 0.259563 0.259562 0.259562
|
||||
0.259592 0.259591 0.25959 0.259589 0.259588 0.259587 0.259586 0.259584 0.302549 0.302546 0.302545 0.302544
|
||||
0.259583 0.259583 0.259583 0.259583 0.259583 0.259583 0.259583 0.259582 0.259582 0.259582 0.259582 0.259582
|
||||
0.259611 0.25961 0.259609 0.259608 0.259607 0.259606 0.259605 0.259603 0.302673 0.30267 0.302668 0.302668
|
||||
0.259602 0.259602 0.259602 0.259602 0.259602 0.259602 0.259602 0.259602 0.259601 0.259601 0.259601 0.259601
|
||||
0.25963 0.259629 0.259628 0.259627 0.259626 0.259625 0.259624 0.259623 0.259621 0.259621 0.25962 0.25962
|
||||
0.259621 0.259621 0.259621 0.259621 0.259621 0.259621 0.259621 0.259621 0.259621 0.259621 0.25962 0.25962
|
||||
0.259649 0.259648 0.259647 0.259646 0.259645 0.259644 0.259643 0.259642 0.259641 0.25964 0.25964 0.25964
|
||||
0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964
|
||||
</DataArray>
|
||||
</CellData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
@ -1,852 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="pressure_l">
|
||||
<DataArray type="Float32" Name="pressure_l" NumberOfComponents="1" format="ascii">
|
||||
2.63165e+07 2.63215e+07 2.62952e+07 2.62956e+07 2.63233e+07 2.62969e+07 2.63245e+07 2.62981e+07 2.63255e+07 2.6299e+07 2.63264e+07 2.62999e+07
|
||||
2.63271e+07 2.63006e+07 2.63277e+07 2.63012e+07 2.63282e+07 2.63017e+07 2.63288e+07 2.63021e+07 2.63294e+07 2.63028e+07 2.63303e+07 2.63037e+07
|
||||
2.63314e+07 2.63048e+07 2.63327e+07 2.63061e+07 2.63339e+07 2.63074e+07 2.63352e+07 2.63086e+07 2.63364e+07 2.63098e+07 2.63375e+07 2.6311e+07
|
||||
2.63387e+07 2.63121e+07 2.63398e+07 2.63132e+07 2.63408e+07 2.63143e+07 2.63419e+07 2.63154e+07 2.63428e+07 2.63164e+07 2.63435e+07 2.63172e+07
|
||||
2.63438e+07 2.63176e+07 2.62692e+07 2.62699e+07 2.62708e+07 2.62718e+07 2.62727e+07 2.62735e+07 2.62742e+07 2.62748e+07 2.62752e+07 2.62753e+07
|
||||
2.62758e+07 2.62767e+07 2.62782e+07 2.62796e+07 2.62809e+07 2.62822e+07 2.62833e+07 2.62845e+07 2.62856e+07 2.62867e+07 2.62878e+07 2.62889e+07
|
||||
2.62901e+07 2.62912e+07 2.62924e+07 2.6243e+07 2.62438e+07 2.62446e+07 2.62455e+07 2.62464e+07 2.62473e+07 2.6248e+07 2.62487e+07 2.62491e+07
|
||||
2.6249e+07 2.62492e+07 2.62496e+07 2.62517e+07 2.62532e+07 2.62545e+07 2.62557e+07 2.62569e+07 2.6258e+07 2.62591e+07 2.62602e+07 2.62613e+07
|
||||
2.62625e+07 2.62637e+07 2.62652e+07 2.62671e+07 2.62168e+07 2.62176e+07 2.62185e+07 2.62193e+07 2.62202e+07 2.62211e+07 2.62219e+07 2.62227e+07
|
||||
2.62233e+07 2.62235e+07 2.62238e+07 2.62242e+07 2.62256e+07 2.6227e+07 2.62282e+07 2.62293e+07 2.62304e+07 2.62315e+07 2.62326e+07 2.62337e+07
|
||||
2.62348e+07 2.6236e+07 2.62373e+07 2.62388e+07 2.62408e+07 2.61906e+07 2.61914e+07 2.61922e+07 2.61931e+07 2.6194e+07 2.61949e+07 2.61959e+07
|
||||
2.61968e+07 2.61977e+07 2.6198e+07 2.61983e+07 2.61986e+07 2.61998e+07 2.62009e+07 2.62019e+07 2.6203e+07 2.6204e+07 2.62051e+07 2.62061e+07
|
||||
2.62071e+07 2.62082e+07 2.62093e+07 2.62105e+07 2.6212e+07 2.62138e+07 2.61644e+07 2.61652e+07 2.6166e+07 2.61669e+07 2.61678e+07 2.61688e+07
|
||||
2.61698e+07 2.61709e+07 2.61721e+07 2.61724e+07 2.61728e+07 2.61731e+07 2.61739e+07 2.61748e+07 2.61757e+07 2.61767e+07 2.61776e+07 2.61786e+07
|
||||
2.61796e+07 2.61806e+07 2.61816e+07 2.61826e+07 2.61836e+07 2.61847e+07 2.61858e+07 2.61381e+07 2.61389e+07 2.61397e+07 2.61406e+07 2.61415e+07
|
||||
2.61426e+07 2.61437e+07 2.6145e+07 2.61464e+07 2.61469e+07 2.61473e+07 2.61476e+07 2.61481e+07 2.61487e+07 2.61495e+07 2.61503e+07 2.61512e+07
|
||||
2.61521e+07 2.6153e+07 2.6154e+07 2.61549e+07 2.61558e+07 2.61567e+07 2.61574e+07 2.61577e+07 2.61119e+07 2.61125e+07 2.61133e+07 2.61142e+07
|
||||
2.61152e+07 2.61162e+07 2.61175e+07 2.61189e+07 2.61207e+07 2.61215e+07 2.61219e+07 2.61222e+07 2.61221e+07 2.61225e+07 2.61231e+07 2.61239e+07
|
||||
2.61247e+07 2.61256e+07 2.61265e+07 2.61274e+07 2.61283e+07 2.61292e+07 2.61299e+07 2.61304e+07 2.61306e+07 2.60857e+07 2.60863e+07 2.60871e+07
|
||||
2.60881e+07 2.60891e+07 2.60902e+07 2.60915e+07 2.6093e+07 2.60949e+07 2.60957e+07 2.60961e+07 2.60963e+07 2.60962e+07 2.60965e+07 2.6097e+07
|
||||
2.60976e+07 2.60984e+07 2.60991e+07 2.61e+07 2.61008e+07 2.61016e+07 2.61023e+07 2.61029e+07 2.61033e+07 2.61035e+07 2.60595e+07 2.60603e+07
|
||||
2.60612e+07 2.60622e+07 2.60633e+07 2.60645e+07 2.60658e+07 2.60673e+07 2.6069e+07 2.60694e+07 2.60699e+07 2.60701e+07 2.60703e+07 2.60706e+07
|
||||
2.6071e+07 2.60715e+07 2.60721e+07 2.60727e+07 2.60734e+07 2.60741e+07 2.60747e+07 2.60753e+07 2.60757e+07 2.6076e+07 2.60761e+07 2.60333e+07
|
||||
2.60342e+07 2.60352e+07 2.60362e+07 2.60373e+07 2.60386e+07 2.60399e+07 2.60414e+07 2.6043e+07 2.60434e+07 2.60438e+07 2.6044e+07 2.60444e+07
|
||||
2.60446e+07 2.60449e+07 2.60453e+07 2.60458e+07 2.60463e+07 2.60469e+07 2.60474e+07 2.60479e+07 2.60483e+07 2.60487e+07 2.60489e+07 2.6049e+07
|
||||
2.60071e+07 2.60081e+07 2.60091e+07 2.60102e+07 2.60113e+07 2.60125e+07 2.60139e+07 2.60154e+07 2.6017e+07 2.60175e+07 2.6018e+07 2.60182e+07
|
||||
2.60184e+07 2.60186e+07 2.60188e+07 2.60191e+07 2.60194e+07 2.60199e+07 2.60203e+07 2.60207e+07 2.60212e+07 2.60215e+07 2.60218e+07 2.6022e+07
|
||||
2.6022e+07 2.59809e+07 2.5982e+07 2.5983e+07 2.59841e+07 2.59852e+07 2.59864e+07 2.59877e+07 2.59892e+07 2.59911e+07 2.59918e+07 2.59923e+07
|
||||
2.59925e+07 2.59924e+07 2.59924e+07 2.59925e+07 2.59928e+07 2.59931e+07 2.59934e+07 2.59938e+07 2.59941e+07 2.59945e+07 2.59948e+07 2.5995e+07
|
||||
2.59951e+07 2.59952e+07 2.59547e+07 2.59559e+07 2.59569e+07 2.59579e+07 2.59589e+07 2.59601e+07 2.59614e+07 2.59627e+07 2.59641e+07 2.59657e+07
|
||||
2.59663e+07 2.59665e+07 2.59661e+07 2.59661e+07 2.59662e+07 2.59664e+07 2.59666e+07 2.59669e+07 2.59672e+07 2.59675e+07 2.59678e+07 2.59681e+07
|
||||
2.59683e+07 2.59684e+07 2.59684e+07 2.59287e+07 2.59302e+07 2.59308e+07 2.59316e+07 2.59326e+07 2.59337e+07 2.59349e+07 2.59362e+07 2.59374e+07
|
||||
2.59385e+07 2.59392e+07 2.59395e+07 2.59396e+07 2.59396e+07 2.59397e+07 2.59399e+07 2.59401e+07 2.59404e+07 2.59407e+07 2.5941e+07 2.59412e+07
|
||||
2.59415e+07 2.59416e+07 2.59418e+07 2.59418e+07 2.59074e+07 2.59043e+07 2.59045e+07 2.59052e+07 2.59061e+07 2.59072e+07 2.59084e+07 2.59096e+07
|
||||
2.59108e+07 2.59118e+07 2.59125e+07 2.59129e+07 2.5913e+07 2.59131e+07 2.59132e+07 2.59134e+07 2.59136e+07 2.59139e+07 2.59141e+07 2.59144e+07
|
||||
2.59147e+07 2.59149e+07 2.59151e+07 2.59152e+07 2.59152e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="pressure_g" NumberOfComponents="1" format="ascii">
|
||||
2.63215e+07 2.63265e+07 2.63002e+07 2.63006e+07 2.63283e+07 2.63019e+07 2.63295e+07 2.63031e+07 2.63305e+07 2.6304e+07 2.63314e+07 2.63049e+07
|
||||
2.63321e+07 2.63056e+07 2.63327e+07 2.63062e+07 2.63332e+07 2.63067e+07 2.63338e+07 2.63071e+07 2.63344e+07 2.63078e+07 2.63353e+07 2.63087e+07
|
||||
2.63364e+07 2.63098e+07 2.63377e+07 2.63111e+07 2.63389e+07 2.63124e+07 2.63402e+07 2.63136e+07 2.63414e+07 2.63148e+07 2.63425e+07 2.6316e+07
|
||||
2.63437e+07 2.63171e+07 2.63448e+07 2.63182e+07 2.63458e+07 2.63193e+07 2.63469e+07 2.63204e+07 2.63478e+07 2.63214e+07 2.63485e+07 2.63222e+07
|
||||
2.63488e+07 2.63226e+07 2.62742e+07 2.62749e+07 2.62758e+07 2.62768e+07 2.62777e+07 2.62785e+07 2.62792e+07 2.62798e+07 2.62802e+07 2.62803e+07
|
||||
2.62808e+07 2.62817e+07 2.62832e+07 2.62846e+07 2.62859e+07 2.62872e+07 2.62883e+07 2.62895e+07 2.62906e+07 2.62917e+07 2.62928e+07 2.62939e+07
|
||||
2.62951e+07 2.62962e+07 2.62974e+07 2.6248e+07 2.62488e+07 2.62496e+07 2.62505e+07 2.62514e+07 2.62523e+07 2.6253e+07 2.62537e+07 2.62541e+07
|
||||
2.6254e+07 2.62542e+07 2.62546e+07 2.62567e+07 2.62582e+07 2.62595e+07 2.62607e+07 2.62619e+07 2.6263e+07 2.62641e+07 2.62652e+07 2.62663e+07
|
||||
2.62675e+07 2.62687e+07 2.62702e+07 2.62721e+07 2.62218e+07 2.62226e+07 2.62235e+07 2.62243e+07 2.62252e+07 2.62261e+07 2.62269e+07 2.62277e+07
|
||||
2.62283e+07 2.62285e+07 2.62288e+07 2.62292e+07 2.62306e+07 2.6232e+07 2.62332e+07 2.62343e+07 2.62354e+07 2.62365e+07 2.62376e+07 2.62387e+07
|
||||
2.62398e+07 2.6241e+07 2.62423e+07 2.62438e+07 2.62458e+07 2.61956e+07 2.61964e+07 2.61972e+07 2.61981e+07 2.6199e+07 2.61999e+07 2.62009e+07
|
||||
2.62018e+07 2.62027e+07 2.6203e+07 2.62033e+07 2.62036e+07 2.62048e+07 2.62059e+07 2.62069e+07 2.6208e+07 2.6209e+07 2.62101e+07 2.62111e+07
|
||||
2.62121e+07 2.62132e+07 2.62143e+07 2.62155e+07 2.6217e+07 2.62188e+07 2.61694e+07 2.61702e+07 2.6171e+07 2.61719e+07 2.61728e+07 2.61738e+07
|
||||
2.61748e+07 2.61759e+07 2.61771e+07 2.61774e+07 2.61778e+07 2.61781e+07 2.61789e+07 2.61798e+07 2.61807e+07 2.61817e+07 2.61826e+07 2.61836e+07
|
||||
2.61846e+07 2.61856e+07 2.61866e+07 2.61876e+07 2.61886e+07 2.61897e+07 2.61908e+07 2.61431e+07 2.61439e+07 2.61447e+07 2.61456e+07 2.61465e+07
|
||||
2.61476e+07 2.61487e+07 2.615e+07 2.61514e+07 2.61519e+07 2.61523e+07 2.61526e+07 2.61531e+07 2.61537e+07 2.61545e+07 2.61553e+07 2.61562e+07
|
||||
2.61571e+07 2.6158e+07 2.6159e+07 2.61599e+07 2.61608e+07 2.61617e+07 2.61624e+07 2.61627e+07 2.61169e+07 2.61175e+07 2.61183e+07 2.61192e+07
|
||||
2.61202e+07 2.61212e+07 2.61225e+07 2.61239e+07 2.61257e+07 2.61265e+07 2.61269e+07 2.61272e+07 2.61271e+07 2.61275e+07 2.61281e+07 2.61289e+07
|
||||
2.61297e+07 2.61306e+07 2.61315e+07 2.61324e+07 2.61333e+07 2.61342e+07 2.61349e+07 2.61354e+07 2.61356e+07 2.60957e+07 2.60963e+07 2.60971e+07
|
||||
2.60981e+07 2.60991e+07 2.61002e+07 2.61015e+07 2.6103e+07 2.61049e+07 2.61057e+07 2.61061e+07 2.61063e+07 2.61062e+07 2.61065e+07 2.6107e+07
|
||||
2.61076e+07 2.61084e+07 2.61091e+07 2.611e+07 2.61108e+07 2.61116e+07 2.61123e+07 2.61129e+07 2.61133e+07 2.61135e+07 2.60695e+07 2.60703e+07
|
||||
2.60712e+07 2.60722e+07 2.60733e+07 2.60745e+07 2.60758e+07 2.60773e+07 2.6079e+07 2.60794e+07 2.60799e+07 2.60801e+07 2.60803e+07 2.60806e+07
|
||||
2.6081e+07 2.60815e+07 2.60821e+07 2.60827e+07 2.60834e+07 2.60841e+07 2.60847e+07 2.60853e+07 2.60857e+07 2.6086e+07 2.60861e+07 2.60433e+07
|
||||
2.60442e+07 2.60452e+07 2.60462e+07 2.60473e+07 2.60486e+07 2.60499e+07 2.60514e+07 2.6053e+07 2.60534e+07 2.60538e+07 2.6054e+07 2.60544e+07
|
||||
2.60546e+07 2.60549e+07 2.60553e+07 2.60558e+07 2.60563e+07 2.60569e+07 2.60574e+07 2.60579e+07 2.60583e+07 2.60587e+07 2.60589e+07 2.6059e+07
|
||||
2.60171e+07 2.60181e+07 2.60191e+07 2.60202e+07 2.60213e+07 2.60225e+07 2.60239e+07 2.60254e+07 2.6027e+07 2.60275e+07 2.6028e+07 2.60282e+07
|
||||
2.60284e+07 2.60286e+07 2.60288e+07 2.60291e+07 2.60294e+07 2.60299e+07 2.60303e+07 2.60307e+07 2.60312e+07 2.60315e+07 2.60318e+07 2.6032e+07
|
||||
2.6032e+07 2.59909e+07 2.5992e+07 2.5993e+07 2.59941e+07 2.59952e+07 2.59964e+07 2.59977e+07 2.59992e+07 2.60011e+07 2.60018e+07 2.60023e+07
|
||||
2.60025e+07 2.60024e+07 2.60024e+07 2.60025e+07 2.60028e+07 2.60031e+07 2.60034e+07 2.60038e+07 2.60041e+07 2.60045e+07 2.60048e+07 2.6005e+07
|
||||
2.60051e+07 2.60052e+07 2.59647e+07 2.59659e+07 2.59669e+07 2.59679e+07 2.59689e+07 2.59701e+07 2.59714e+07 2.59727e+07 2.59741e+07 2.59757e+07
|
||||
2.59763e+07 2.59765e+07 2.59761e+07 2.59761e+07 2.59762e+07 2.59764e+07 2.59766e+07 2.59769e+07 2.59772e+07 2.59775e+07 2.59778e+07 2.59781e+07
|
||||
2.59783e+07 2.59784e+07 2.59784e+07 2.59387e+07 2.59402e+07 2.59408e+07 2.59416e+07 2.59426e+07 2.59437e+07 2.59449e+07 2.59462e+07 2.59474e+07
|
||||
2.59485e+07 2.59492e+07 2.59495e+07 2.59496e+07 2.59496e+07 2.59497e+07 2.59499e+07 2.59501e+07 2.59504e+07 2.59507e+07 2.5951e+07 2.59512e+07
|
||||
2.59515e+07 2.59516e+07 2.59518e+07 2.59518e+07 2.59174e+07 2.59143e+07 2.59145e+07 2.59152e+07 2.59161e+07 2.59172e+07 2.59184e+07 2.59196e+07
|
||||
2.59208e+07 2.59218e+07 2.59225e+07 2.59229e+07 2.5923e+07 2.59231e+07 2.59232e+07 2.59234e+07 2.59236e+07 2.59239e+07 2.59241e+07 2.59244e+07
|
||||
2.59247e+07 2.59249e+07 2.59251e+07 2.59252e+07 2.59252e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_l" NumberOfComponents="1" format="ascii">
|
||||
1082.34 1082.34 1082.33 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33
|
||||
1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33
|
||||
1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.35 1082.33 1082.35 1082.33 1082.35 1082.34
|
||||
1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34
|
||||
1082.35 1082.35 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.31 1082.3
|
||||
1082.3 1082.3 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.33 1082.33
|
||||
1082.33 1082.33 1084.5 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.29
|
||||
1019.39 1019.36 1019.76 1082.29 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31
|
||||
1082.31 1082.32 1082.34 1086.65 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3
|
||||
1082.25 1019.22 1019.15 1019.45 1082.28 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3
|
||||
1082.3 1082.3 1082.3 1082.33 1086.64 1082.28 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29
|
||||
1082.29 1082.22 1019.21 1019.14 1019.38 1082.27 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29
|
||||
1082.29 1082.29 1082.29 1082.29 1082.32 1086.63 1082.27 1082.27 1082.27 1082.28 1082.28 1082.28
|
||||
1082.28 1082.28 1082.2 1019.2 1019.13 1019.33 1082.25 1082.28 1082.28 1082.28 1082.28 1082.28
|
||||
1082.28 1082.28 1082.28 1082.28 1082.28 1082.29 1084.46 1082.26 1082.26 1082.26 1082.26 1082.26
|
||||
1082.26 1082.27 1082.27 1082.17 1019.19 1019.12 1019.27 1082.24 1082.27 1082.27 1082.27 1082.27
|
||||
1082.27 1082.27 1082.27 1082.27 1082.27 1082.27 1082.27 1082.28 1082.25 1082.25 1082.25 1082.25
|
||||
1082.25 1082.25 1082.25 1082.25 1082.12 1019.18 1019.11 1019.19 1082.22 1082.26 1082.26 1082.26
|
||||
1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.24 1082.24 1082.24
|
||||
1082.24 1082.24 1082.24 1082.24 1082.24 1082.21 1019.17 1019.1 1019.17 1082.22 1082.25 1082.25
|
||||
1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.23 1082.23
|
||||
1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1082.2 1019.17 1019.09 1019.17 1082.21 1082.23
|
||||
1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.22
|
||||
1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.19 1019.16 1019.08 1019.16 1082.2
|
||||
1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23
|
||||
1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.18 1019.15 1019.07 1019.15
|
||||
1082.19 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21
|
||||
1082.21 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.17 1019.19 1019.14
|
||||
1019.19 1082.18 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2
|
||||
1082.2 1082.2 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.18 1082.17
|
||||
1082.16 1082.17 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19
|
||||
1082.19 1082.19 1082.19 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18
|
||||
1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18
|
||||
1082.18 1082.18 1082.18 1082.18 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_g" NumberOfComponents="1" format="ascii">
|
||||
969.119 969.141 969.022 969.024 969.149 969.03 969.155 969.035 969.159 969.04 969.163 969.043
|
||||
969.166 969.047 969.169 969.049 969.171 969.051 969.173 969.053 969.176 969.056 969.18 969.06
|
||||
969.185 969.066 969.191 969.071 969.196 969.077 969.202 969.083 969.207 969.088 969.212 969.093
|
||||
969.217 969.098 969.222 969.103 969.227 969.108 969.232 969.113 969.236 969.117 969.239 969.121
|
||||
969.24 969.12 968.905 968.908 968.912 968.917 968.921 968.925 968.928 968.93 968.852 968.693
|
||||
968.615 968.699 968.866 968.952 968.958 968.963 968.968 968.974 968.979 968.984 968.989 968.994
|
||||
968.999 969 967.064 968.787 968.791 968.794 968.798 968.802 968.806 968.81 968.812 968.574
|
||||
528.706 528.58 530.231 968.587 968.833 968.839 968.844 968.849 968.854 968.859 968.864 968.869
|
||||
968.874 968.88 968.877 965.019 968.669 968.673 968.676 968.68 968.684 968.688 968.692 968.694
|
||||
968.04 527.628 527.322 528.558 968.389 968.714 968.72 968.725 968.73 968.735 968.74 968.744
|
||||
968.749 968.755 968.76 968.758 964.898 968.55 968.554 968.558 968.562 968.566 968.57 968.574
|
||||
968.577 967.703 527.189 526.884 527.897 968.272 968.597 968.602 968.606 968.611 968.615 968.62
|
||||
968.625 968.629 968.634 968.64 968.637 964.775 968.432 968.436 968.44 968.444 968.448 968.452
|
||||
968.457 968.46 967.432 526.752 526.448 527.286 968.155 968.479 968.483 968.487 968.492 968.496
|
||||
968.5 968.505 968.509 968.514 968.519 968.52 966.579 968.314 968.317 968.321 968.325 968.329
|
||||
968.334 968.339 968.342 967.066 526.315 526.012 526.632 968.038 968.361 968.365 968.368 968.372
|
||||
968.377 968.381 968.385 968.389 968.393 968.397 968.4 968.399 968.195 968.198 968.202 968.206
|
||||
968.21 968.215 968.221 968.223 966.403 525.881 525.578 525.916 967.812 968.243 968.246 968.249
|
||||
968.253 968.257 968.261 968.265 968.269 968.273 968.276 968.279 968.28 968.099 968.102 968.106
|
||||
968.11 968.114 968.12 968.125 968.132 967.667 525.521 525.218 525.533 967.808 968.147 968.15
|
||||
968.153 968.156 968.16 968.163 968.167 968.171 968.174 968.177 968.179 968.179 967.98 967.984
|
||||
967.988 967.992 967.997 968.003 968.009 968.015 967.596 525.068 524.764 525.092 967.707 968.03
|
||||
968.032 968.034 968.037 968.04 968.043 968.046 968.049 968.051 968.053 968.055 968.055 967.861
|
||||
967.865 967.87 967.874 967.879 967.885 967.891 967.897 967.49 524.618 524.313 524.646 967.589
|
||||
967.912 967.914 967.915 967.918 967.92 967.922 967.925 967.927 967.929 967.931 967.932 967.932
|
||||
967.742 967.747 967.751 967.756 967.761 967.767 967.773 967.779 967.362 524.171 523.866 524.193
|
||||
967.47 967.794 967.795 967.796 967.798 967.8 967.802 967.804 967.806 967.807 967.808 967.809
|
||||
967.81 967.623 967.628 967.633 967.638 967.643 967.648 967.654 967.66 967.268 523.959 523.735
|
||||
523.972 967.409 967.675 967.676 967.677 967.678 967.68 967.681 967.683 967.684 967.686 967.687
|
||||
967.687 967.688 967.504 967.51 967.514 967.519 967.523 967.529 967.534 967.54 967.466 967.225
|
||||
967.177 967.255 967.475 967.555 967.556 967.557 967.558 967.559 967.561 967.562 967.563 967.565
|
||||
967.565 967.566 967.566 967.386 967.393 967.396 967.399 967.404 967.409 967.414 967.42 967.425
|
||||
967.43 967.433 967.435 967.435 967.435 967.436 967.437 967.438 967.439 967.44 967.441 967.443
|
||||
967.444 967.445 967.445 967.445 967.289 967.275 967.276 967.279 967.283 967.288 967.294 967.299
|
||||
967.304 967.309 967.312 967.314 967.315 967.315 967.315 967.316 967.317 967.318 967.32 967.321
|
||||
967.322 967.323 967.324 967.324 967.324
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="porosity" NumberOfComponents="1" format="ascii">
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.989566 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.994946 0.984182 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.994942 0.984182 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.994946 0.984182 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.994984 0.989565 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.00500002 0.00501739 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.00500004 0.00501708 0.0104342 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.00500017 0.00505422 0.0158179 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.00500019 0.00505824 0.015818 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.00500016 0.00505353 0.0158181 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.00500004 0.00501645 0.0104352 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.00500005 0.00501945 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327813 0.00327822 0.00327782 0.00327782 0.00327825 0.00327784 0.00327827 0.00327786 0.00327828 0.00327788 0.0032783 0.00327789
|
||||
0.00327831 0.0032779 0.00327832 0.00327791 0.00327833 0.00327792 0.00327834 0.00327793 0.00327835 0.00327794 0.00327836 0.00327796
|
||||
0.00327838 0.00327798 0.0032784 0.003278 0.00327842 0.00327802 0.00327844 0.00327804 0.00327846 0.00327806 0.00327848 0.00327807
|
||||
0.0032785 0.00327809 0.00327852 0.00327811 0.00327854 0.00327813 0.00327855 0.00327815 0.00327857 0.00327816 0.00327858 0.00327818
|
||||
0.00327858 0.00327819 0.00327742 0.00327743 0.00327744 0.00327746 0.00327747 0.00327749 0.0032775 0.00327751 0.00327948 0.0032834
|
||||
0.00328536 0.0032834 0.00327952 0.00327759 0.00327761 0.00327763 0.00327765 0.00327767 0.00327769 0.0032777 0.00327772 0.00327774
|
||||
0.00327776 0.0032778 0.00330748 0.00327702 0.00327703 0.00327704 0.00327706 0.00327707 0.00327708 0.0032771 0.00327711 0.00328301
|
||||
0.0296249 0.0296442 0.0294027 0.00328302 0.00327718 0.0032772 0.00327722 0.00327724 0.00327726 0.00327728 0.0032773 0.00327731
|
||||
0.00327733 0.00327735 0.00327742 0.00333646 0.00327662 0.00327662 0.00327664 0.00327665 0.00327667 0.00327668 0.00327669 0.00327672
|
||||
0.00329285 0.0297145 0.0297608 0.0295784 0.00328458 0.00327678 0.0032768 0.00327682 0.00327683 0.00327685 0.00327687 0.00327689
|
||||
0.00327691 0.00327693 0.00327695 0.00327702 0.00333606 0.00327621 0.00327622 0.00327623 0.00327625 0.00327626 0.00327628 0.00327629
|
||||
0.00327634 0.00329786 0.0297091 0.0297553 0.0296058 0.00328419 0.00327638 0.00327639 0.00327641 0.00327643 0.00327644 0.00327646
|
||||
0.00327648 0.0032765 0.00327652 0.00327653 0.0032766 0.00333562 0.00327581 0.00327582 0.00327583 0.00327584 0.00327586 0.00327587
|
||||
0.00327589 0.00327595 0.00330125 0.0297033 0.0297495 0.0296257 0.00328379 0.00327598 0.00327599 0.003276 0.00327602 0.00327604
|
||||
0.00327605 0.00327607 0.00327609 0.0032761 0.00327612 0.00327616 0.00330582 0.0032754 0.00327541 0.00327542 0.00327544 0.00327545
|
||||
0.00327547 0.00327549 0.00327557 0.00330698 0.0296976 0.0297438 0.0296523 0.0032834 0.00327558 0.00327558 0.0032756 0.00327561
|
||||
0.00327563 0.00327564 0.00327566 0.00327567 0.00327569 0.0032757 0.00327572 0.00327573 0.003275 0.003275 0.00327501 0.00327503
|
||||
0.00327505 0.00327506 0.00327508 0.0032752 0.00332 0.0296918 0.0297381 0.0296885 0.00328566 0.00327517 0.00327518 0.00327519
|
||||
0.0032752 0.00327522 0.00327523 0.00327525 0.00327526 0.00327528 0.00327529 0.0032753 0.0032753 0.00327396 0.00327397 0.00327398
|
||||
0.003274 0.00327402 0.00327403 0.00327406 0.00327409 0.00328568 0.0296801 0.0297265 0.0296802 0.00328239 0.00327414 0.00327415
|
||||
0.00327416 0.00327417 0.00327418 0.00327419 0.00327421 0.00327422 0.00327423 0.00327424 0.00327425 0.00327425 0.00327355 0.00327357
|
||||
0.00327358 0.0032736 0.00327362 0.00327364 0.00327366 0.00327369 0.00328412 0.029674 0.0297205 0.0296722 0.00328159 0.00327374
|
||||
0.00327374 0.00327375 0.00327376 0.00327377 0.00327378 0.00327379 0.00327381 0.00327381 0.00327382 0.00327383 0.00327383 0.00327315
|
||||
0.00327316 0.00327318 0.0032732 0.00327322 0.00327324 0.00327326 0.00327329 0.00328342 0.029668 0.0297145 0.0296655 0.00328118
|
||||
0.00327334 0.00327334 0.00327335 0.00327335 0.00327336 0.00327337 0.00327338 0.00327339 0.0032734 0.0032734 0.00327341 0.00327341
|
||||
0.00327274 0.00327276 0.00327278 0.00327279 0.00327281 0.00327283 0.00327285 0.00327289 0.00328326 0.0296621 0.0297086 0.0296606
|
||||
0.00328079 0.00327294 0.00327293 0.00327294 0.00327295 0.00327295 0.00327296 0.00327297 0.00327297 0.00327298 0.00327298 0.00327299
|
||||
0.00327299 0.00327234 0.00327235 0.00327237 0.00327239 0.00327241 0.00327243 0.00327245 0.00327248 0.00328227 0.0296214 0.0296563
|
||||
0.0296216 0.00327901 0.00327253 0.00327253 0.00327253 0.00327254 0.00327254 0.00327255 0.00327255 0.00327256 0.00327256 0.00327257
|
||||
0.00327257 0.00327257 0.00327193 0.00327195 0.00327196 0.00327198 0.003272 0.00327202 0.00327204 0.00327206 0.00327404 0.0032801
|
||||
0.00328135 0.00327948 0.00327408 0.00327212 0.00327212 0.00327212 0.00327212 0.00327213 0.00327213 0.00327214 0.00327214 0.00327215
|
||||
0.00327215 0.00327215 0.00327216 0.00327152 0.00327155 0.00327156 0.00327157 0.00327159 0.00327161 0.00327163 0.00327165 0.00327167
|
||||
0.00327169 0.0032717 0.00327171 0.0032717 0.0032717 0.00327171 0.00327171 0.00327171 0.00327172 0.00327172 0.00327173 0.00327173
|
||||
0.00327173 0.00327174 0.00327174 0.00327174 0.0032712 0.00327114 0.00327115 0.00327116 0.00327118 0.00327119 0.00327121 0.00327123
|
||||
0.00327125 0.00327127 0.00327128 0.00327129 0.00327129 0.00327129 0.00327129 0.0032713 0.0032713 0.0032713 0.00327131 0.00327131
|
||||
0.00327132 0.00327132 0.00327132 0.00327132 0.00327133
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259408 0.259405 0.259424 0.259423 0.259403 0.259423 0.259402 0.259422 0.259402 0.259421 0.259401 0.25942
|
||||
0.259401 0.25942 0.2594 0.259419 0.2594 0.259419 0.259399 0.259419 0.259399 0.259418 0.259398 0.259418
|
||||
0.259398 0.259417 0.259397 0.259416 0.259396 0.259415 0.259395 0.259414 0.259394 0.259413 0.259393 0.259412
|
||||
0.259393 0.259412 0.259392 0.259411 0.259391 0.25941 0.25939 0.259409 0.25939 0.259409 0.259389 0.25941
|
||||
0.25939 0.260311 0.259443 0.259442 0.259441 0.259441 0.25944 0.25944 0.259439 0.259439 0.259466 0.259522
|
||||
0.25955 0.259521 0.259464 0.259435 0.259434 0.259433 0.259433 0.259432 0.259431 0.25943 0.259429 0.259429
|
||||
0.25943 0.260314 0.542806 0.259462 0.259461 0.25946 0.25946 0.259459 0.259459 0.259458 0.259458 0.259542
|
||||
0.301834 0.301778 0.302454 0.259539 0.259454 0.259453 0.259453 0.259452 0.259451 0.25945 0.259449 0.259449
|
||||
0.259448 0.259456 0.262263 0.825077 0.259481 0.25948 0.259479 0.259479 0.259478 0.259477 0.259477 0.259477
|
||||
0.259707 0.301687 0.301555 0.302068 0.259586 0.259473 0.259472 0.259472 0.259471 0.25947 0.259469 0.259469
|
||||
0.259468 0.259467 0.259476 0.262491 0.825146 0.259499 0.259499 0.259498 0.259498 0.259497 0.259496 0.259496
|
||||
0.259495 0.259803 0.301807 0.301676 0.302096 0.259605 0.259492 0.259491 0.259491 0.25949 0.259489 0.259488
|
||||
0.259488 0.259487 0.259486 0.259494 0.262265 0.825214 0.259518 0.259518 0.259517 0.259516 0.259516 0.259515
|
||||
0.259514 0.259514 0.259876 0.301929 0.301798 0.302145 0.259624 0.259511 0.25951 0.25951 0.259509 0.259508
|
||||
0.259507 0.259507 0.259506 0.259505 0.259507 0.260359 0.54302 0.259537 0.259536 0.259536 0.259535 0.259534
|
||||
0.259534 0.259533 0.259533 0.259982 0.302051 0.301919 0.302176 0.259642 0.25953 0.259529 0.259528 0.259528
|
||||
0.259527 0.259526 0.259526 0.259525 0.259524 0.259524 0.259526 0.260534 0.259556 0.259555 0.259555 0.259554
|
||||
0.259554 0.259553 0.259552 0.259552 0.260193 0.302173 0.302041 0.302179 0.259699 0.259548 0.259548 0.259547
|
||||
0.259547 0.259546 0.259545 0.259545 0.259544 0.259543 0.259543 0.259543 0.259544 0.259525 0.259525 0.259524
|
||||
0.259524 0.259523 0.259522 0.259521 0.25952 0.259685 0.302241 0.302108 0.302238 0.259636 0.259518 0.259517
|
||||
0.259517 0.259516 0.259516 0.259515 0.259515 0.259514 0.259513 0.259513 0.259513 0.259513 0.259545 0.259544
|
||||
0.259543 0.259543 0.259542 0.259541 0.25954 0.259539 0.259687 0.302368 0.302236 0.302371 0.25965 0.259537
|
||||
0.259536 0.259536 0.259536 0.259535 0.259535 0.259534 0.259534 0.259533 0.259533 0.259533 0.259533 0.259564
|
||||
0.259563 0.259562 0.259562 0.259561 0.25956 0.259559 0.259558 0.259702 0.302495 0.302362 0.302499 0.259669
|
||||
0.259556 0.259555 0.259555 0.259555 0.259554 0.259554 0.259554 0.259553 0.259553 0.259553 0.259553 0.259553
|
||||
0.259583 0.259582 0.259581 0.259581 0.25958 0.259579 0.259578 0.259577 0.259725 0.30262 0.302488 0.302622
|
||||
0.259688 0.259575 0.259574 0.259574 0.259574 0.259574 0.259573 0.259573 0.259573 0.259573 0.259572 0.259572
|
||||
0.259572 0.259602 0.259601 0.2596 0.259599 0.259599 0.259598 0.259597 0.259596 0.259735 0.302843 0.302743
|
||||
0.302839 0.259687 0.259594 0.259593 0.259593 0.259593 0.259593 0.259593 0.259592 0.259592 0.259592 0.259592
|
||||
0.259592 0.259592 0.259621 0.25962 0.259619 0.259618 0.259618 0.259617 0.259616 0.259615 0.259642 0.259728
|
||||
0.259745 0.259718 0.259641 0.259613 0.259613 0.259612 0.259612 0.259612 0.259612 0.259612 0.259611 0.259611
|
||||
0.259611 0.259611 0.259611 0.259639 0.259638 0.259638 0.259637 0.259637 0.259636 0.259635 0.259634 0.259633
|
||||
0.259632 0.259632 0.259632 0.259632 0.259632 0.259632 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631
|
||||
0.25963 0.25963 0.25963 0.25963 0.259655 0.259657 0.259657 0.259657 0.259656 0.259655 0.259654 0.259654
|
||||
0.259653 0.259652 0.259651 0.259651 0.259651 0.259651 0.259651 0.259651 0.259651 0.25965 0.25965 0.25965
|
||||
0.25965 0.25965 0.25965 0.25965 0.259649
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="temperature" NumberOfComponents="1" format="ascii">
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.151 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.171 293.212
|
||||
293.233 293.212 293.171 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.151 293.654 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.212
|
||||
392.89 392.925 392.48 293.212 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.153 294.152 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.321 393.065 393.149 392.815 293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.153 294.152 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.378 393.066 393.15 392.876 293.233 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.153 294.152 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.151 293.418 393.066 393.15 392.923 293.233 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.151 293.654 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.151 293.482 393.066 393.15 392.983 293.233 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.151 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.151 293.623 393.066 393.15 393.059 293.261 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.273 393.066 393.15 393.066 293.238 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.26 393.066 393.15 393.062 293.233 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.257 393.066 393.15 393.061 293.233
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.26 393.066 393.15 393.063
|
||||
293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.254 393.002 393.066
|
||||
393.002 293.219 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.171 293.235
|
||||
293.248 293.228 293.171 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15
|
||||
</DataArray>
|
||||
</PointData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
@ -0,0 +1,456 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<CellData Scalars="moleFrac_l^Brine">
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994978 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994974 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994975 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994978 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994978
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00501898
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00502236 0.0104168
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500008 0.00502548 0.0104169
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500008 0.00502525 0.0104169
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00502156 0.010417
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00502161
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327804 0.00327805 0.00327807 0.00327808 0.00327809 0.0032781 0.00327811 0.00327811 0.00327812 0.00327812 0.00327813 0.00327815
|
||||
0.00327817 0.00327819 0.00327821 0.00327823 0.00327825 0.00327827 0.00327829 0.00327831 0.00327832 0.00327834 0.00327835 0.00327836
|
||||
0.00327763 0.00327765 0.00327766 0.00327768 0.00327769 0.0032777 0.0032777 0.00327772 0.00328554 0.00328555 0.00328556 0.00328553
|
||||
0.00327777 0.00327778 0.0032778 0.00327783 0.00327784 0.00327786 0.00327788 0.0032779 0.00327792 0.00327794 0.00327795 0.00327799
|
||||
0.00327723 0.00327724 0.00327726 0.00327727 0.00327728 0.00327729 0.00327731 0.00328515 0.0296086 0.0296719 0.0296564 0.0293907
|
||||
0.00328516 0.00327738 0.0032774 0.00327742 0.00327744 0.00327746 0.00327748 0.00327749 0.00327751 0.00327753 0.00327758 0.00330726
|
||||
0.00327683 0.00327684 0.00327685 0.00327687 0.00327688 0.00327689 0.00327691 0.00329 0.0297171 0.0297639 0.0297637 0.0295788
|
||||
0.00328478 0.00327698 0.00327699 0.00327701 0.00327703 0.00327705 0.00327707 0.00327709 0.0032771 0.00327712 0.00327717 0.00330688
|
||||
0.00327642 0.00327644 0.00327645 0.00327646 0.00327648 0.00327649 0.00327653 0.0032952 0.0297119 0.0297583 0.0297582 0.0296027
|
||||
0.00328438 0.00327658 0.00327659 0.00327661 0.00327663 0.00327664 0.00327666 0.00327668 0.0032767 0.00327672 0.00327676 0.00330646
|
||||
0.00327602 0.00327603 0.00327604 0.00327606 0.00327607 0.00327609 0.00327614 0.00329846 0.0297062 0.0297526 0.0297525 0.0296201
|
||||
0.00328399 0.00327618 0.00327619 0.0032762 0.00327622 0.00327624 0.00327625 0.00327627 0.00327628 0.0032763 0.00327635 0.00330601
|
||||
0.00327561 0.00327562 0.00327564 0.00327565 0.00327567 0.00327569 0.00327575 0.0033018 0.0297004 0.0297468 0.0297467 0.0296374
|
||||
0.00328359 0.00327578 0.00327578 0.0032758 0.00327581 0.00327583 0.00327584 0.00327586 0.00327587 0.00327589 0.0032759 0.00327594
|
||||
0.0032752 0.00327522 0.00327523 0.00327525 0.00327527 0.00327529 0.00327537 0.00330719 0.0296946 0.029741 0.029741 0.0296605
|
||||
0.00328321 0.00327537 0.00327538 0.00327539 0.0032754 0.00327542 0.00327543 0.00327544 0.00327546 0.00327547 0.00327548 0.00327549
|
||||
0.0032748 0.00327481 0.00327483 0.00327484 0.00327486 0.00327488 0.00327501 0.00332148 0.0296889 0.0297352 0.0297353 0.0296889
|
||||
0.00328864 0.00327497 0.00327497 0.00327498 0.003275 0.00327501 0.00327502 0.00327503 0.00327505 0.00327506 0.00327507 0.00327507
|
||||
0.00327377 0.00327378 0.00327379 0.00327381 0.00327383 0.00327385 0.00327389 0.0032857 0.0296771 0.0297236 0.0297237 0.0296773
|
||||
0.00328265 0.00327394 0.00327394 0.00327395 0.00327396 0.00327397 0.00327398 0.00327399 0.00327401 0.00327401 0.00327402 0.00327403
|
||||
0.00327336 0.00327338 0.00327339 0.00327341 0.00327343 0.00327346 0.00327349 0.00328409 0.0296711 0.0297176 0.0297177 0.0296707
|
||||
0.00328141 0.00327354 0.00327354 0.00327355 0.00327356 0.00327356 0.00327357 0.00327358 0.00327359 0.0032736 0.0032736 0.00327361
|
||||
0.00327296 0.00327297 0.00327299 0.00327301 0.00327303 0.00327306 0.00327309 0.00328351 0.0296651 0.0297117 0.0297117 0.0296644
|
||||
0.00328101 0.00327314 0.00327314 0.00327314 0.00327315 0.00327316 0.00327316 0.00327317 0.00327318 0.00327318 0.00327318 0.00327319
|
||||
0.00327255 0.00327257 0.00327259 0.00327261 0.00327263 0.00327265 0.00327269 0.00328341 0.0296592 0.0297057 0.0297058 0.0296593
|
||||
0.00328065 0.00327274 0.00327274 0.00327274 0.00327274 0.00327275 0.00327275 0.00327276 0.00327276 0.00327277 0.00327277 0.00327277
|
||||
0.00327214 0.00327216 0.00327218 0.0032722 0.00327222 0.00327225 0.00327228 0.0032844 0.029607 0.0296534 0.0296535 0.0296072
|
||||
0.00328135 0.00327234 0.00327233 0.00327233 0.00327233 0.00327234 0.00327234 0.00327234 0.00327235 0.00327235 0.00327235 0.00327235
|
||||
0.00327173 0.00327175 0.00327177 0.00327179 0.00327181 0.00327184 0.00327186 0.0032719 0.0032816 0.00328096 0.00328083 0.00328101
|
||||
0.00327194 0.00327192 0.00327192 0.00327192 0.00327192 0.00327192 0.00327193 0.00327193 0.00327193 0.00327194 0.00327194 0.00327194
|
||||
0.00327132 0.00327134 0.00327136 0.00327138 0.0032714 0.00327142 0.00327145 0.00327147 0.0032715 0.00327151 0.00327152 0.00327152
|
||||
0.00327151 0.00327151 0.00327151 0.00327151 0.00327151 0.00327151 0.00327151 0.00327152 0.00327152 0.00327152 0.00327152 0.00327152
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259413 0.259413 0.259412 0.259411 0.259411 0.259411 0.25941 0.25941 0.25941 0.25941 0.259409 0.259409
|
||||
0.259408 0.259407 0.259406 0.259405 0.259404 0.259403 0.259402 0.259402 0.259401 0.2594 0.2594 0.2594
|
||||
0.259432 0.259432 0.259431 0.259431 0.25943 0.25943 0.259429 0.259429 0.259541 0.259541 0.259541 0.25954
|
||||
0.259427 0.259426 0.259425 0.259424 0.259423 0.259422 0.259422 0.259421 0.25942 0.259419 0.259422 0.260404
|
||||
0.259452 0.259451 0.25945 0.25945 0.259449 0.259449 0.259449 0.25956 0.301829 0.301649 0.301692 0.302435
|
||||
0.259558 0.259445 0.259444 0.259443 0.259442 0.259442 0.259441 0.25944 0.259439 0.259442 0.260599 0.541923
|
||||
0.25947 0.25947 0.259469 0.259469 0.259468 0.259468 0.259467 0.259654 0.301628 0.301495 0.301495 0.302014
|
||||
0.259577 0.259464 0.259463 0.259462 0.259462 0.259461 0.25946 0.259459 0.259458 0.259462 0.26078 0.541966
|
||||
0.259489 0.259489 0.259488 0.259488 0.259487 0.259486 0.259486 0.259753 0.301748 0.301616 0.301616 0.302052
|
||||
0.259596 0.259483 0.259482 0.259481 0.259481 0.25948 0.259479 0.259478 0.259478 0.259481 0.260788 0.54201
|
||||
0.259508 0.259508 0.259507 0.259506 0.259506 0.259505 0.259505 0.259824 0.30187 0.301738 0.301737 0.302109
|
||||
0.259614 0.259502 0.259501 0.2595 0.2595 0.259499 0.259498 0.259497 0.259497 0.259499 0.260616 0.542054
|
||||
0.259527 0.259526 0.259526 0.259525 0.259524 0.259524 0.259524 0.259896 0.301992 0.30186 0.301859 0.302165
|
||||
0.259633 0.25952 0.25952 0.259519 0.259518 0.259518 0.259517 0.259517 0.259516 0.259515 0.259518 0.260637
|
||||
0.259546 0.259545 0.259545 0.259544 0.259543 0.259542 0.259542 0.259998 0.302113 0.301981 0.30198 0.302206
|
||||
0.259652 0.259539 0.259538 0.259538 0.259537 0.259537 0.259536 0.259536 0.259535 0.259534 0.259534 0.259536
|
||||
0.259565 0.259565 0.259564 0.259563 0.259562 0.259562 0.259562 0.260227 0.302236 0.302104 0.302102 0.302232
|
||||
0.259754 0.259558 0.259557 0.259557 0.259557 0.259556 0.259555 0.259555 0.259554 0.259554 0.259553 0.259553
|
||||
0.259535 0.259534 0.259533 0.259533 0.259532 0.259531 0.25953 0.259698 0.302304 0.302171 0.302169 0.302299
|
||||
0.259652 0.259527 0.259527 0.259527 0.259526 0.259526 0.259525 0.259525 0.259524 0.259524 0.259524 0.259523
|
||||
0.259554 0.259553 0.259552 0.259551 0.259551 0.25955 0.259549 0.259699 0.30243 0.302297 0.302296 0.302428
|
||||
0.259659 0.259546 0.259546 0.259546 0.259545 0.259545 0.259545 0.259544 0.259544 0.259544 0.259543 0.259543
|
||||
0.259573 0.259572 0.259571 0.25957 0.259569 0.259568 0.259567 0.259716 0.302556 0.302423 0.302422 0.302554
|
||||
0.259678 0.259565 0.259565 0.259565 0.259564 0.259564 0.259564 0.259564 0.259563 0.259563 0.259563 0.259563
|
||||
0.259592 0.259591 0.25959 0.259589 0.259588 0.259587 0.259586 0.259739 0.302681 0.302548 0.302547 0.302677
|
||||
0.259698 0.259584 0.259584 0.259584 0.259584 0.259583 0.259583 0.259583 0.259583 0.259583 0.259582 0.259582
|
||||
0.259611 0.25961 0.259609 0.259608 0.259607 0.259606 0.259605 0.259778 0.302936 0.302803 0.302801 0.302931
|
||||
0.259732 0.259603 0.259603 0.259603 0.259603 0.259602 0.259602 0.259602 0.259602 0.259602 0.259602 0.259602
|
||||
0.25963 0.259629 0.259628 0.259627 0.259626 0.259625 0.259624 0.259623 0.259761 0.259751 0.259749 0.259752
|
||||
0.259622 0.259622 0.259622 0.259622 0.259622 0.259622 0.259621 0.259621 0.259621 0.259621 0.259621 0.259621
|
||||
0.259649 0.259648 0.259647 0.259646 0.259645 0.259644 0.259643 0.259642 0.259641 0.259641 0.25964 0.25964
|
||||
0.259641 0.259641 0.259641 0.259641 0.259641 0.259641 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964
|
||||
</DataArray>
|
||||
</CellData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
@ -0,0 +1,472 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="moleFrac_l^Brine">
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994982 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.989566 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.994945 0.984184 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.994941 0.984184 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.994946 0.984184 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.994983 0.989565 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.99498 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.00500002 0.00501762 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.00500004 0.00501731 0.010434 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.00500017 0.00505492 0.0158161 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.0050002 0.00505898 0.0158162 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.00500017 0.0050542 0.0158164 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.00500004 0.00501666 0.0104349 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.00500005 0.0050197 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327816 0.00327823 0.00327782 0.00327783 0.00327825 0.00327785 0.00327827 0.00327787 0.00327829 0.00327788 0.0032783 0.0032779
|
||||
0.00327832 0.00327791 0.00327833 0.00327792 0.00327833 0.00327793 0.00327834 0.00327794 0.00327835 0.00327795 0.00327837 0.00327796
|
||||
0.00327839 0.00327798 0.00327841 0.003278 0.00327843 0.00327802 0.00327845 0.00327804 0.00327847 0.00327806 0.00327849 0.00327808
|
||||
0.00327851 0.0032781 0.00327852 0.00327812 0.00327854 0.00327813 0.00327856 0.00327815 0.00327857 0.00327817 0.00327858 0.00327819
|
||||
0.00327859 0.0032782 0.00327742 0.00327743 0.00327745 0.00327746 0.00327748 0.00327749 0.0032775 0.00327752 0.00327948 0.0032834
|
||||
0.00328536 0.00328341 0.00327952 0.00327759 0.00327761 0.00327763 0.00327765 0.00327767 0.00327769 0.00327771 0.00327773 0.00327774
|
||||
0.00327776 0.00327781 0.00330749 0.00327702 0.00327703 0.00327705 0.00327706 0.00327708 0.00327709 0.0032771 0.00327712 0.00328301
|
||||
0.0296245 0.0296442 0.0294027 0.00328302 0.00327719 0.00327721 0.00327723 0.00327725 0.00327726 0.00327728 0.0032773 0.00327732
|
||||
0.00327734 0.00327736 0.00327743 0.00333646 0.00327662 0.00327663 0.00327664 0.00327666 0.00327667 0.00327669 0.0032767 0.00327673
|
||||
0.00329281 0.0297146 0.0297608 0.0295785 0.00328458 0.00327679 0.0032768 0.00327682 0.00327684 0.00327686 0.00327688 0.00327689
|
||||
0.00327691 0.00327693 0.00327695 0.00327703 0.00333606 0.00327621 0.00327622 0.00327624 0.00327625 0.00327627 0.00327628 0.0032763
|
||||
0.00327634 0.00329786 0.0297092 0.0297554 0.029606 0.00328419 0.00327638 0.0032764 0.00327642 0.00327643 0.00327645 0.00327647
|
||||
0.00327648 0.0032765 0.00327652 0.00327654 0.00327661 0.00333562 0.00327581 0.00327582 0.00327583 0.00327585 0.00327586 0.00327588
|
||||
0.0032759 0.00327596 0.00330126 0.0297034 0.0297496 0.0296259 0.0032838 0.00327598 0.00327599 0.00327601 0.00327602 0.00327604
|
||||
0.00327606 0.00327607 0.00327609 0.00327611 0.00327612 0.00327617 0.00330582 0.0032754 0.00327541 0.00327543 0.00327544 0.00327546
|
||||
0.00327547 0.00327549 0.00327558 0.003307 0.0296976 0.0297439 0.0296524 0.0032834 0.00327558 0.00327559 0.0032756 0.00327562
|
||||
0.00327563 0.00327565 0.00327566 0.00327568 0.00327569 0.00327571 0.00327573 0.00327574 0.003275 0.00327501 0.00327502 0.00327503
|
||||
0.00327505 0.00327507 0.00327509 0.00327521 0.00332003 0.0296919 0.0297382 0.0296885 0.00328567 0.00327518 0.00327518 0.00327519
|
||||
0.00327521 0.00327522 0.00327524 0.00327525 0.00327527 0.00327528 0.00327529 0.0032753 0.00327531 0.00327396 0.00327397 0.00327399
|
||||
0.003274 0.00327402 0.00327404 0.00327406 0.0032741 0.00328569 0.0296801 0.0297266 0.0296803 0.00328239 0.00327415 0.00327415
|
||||
0.00327416 0.00327417 0.00327419 0.0032742 0.00327421 0.00327423 0.00327424 0.00327425 0.00327426 0.00327426 0.00327356 0.00327357
|
||||
0.00327359 0.0032736 0.00327362 0.00327364 0.00327366 0.00327369 0.00328413 0.0296741 0.0297206 0.0296723 0.0032816 0.00327375
|
||||
0.00327375 0.00327376 0.00327377 0.00327378 0.00327379 0.0032738 0.00327381 0.00327382 0.00327383 0.00327383 0.00327383 0.00327315
|
||||
0.00327317 0.00327318 0.0032732 0.00327322 0.00327324 0.00327326 0.00327329 0.00328343 0.0296681 0.0297146 0.0296656 0.00328119
|
||||
0.00327334 0.00327335 0.00327335 0.00327336 0.00327337 0.00327338 0.00327339 0.00327339 0.0032734 0.00327341 0.00327341 0.00327341
|
||||
0.00327275 0.00327276 0.00327278 0.0032728 0.00327282 0.00327284 0.00327286 0.00327289 0.00328327 0.0296621 0.0297086 0.0296606
|
||||
0.0032808 0.00327294 0.00327294 0.00327294 0.00327295 0.00327296 0.00327296 0.00327297 0.00327298 0.00327298 0.00327299 0.00327299
|
||||
0.00327299 0.00327234 0.00327236 0.00327237 0.00327239 0.00327241 0.00327243 0.00327245 0.00327248 0.00328229 0.0296215 0.0296563
|
||||
0.0296216 0.00327901 0.00327253 0.00327253 0.00327254 0.00327254 0.00327255 0.00327255 0.00327256 0.00327256 0.00327257 0.00327257
|
||||
0.00327258 0.00327258 0.00327193 0.00327195 0.00327197 0.00327198 0.003272 0.00327202 0.00327204 0.00327207 0.00327405 0.00328011
|
||||
0.00328136 0.00327949 0.00327408 0.00327212 0.00327212 0.00327213 0.00327213 0.00327213 0.00327214 0.00327214 0.00327215 0.00327215
|
||||
0.00327216 0.00327216 0.00327216 0.00327153 0.00327155 0.00327156 0.00327157 0.00327159 0.00327161 0.00327163 0.00327165 0.00327167
|
||||
0.00327169 0.00327171 0.00327171 0.00327171 0.00327171 0.00327171 0.00327171 0.00327172 0.00327172 0.00327173 0.00327173 0.00327174
|
||||
0.00327174 0.00327174 0.00327174 0.00327174 0.00327118 0.00327115 0.00327115 0.00327116 0.00327118 0.0032712 0.00327122 0.00327124
|
||||
0.00327126 0.00327127 0.00327128 0.00327129 0.00327129 0.0032713 0.0032713 0.0032713 0.0032713 0.00327131 0.00327131 0.00327132
|
||||
0.00327132 0.00327133 0.00327133 0.00327133 0.00327133
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259407 0.259404 0.259424 0.259423 0.259403 0.259422 0.259402 0.259421 0.259401 0.259421 0.259401 0.25942
|
||||
0.2594 0.25942 0.2594 0.259419 0.2594 0.259419 0.259399 0.259419 0.259399 0.259418 0.259398 0.259418
|
||||
0.259397 0.259417 0.259397 0.259416 0.259396 0.259415 0.259395 0.259414 0.259394 0.259413 0.259393 0.259412
|
||||
0.259392 0.259411 0.259392 0.259411 0.259391 0.25941 0.25939 0.259409 0.25939 0.259408 0.259389 0.25941
|
||||
0.25939 0.260323 0.259443 0.259442 0.259441 0.259441 0.25944 0.259439 0.259439 0.259438 0.259466 0.259522
|
||||
0.25955 0.259521 0.259464 0.259435 0.259434 0.259433 0.259432 0.259432 0.259431 0.25943 0.259429 0.259428
|
||||
0.25943 0.260326 0.542795 0.259461 0.259461 0.25946 0.25946 0.259459 0.259458 0.259458 0.259457 0.259541
|
||||
0.301834 0.301777 0.302453 0.259539 0.259454 0.259453 0.259452 0.259452 0.259451 0.25945 0.259449 0.259448
|
||||
0.259448 0.259456 0.262298 0.824984 0.25948 0.25948 0.259479 0.259479 0.259478 0.259477 0.259477 0.259476
|
||||
0.259706 0.301685 0.301554 0.302066 0.259586 0.259473 0.259472 0.259471 0.259471 0.25947 0.259469 0.259468
|
||||
0.259468 0.259467 0.259476 0.262529 0.825053 0.259499 0.259499 0.259498 0.259497 0.259497 0.259496 0.259495
|
||||
0.259495 0.259803 0.301806 0.301675 0.302094 0.259605 0.259492 0.259491 0.25949 0.25949 0.259489 0.259488
|
||||
0.259487 0.259487 0.259486 0.259494 0.2623 0.825122 0.259518 0.259517 0.259517 0.259516 0.259516 0.259515
|
||||
0.259514 0.259514 0.259876 0.301928 0.301797 0.302144 0.259623 0.259511 0.25951 0.259509 0.259509 0.259508
|
||||
0.259507 0.259507 0.259506 0.259505 0.259506 0.260369 0.543008 0.259537 0.259536 0.259536 0.259535 0.259534
|
||||
0.259534 0.259533 0.259533 0.259982 0.30205 0.301918 0.302175 0.259642 0.259529 0.259529 0.259528 0.259528
|
||||
0.259527 0.259526 0.259526 0.259525 0.259524 0.259524 0.259526 0.260547 0.259556 0.259555 0.259555 0.259554
|
||||
0.259553 0.259553 0.259552 0.259552 0.260193 0.302172 0.302039 0.302178 0.259699 0.259548 0.259548 0.259547
|
||||
0.259546 0.259546 0.259545 0.259544 0.259544 0.259543 0.259543 0.259542 0.259543 0.259525 0.259525 0.259524
|
||||
0.259524 0.259523 0.259522 0.259521 0.25952 0.259685 0.30224 0.302107 0.302236 0.259636 0.259518 0.259517
|
||||
0.259517 0.259516 0.259516 0.259515 0.259514 0.259514 0.259513 0.259513 0.259513 0.259512 0.259544 0.259544
|
||||
0.259543 0.259542 0.259542 0.259541 0.25954 0.259539 0.259687 0.302367 0.302235 0.30237 0.25965 0.259537
|
||||
0.259536 0.259536 0.259535 0.259535 0.259534 0.259534 0.259534 0.259533 0.259533 0.259533 0.259532 0.259564
|
||||
0.259563 0.259562 0.259561 0.259561 0.25956 0.259559 0.259558 0.259702 0.302493 0.302361 0.302498 0.259668
|
||||
0.259555 0.259555 0.259555 0.259555 0.259554 0.259554 0.259553 0.259553 0.259553 0.259553 0.259552 0.259552
|
||||
0.259583 0.259582 0.259581 0.25958 0.25958 0.259579 0.259578 0.259577 0.259725 0.302619 0.302487 0.302621
|
||||
0.259688 0.259574 0.259574 0.259574 0.259574 0.259573 0.259573 0.259573 0.259573 0.259572 0.259572 0.259572
|
||||
0.259572 0.259602 0.259601 0.2596 0.259599 0.259599 0.259598 0.259597 0.259596 0.259735 0.302842 0.302741
|
||||
0.302838 0.259687 0.259593 0.259593 0.259593 0.259593 0.259593 0.259592 0.259592 0.259592 0.259592 0.259592
|
||||
0.259591 0.259591 0.25962 0.25962 0.259619 0.259618 0.259617 0.259617 0.259616 0.259615 0.259642 0.259728
|
||||
0.259745 0.259718 0.259641 0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259611 0.259611 0.259611
|
||||
0.259611 0.259611 0.259611 0.259639 0.259638 0.259638 0.259637 0.259636 0.259636 0.259635 0.259634 0.259633
|
||||
0.259632 0.259632 0.259632 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.25963
|
||||
0.25963 0.25963 0.25963 0.25963 0.259656 0.259657 0.259657 0.259657 0.259656 0.259655 0.259654 0.259653
|
||||
0.259653 0.259652 0.259651 0.259651 0.259651 0.259651 0.259651 0.259651 0.25965 0.25965 0.25965 0.25965
|
||||
0.25965 0.259649 0.259649 0.259649 0.259649
|
||||
</DataArray>
|
||||
</PointData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
472
tests/referencesolutions/co2injection_flash_vcfv-heuristix.vtu
Normal file
472
tests/referencesolutions/co2injection_flash_vcfv-heuristix.vtu
Normal file
@ -0,0 +1,472 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="moleFrac_l^Brine">
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.989566 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.994946 0.984184 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.994942 0.984183 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.994947 0.984183 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.994984 0.989565 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.00500002 0.00501726 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.00500004 0.00501697 0.0104337 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.00500017 0.00505385 0.0158164 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.00500019 0.00505788 0.0158165 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.00500016 0.00505313 0.0158166 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.00500004 0.00501631 0.0104346 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.00500004 0.00501923 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327817 0.00327823 0.00327782 0.00327783 0.00327825 0.00327785 0.00327827 0.00327787 0.00327829 0.00327788 0.0032783 0.0032779
|
||||
0.00327831 0.00327791 0.00327832 0.00327792 0.00327833 0.00327793 0.00327834 0.00327793 0.00327835 0.00327794 0.00327837 0.00327796
|
||||
0.00327838 0.00327797 0.0032784 0.00327799 0.00327842 0.00327801 0.00327844 0.00327803 0.00327846 0.00327805 0.00327848 0.00327807
|
||||
0.00327849 0.00327809 0.00327851 0.0032781 0.00327853 0.00327812 0.00327854 0.00327813 0.00327856 0.00327815 0.00327857 0.00327816
|
||||
0.00327857 0.00327811 0.00327742 0.00327743 0.00327745 0.00327746 0.00327748 0.00327749 0.0032775 0.00327751 0.00327752 0.00327752
|
||||
0.00327753 0.00327754 0.00327757 0.00327759 0.00327761 0.00327763 0.00327764 0.00327766 0.00327768 0.0032777 0.00327771 0.00327773
|
||||
0.00327775 0.00327771 0.00325988 0.00327702 0.00327703 0.00327705 0.00327706 0.00327707 0.00327709 0.0032771 0.00327711 0.00327712
|
||||
0.0297671 0.0297671 0.0297672 0.00327716 0.00327718 0.0032772 0.00327722 0.00327724 0.00327725 0.00327727 0.00327729 0.00327731
|
||||
0.00327732 0.00327734 0.00327719 0.00324177 0.00327662 0.00327663 0.00327664 0.00327666 0.00327667 0.00327668 0.0032767 0.00327671
|
||||
0.00327672 0.0297613 0.0297614 0.0297614 0.00327676 0.00327678 0.0032768 0.00327681 0.00327683 0.00327685 0.00327686 0.00327688
|
||||
0.0032769 0.00327692 0.00327693 0.00327677 0.00324137 0.00327621 0.00327622 0.00327624 0.00327625 0.00327627 0.00327628 0.0032763
|
||||
0.00327631 0.00327633 0.0297555 0.0297556 0.0297556 0.00327636 0.00327638 0.00327639 0.00327641 0.00327642 0.00327644 0.00327646
|
||||
0.00327647 0.00327649 0.00327651 0.00327652 0.00327637 0.00324095 0.00327581 0.00327582 0.00327583 0.00327585 0.00327586 0.00327588
|
||||
0.0032759 0.00327591 0.00327593 0.0297497 0.0297497 0.0297498 0.00327596 0.00327597 0.00327599 0.003276 0.00327602 0.00327603
|
||||
0.00327605 0.00327606 0.00327608 0.00327609 0.00327611 0.00327607 0.00325825 0.0032754 0.00327541 0.00327543 0.00327544 0.00327546
|
||||
0.00327547 0.00327549 0.00327551 0.00327554 0.0297438 0.0297439 0.029744 0.00327556 0.00327557 0.00327558 0.00327559 0.00327561
|
||||
0.00327562 0.00327564 0.00327565 0.00327567 0.00327568 0.00327569 0.0032757 0.00327565 0.00327499 0.00327501 0.00327502 0.00327503
|
||||
0.00327505 0.00327507 0.00327509 0.00327511 0.00327514 0.029738 0.0297381 0.0297382 0.00327516 0.00327517 0.00327517 0.00327519
|
||||
0.0032752 0.00327521 0.00327523 0.00327524 0.00327525 0.00327527 0.00327528 0.00327529 0.00327529 0.00327396 0.00327397 0.00327399
|
||||
0.003274 0.00327402 0.00327404 0.00327406 0.00327408 0.00327411 0.0297264 0.0297265 0.0297266 0.00327413 0.00327414 0.00327414
|
||||
0.00327415 0.00327417 0.00327418 0.00327419 0.0032742 0.00327421 0.00327423 0.00327424 0.00327424 0.00327424 0.00327356 0.00327357
|
||||
0.00327359 0.0032736 0.00327362 0.00327364 0.00327366 0.00327368 0.00327371 0.0297204 0.0297205 0.0297206 0.00327373 0.00327374
|
||||
0.00327374 0.00327375 0.00327376 0.00327377 0.00327378 0.00327379 0.0032738 0.00327381 0.00327381 0.00327382 0.00327382 0.00327315
|
||||
0.00327317 0.00327318 0.0032732 0.00327322 0.00327324 0.00327326 0.00327328 0.00327331 0.0297145 0.0297145 0.0297146 0.00327333
|
||||
0.00327334 0.00327334 0.00327335 0.00327335 0.00327336 0.00327337 0.00327338 0.00327338 0.00327339 0.0032734 0.0032734 0.0032734
|
||||
0.00327275 0.00327276 0.00327278 0.0032728 0.00327281 0.00327283 0.00327286 0.00327288 0.00327291 0.0297085 0.0297086 0.0297087
|
||||
0.00327293 0.00327293 0.00327293 0.00327294 0.00327294 0.00327295 0.00327296 0.00327296 0.00327297 0.00327298 0.00327298 0.00327298
|
||||
0.00327298 0.00327234 0.00327236 0.00327237 0.00327239 0.00327241 0.00327243 0.00327245 0.00327247 0.0032725 0.0297026 0.0297027
|
||||
0.0297027 0.00327253 0.00327252 0.00327253 0.00327253 0.00327253 0.00327254 0.00327255 0.00327255 0.00327256 0.00327256 0.00327256
|
||||
0.00327257 0.00327257 0.00327193 0.00327195 0.00327197 0.00327198 0.003272 0.00327202 0.00327204 0.00327206 0.00327208 0.00327211
|
||||
0.00327212 0.00327212 0.00327212 0.00327212 0.00327212 0.00327212 0.00327212 0.00327213 0.00327213 0.00327214 0.00327214 0.00327215
|
||||
0.00327215 0.00327215 0.00327215 0.00327153 0.00327155 0.00327156 0.00327157 0.00327159 0.00327161 0.00327163 0.00327165 0.00327167
|
||||
0.00327169 0.0032717 0.0032717 0.0032717 0.0032717 0.00327171 0.00327171 0.00327171 0.00327171 0.00327172 0.00327172 0.00327173
|
||||
0.00327173 0.00327173 0.00327174 0.00327174 0.00327118 0.00327114 0.00327115 0.00327116 0.00327118 0.0032712 0.00327122 0.00327124
|
||||
0.00327125 0.00327127 0.00327128 0.00327129 0.00327129 0.00327129 0.00327129 0.00327129 0.0032713 0.0032713 0.00327131 0.00327131
|
||||
0.00327131 0.00327132 0.00327132 0.00327132 0.00327132
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259407 0.259404 0.259424 0.259423 0.259403 0.259422 0.259402 0.259421 0.259401 0.259421 0.259401 0.25942
|
||||
0.2594 0.259419 0.2594 0.259419 0.259399 0.259419 0.259399 0.259418 0.259398 0.259418 0.259398 0.259417
|
||||
0.259397 0.259416 0.259396 0.259415 0.259395 0.259414 0.259394 0.259413 0.259394 0.259413 0.259393 0.259412
|
||||
0.259392 0.259411 0.259391 0.25941 0.25939 0.259409 0.25939 0.259409 0.259389 0.259408 0.259389 0.259409
|
||||
0.259389 0.260303 0.259442 0.259442 0.259441 0.25944 0.25944 0.259439 0.259439 0.259438 0.259438 0.259438
|
||||
0.259437 0.259437 0.259436 0.259435 0.259434 0.259433 0.259432 0.259431 0.25943 0.259429 0.259429 0.259428
|
||||
0.259429 0.260307 0.541355 0.259461 0.259461 0.25946 0.259459 0.259459 0.259458 0.259458 0.259457 0.259457
|
||||
0.30143 0.301429 0.301427 0.259455 0.259454 0.259453 0.259452 0.259451 0.25945 0.259449 0.259449 0.259448
|
||||
0.259447 0.259455 0.262239 0.820693 0.25948 0.25948 0.259479 0.259478 0.259478 0.259477 0.259476 0.259476
|
||||
0.259475 0.301552 0.301551 0.301549 0.259474 0.259473 0.259472 0.259471 0.25947 0.259469 0.259469 0.259468
|
||||
0.259467 0.259466 0.259475 0.262468 0.820759 0.259499 0.259499 0.259498 0.259497 0.259497 0.259496 0.259495
|
||||
0.259494 0.259494 0.301674 0.301673 0.301671 0.259492 0.259491 0.259491 0.25949 0.259489 0.259488 0.259488
|
||||
0.259487 0.259486 0.259485 0.259493 0.262241 0.820826 0.259518 0.259517 0.259517 0.259516 0.259515 0.259515
|
||||
0.259514 0.259513 0.259512 0.301796 0.301795 0.301793 0.259511 0.25951 0.25951 0.259509 0.259508 0.259507
|
||||
0.259507 0.259506 0.259505 0.259505 0.259506 0.260349 0.541559 0.259537 0.259536 0.259535 0.259535 0.259534
|
||||
0.259533 0.259532 0.259531 0.25953 0.301918 0.301916 0.301915 0.259529 0.259529 0.259528 0.259528 0.259527
|
||||
0.259526 0.259526 0.259525 0.259524 0.259524 0.259523 0.259525 0.260521 0.259556 0.259555 0.259555 0.259554
|
||||
0.259553 0.259552 0.259551 0.25955 0.259549 0.30204 0.302038 0.302036 0.259548 0.259548 0.259547 0.259547
|
||||
0.259546 0.259545 0.259545 0.259544 0.259543 0.259543 0.259542 0.259542 0.259543 0.259525 0.259525 0.259524
|
||||
0.259523 0.259523 0.259522 0.259521 0.25952 0.259518 0.302108 0.302105 0.302104 0.259517 0.259517 0.259517
|
||||
0.259516 0.259516 0.259515 0.259515 0.259514 0.259513 0.259513 0.259512 0.259512 0.259512 0.259544 0.259544
|
||||
0.259543 0.259542 0.259542 0.259541 0.25954 0.259538 0.259537 0.302235 0.302233 0.302232 0.259536 0.259536
|
||||
0.259536 0.259535 0.259535 0.259534 0.259534 0.259533 0.259533 0.259533 0.259532 0.259532 0.259532 0.259564
|
||||
0.259563 0.259562 0.259561 0.25956 0.259559 0.259558 0.259557 0.259556 0.302361 0.302359 0.302358 0.259555
|
||||
0.259555 0.259555 0.259554 0.259554 0.259554 0.259553 0.259553 0.259553 0.259552 0.259552 0.259552 0.259552
|
||||
0.259583 0.259582 0.259581 0.25958 0.259579 0.259578 0.259577 0.259576 0.259575 0.302487 0.302484 0.302483
|
||||
0.259574 0.259574 0.259574 0.259574 0.259573 0.259573 0.259573 0.259572 0.259572 0.259572 0.259572 0.259571
|
||||
0.259571 0.259601 0.259601 0.2596 0.259599 0.259598 0.259597 0.259596 0.259595 0.259594 0.302611 0.302609
|
||||
0.302608 0.259593 0.259593 0.259593 0.259593 0.259592 0.259592 0.259592 0.259592 0.259591 0.259591 0.259591
|
||||
0.259591 0.259591 0.25962 0.259619 0.259619 0.259618 0.259617 0.259616 0.259615 0.259614 0.259613 0.259612
|
||||
0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259611 0.259611 0.259611 0.259611 0.259611
|
||||
0.25961 0.25961 0.25961 0.259639 0.259638 0.259638 0.259637 0.259636 0.259635 0.259634 0.259633 0.259633
|
||||
0.259632 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.25963 0.25963 0.25963 0.25963
|
||||
0.25963 0.25963 0.259629 0.259629 0.259656 0.259657 0.259657 0.259656 0.259656 0.259655 0.259654 0.259653
|
||||
0.259652 0.259651 0.259651 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965 0.259649
|
||||
0.259649 0.259649 0.259649 0.259649 0.259649
|
||||
</DataArray>
|
||||
</PointData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
@ -0,0 +1,660 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<CellData Scalars="pressure_l">
|
||||
<DataArray type="Float32" Name="pressure_l" NumberOfComponents="1" format="ascii">
|
||||
2.63099e+07 2.63112e+07 2.63124e+07 2.63135e+07 2.63146e+07 2.63154e+07 2.63162e+07 2.63167e+07 2.63171e+07 2.63177e+07 2.63185e+07 2.63197e+07
|
||||
2.63213e+07 2.63229e+07 2.63246e+07 2.63262e+07 2.63277e+07 2.63292e+07 2.63307e+07 2.63321e+07 2.63335e+07 2.63348e+07 2.63359e+07 2.63366e+07
|
||||
2.62835e+07 2.62848e+07 2.6286e+07 2.62872e+07 2.62882e+07 2.62891e+07 2.62898e+07 2.62903e+07 2.62905e+07 2.62909e+07 2.62917e+07 2.62928e+07
|
||||
2.62947e+07 2.62965e+07 2.62981e+07 2.62997e+07 2.63013e+07 2.63028e+07 2.63042e+07 2.63057e+07 2.63071e+07 2.63085e+07 2.63098e+07 2.63108e+07
|
||||
2.62573e+07 2.62585e+07 2.62597e+07 2.62609e+07 2.6262e+07 2.62629e+07 2.62637e+07 2.62643e+07 2.62644e+07 2.62647e+07 2.62652e+07 2.62658e+07
|
||||
2.62682e+07 2.62701e+07 2.62718e+07 2.62734e+07 2.62749e+07 2.62763e+07 2.62778e+07 2.62792e+07 2.62807e+07 2.62823e+07 2.62839e+07 2.62861e+07
|
||||
2.6231e+07 2.62323e+07 2.62335e+07 2.62347e+07 2.62358e+07 2.62369e+07 2.62379e+07 2.62388e+07 2.6239e+07 2.62394e+07 2.62399e+07 2.62404e+07
|
||||
2.62423e+07 2.6244e+07 2.62455e+07 2.6247e+07 2.62485e+07 2.62499e+07 2.62513e+07 2.62528e+07 2.62543e+07 2.62559e+07 2.62578e+07 2.62603e+07
|
||||
2.62048e+07 2.6206e+07 2.62073e+07 2.62085e+07 2.62097e+07 2.62109e+07 2.62121e+07 2.62133e+07 2.62136e+07 2.6214e+07 2.62145e+07 2.62149e+07
|
||||
2.62165e+07 2.6218e+07 2.62194e+07 2.62208e+07 2.62221e+07 2.62235e+07 2.62249e+07 2.62263e+07 2.62278e+07 2.62293e+07 2.62312e+07 2.62337e+07
|
||||
2.61786e+07 2.61798e+07 2.61811e+07 2.61824e+07 2.61837e+07 2.6185e+07 2.61864e+07 2.61877e+07 2.61882e+07 2.61886e+07 2.6189e+07 2.61894e+07
|
||||
2.61907e+07 2.6192e+07 2.61933e+07 2.61945e+07 2.61958e+07 2.61971e+07 2.61984e+07 2.61997e+07 2.62011e+07 2.62025e+07 2.62041e+07 2.62062e+07
|
||||
2.61523e+07 2.61536e+07 2.61549e+07 2.61562e+07 2.61576e+07 2.61591e+07 2.61606e+07 2.61622e+07 2.61627e+07 2.61632e+07 2.61636e+07 2.6164e+07
|
||||
2.6165e+07 2.6166e+07 2.61671e+07 2.61683e+07 2.61694e+07 2.61707e+07 2.61719e+07 2.61731e+07 2.61743e+07 2.61755e+07 2.61767e+07 2.61776e+07
|
||||
2.61261e+07 2.61273e+07 2.61286e+07 2.613e+07 2.61315e+07 2.6133e+07 2.61348e+07 2.61366e+07 2.61373e+07 2.61378e+07 2.61382e+07 2.61386e+07
|
||||
2.61392e+07 2.614e+07 2.6141e+07 2.6142e+07 2.61431e+07 2.61442e+07 2.61453e+07 2.61465e+07 2.61476e+07 2.61486e+07 2.61495e+07 2.615e+07
|
||||
2.60997e+07 2.6101e+07 2.61023e+07 2.61037e+07 2.61052e+07 2.61069e+07 2.61087e+07 2.6111e+07 2.61119e+07 2.61125e+07 2.6113e+07 2.61132e+07
|
||||
2.61133e+07 2.61139e+07 2.61147e+07 2.61156e+07 2.61167e+07 2.61177e+07 2.61188e+07 2.61199e+07 2.61209e+07 2.61218e+07 2.61226e+07 2.6123e+07
|
||||
2.60736e+07 2.60748e+07 2.60762e+07 2.60776e+07 2.60792e+07 2.6081e+07 2.6083e+07 2.60853e+07 2.60862e+07 2.60869e+07 2.60873e+07 2.60876e+07
|
||||
2.60875e+07 2.6088e+07 2.60886e+07 2.60894e+07 2.60904e+07 2.60913e+07 2.60923e+07 2.60932e+07 2.60941e+07 2.60949e+07 2.60955e+07 2.60958e+07
|
||||
2.60475e+07 2.60489e+07 2.60503e+07 2.60518e+07 2.60535e+07 2.60553e+07 2.60574e+07 2.60596e+07 2.60603e+07 2.60609e+07 2.60613e+07 2.60616e+07
|
||||
2.60618e+07 2.60622e+07 2.60628e+07 2.60634e+07 2.60641e+07 2.60649e+07 2.60657e+07 2.60665e+07 2.60672e+07 2.60678e+07 2.60682e+07 2.60685e+07
|
||||
2.60214e+07 2.60228e+07 2.60243e+07 2.60259e+07 2.60276e+07 2.60295e+07 2.60316e+07 2.60337e+07 2.60344e+07 2.6035e+07 2.60354e+07 2.60357e+07
|
||||
2.6036e+07 2.60364e+07 2.60368e+07 2.60373e+07 2.60379e+07 2.60385e+07 2.60392e+07 2.60398e+07 2.60403e+07 2.60408e+07 2.60411e+07 2.60413e+07
|
||||
2.59952e+07 2.59967e+07 2.59982e+07 2.59999e+07 2.60016e+07 2.60035e+07 2.60056e+07 2.60079e+07 2.60087e+07 2.60093e+07 2.60098e+07 2.601e+07
|
||||
2.60102e+07 2.60104e+07 2.60107e+07 2.60111e+07 2.60116e+07 2.60121e+07 2.60126e+07 2.60131e+07 2.60136e+07 2.6014e+07 2.60142e+07 2.60144e+07
|
||||
2.5969e+07 2.59705e+07 2.5972e+07 2.59737e+07 2.59755e+07 2.59774e+07 2.59795e+07 2.59819e+07 2.5983e+07 2.59838e+07 2.59843e+07 2.59845e+07
|
||||
2.59844e+07 2.59844e+07 2.59846e+07 2.59849e+07 2.59852e+07 2.59857e+07 2.59861e+07 2.59865e+07 2.59869e+07 2.59872e+07 2.59875e+07 2.59876e+07
|
||||
2.59427e+07 2.59442e+07 2.59457e+07 2.59474e+07 2.59492e+07 2.5951e+07 2.5953e+07 2.5955e+07 2.59569e+07 2.59578e+07 2.59584e+07 2.59586e+07
|
||||
2.59582e+07 2.59582e+07 2.59583e+07 2.59585e+07 2.59588e+07 2.59592e+07 2.59596e+07 2.596e+07 2.59603e+07 2.59606e+07 2.59608e+07 2.59609e+07
|
||||
2.59164e+07 2.59178e+07 2.59194e+07 2.5921e+07 2.59228e+07 2.59246e+07 2.59265e+07 2.59283e+07 2.59299e+07 2.59309e+07 2.59315e+07 2.59318e+07
|
||||
2.59318e+07 2.59318e+07 2.59319e+07 2.59321e+07 2.59324e+07 2.59327e+07 2.59331e+07 2.59334e+07 2.59338e+07 2.5934e+07 2.59342e+07 2.59343e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="pressure_g" NumberOfComponents="1" format="ascii">
|
||||
2.63149e+07 2.63162e+07 2.63174e+07 2.63185e+07 2.63196e+07 2.63204e+07 2.63212e+07 2.63217e+07 2.63221e+07 2.63227e+07 2.63235e+07 2.63247e+07
|
||||
2.63263e+07 2.63279e+07 2.63296e+07 2.63312e+07 2.63327e+07 2.63342e+07 2.63357e+07 2.63371e+07 2.63385e+07 2.63398e+07 2.63409e+07 2.63416e+07
|
||||
2.62885e+07 2.62898e+07 2.6291e+07 2.62922e+07 2.62932e+07 2.62941e+07 2.62948e+07 2.62953e+07 2.62955e+07 2.62959e+07 2.62967e+07 2.62978e+07
|
||||
2.62997e+07 2.63015e+07 2.63031e+07 2.63047e+07 2.63063e+07 2.63078e+07 2.63092e+07 2.63107e+07 2.63121e+07 2.63135e+07 2.63148e+07 2.63158e+07
|
||||
2.62623e+07 2.62635e+07 2.62647e+07 2.62659e+07 2.6267e+07 2.62679e+07 2.62687e+07 2.62693e+07 2.62694e+07 2.62697e+07 2.62702e+07 2.62708e+07
|
||||
2.62732e+07 2.62751e+07 2.62768e+07 2.62784e+07 2.62799e+07 2.62813e+07 2.62828e+07 2.62842e+07 2.62857e+07 2.62873e+07 2.62889e+07 2.62911e+07
|
||||
2.6236e+07 2.62373e+07 2.62385e+07 2.62397e+07 2.62408e+07 2.62419e+07 2.62429e+07 2.62438e+07 2.6244e+07 2.62444e+07 2.62449e+07 2.62454e+07
|
||||
2.62473e+07 2.6249e+07 2.62505e+07 2.6252e+07 2.62535e+07 2.62549e+07 2.62563e+07 2.62578e+07 2.62593e+07 2.62609e+07 2.62628e+07 2.62653e+07
|
||||
2.62098e+07 2.6211e+07 2.62123e+07 2.62135e+07 2.62147e+07 2.62159e+07 2.62171e+07 2.62183e+07 2.62186e+07 2.6219e+07 2.62195e+07 2.62199e+07
|
||||
2.62215e+07 2.6223e+07 2.62244e+07 2.62258e+07 2.62271e+07 2.62285e+07 2.62299e+07 2.62313e+07 2.62328e+07 2.62343e+07 2.62362e+07 2.62387e+07
|
||||
2.61836e+07 2.61848e+07 2.61861e+07 2.61874e+07 2.61887e+07 2.619e+07 2.61914e+07 2.61927e+07 2.61932e+07 2.61936e+07 2.6194e+07 2.61944e+07
|
||||
2.61957e+07 2.6197e+07 2.61983e+07 2.61995e+07 2.62008e+07 2.62021e+07 2.62034e+07 2.62047e+07 2.62061e+07 2.62075e+07 2.62091e+07 2.62113e+07
|
||||
2.61573e+07 2.61586e+07 2.61599e+07 2.61612e+07 2.61626e+07 2.61641e+07 2.61656e+07 2.61672e+07 2.61677e+07 2.61682e+07 2.61686e+07 2.6169e+07
|
||||
2.617e+07 2.6171e+07 2.61721e+07 2.61733e+07 2.61744e+07 2.61757e+07 2.61769e+07 2.61781e+07 2.61793e+07 2.61805e+07 2.61817e+07 2.61826e+07
|
||||
2.61311e+07 2.61323e+07 2.61336e+07 2.6135e+07 2.61365e+07 2.6138e+07 2.61398e+07 2.61416e+07 2.61423e+07 2.61428e+07 2.61432e+07 2.61436e+07
|
||||
2.61442e+07 2.6145e+07 2.6146e+07 2.6147e+07 2.61481e+07 2.61492e+07 2.61503e+07 2.61515e+07 2.61526e+07 2.61536e+07 2.61545e+07 2.6155e+07
|
||||
2.61047e+07 2.6106e+07 2.61073e+07 2.61087e+07 2.61102e+07 2.61119e+07 2.61137e+07 2.6116e+07 2.61169e+07 2.61175e+07 2.6118e+07 2.61182e+07
|
||||
2.61183e+07 2.61189e+07 2.61197e+07 2.61206e+07 2.61217e+07 2.61227e+07 2.61238e+07 2.61249e+07 2.61259e+07 2.61268e+07 2.61276e+07 2.6128e+07
|
||||
2.60836e+07 2.60848e+07 2.60862e+07 2.60876e+07 2.60892e+07 2.6091e+07 2.6093e+07 2.60953e+07 2.60962e+07 2.60969e+07 2.60973e+07 2.60976e+07
|
||||
2.60975e+07 2.6098e+07 2.60986e+07 2.60994e+07 2.61004e+07 2.61013e+07 2.61023e+07 2.61032e+07 2.61041e+07 2.61049e+07 2.61055e+07 2.61058e+07
|
||||
2.60575e+07 2.60589e+07 2.60603e+07 2.60618e+07 2.60635e+07 2.60653e+07 2.60674e+07 2.60696e+07 2.60703e+07 2.60709e+07 2.60713e+07 2.60716e+07
|
||||
2.60718e+07 2.60722e+07 2.60728e+07 2.60734e+07 2.60741e+07 2.60749e+07 2.60757e+07 2.60765e+07 2.60772e+07 2.60778e+07 2.60782e+07 2.60785e+07
|
||||
2.60314e+07 2.60328e+07 2.60343e+07 2.60359e+07 2.60376e+07 2.60395e+07 2.60416e+07 2.60437e+07 2.60444e+07 2.6045e+07 2.60454e+07 2.60457e+07
|
||||
2.6046e+07 2.60464e+07 2.60468e+07 2.60473e+07 2.60479e+07 2.60485e+07 2.60492e+07 2.60498e+07 2.60503e+07 2.60508e+07 2.60511e+07 2.60513e+07
|
||||
2.60052e+07 2.60067e+07 2.60082e+07 2.60099e+07 2.60116e+07 2.60135e+07 2.60156e+07 2.60179e+07 2.60187e+07 2.60193e+07 2.60198e+07 2.602e+07
|
||||
2.60202e+07 2.60204e+07 2.60207e+07 2.60211e+07 2.60216e+07 2.60221e+07 2.60226e+07 2.60231e+07 2.60236e+07 2.6024e+07 2.60242e+07 2.60244e+07
|
||||
2.5979e+07 2.59805e+07 2.5982e+07 2.59837e+07 2.59855e+07 2.59874e+07 2.59895e+07 2.59919e+07 2.5993e+07 2.59938e+07 2.59943e+07 2.59945e+07
|
||||
2.59944e+07 2.59944e+07 2.59946e+07 2.59949e+07 2.59952e+07 2.59957e+07 2.59961e+07 2.59965e+07 2.59969e+07 2.59972e+07 2.59975e+07 2.59976e+07
|
||||
2.59527e+07 2.59542e+07 2.59557e+07 2.59574e+07 2.59592e+07 2.5961e+07 2.5963e+07 2.5965e+07 2.59669e+07 2.59678e+07 2.59684e+07 2.59686e+07
|
||||
2.59682e+07 2.59682e+07 2.59683e+07 2.59685e+07 2.59688e+07 2.59692e+07 2.59696e+07 2.597e+07 2.59703e+07 2.59706e+07 2.59708e+07 2.59709e+07
|
||||
2.59264e+07 2.59278e+07 2.59294e+07 2.5931e+07 2.59328e+07 2.59346e+07 2.59365e+07 2.59383e+07 2.59399e+07 2.59409e+07 2.59415e+07 2.59418e+07
|
||||
2.59418e+07 2.59418e+07 2.59419e+07 2.59421e+07 2.59424e+07 2.59427e+07 2.59431e+07 2.59434e+07 2.59438e+07 2.5944e+07 2.59442e+07 2.59443e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_l" NumberOfComponents="1" format="ascii">
|
||||
1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19
|
||||
1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.2 1080.2 1080.2 1080.2
|
||||
1080.17 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18
|
||||
1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.19 1080.19 1080.19
|
||||
1080.16 1080.16 1080.16 1080.17 1080.17 1080.17 1080.17 1080.17 1017.06 1017.06 1017.06 1017.06
|
||||
1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.18
|
||||
1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.16 1080.16 1017.05 1017.05 1017.05 1017.05
|
||||
1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16
|
||||
1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.15 1017.04 1017.04 1017.04 1017.04
|
||||
1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15
|
||||
1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1017.03 1017.03 1017.03 1017.03
|
||||
1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14
|
||||
1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1017.02 1017.02 1017.02 1017.02
|
||||
1080.12 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13
|
||||
1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1017.01 1017.01 1017.01 1017.01
|
||||
1080.11 1080.11 1080.11 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12
|
||||
1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1017.01 1017.01 1017.01 1017.01
|
||||
1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11
|
||||
1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1017 1017 1017 1017
|
||||
1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.1 1080.1 1080.1
|
||||
1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1016.99 1016.99 1016.99 1016.99
|
||||
1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08
|
||||
1080.06 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1016.98 1016.98 1016.98 1016.98
|
||||
1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07
|
||||
1080.05 1080.05 1080.05 1080.06 1080.06 1080.06 1080.06 1080.06 1016.97 1016.97 1016.97 1016.97
|
||||
1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06
|
||||
1080.04 1080.04 1080.04 1080.04 1080.05 1080.05 1080.05 1080.05 1016.96 1016.96 1016.96 1016.96
|
||||
1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05
|
||||
1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04
|
||||
1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04
|
||||
1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.03 1080.03 1080.03 1080.03 1080.03
|
||||
1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_g" NumberOfComponents="1" format="ascii">
|
||||
969.089 969.095 969.1 969.105 969.11 969.114 969.117 969.12 969.122 969.124 969.128 969.133
|
||||
969.14 969.148 969.155 969.162 969.169 969.176 969.182 969.189 969.195 969.201 969.206 969.209
|
||||
968.97 968.976 968.981 968.986 968.991 968.995 968.998 969.001 969.001 969.003 969.007 969.012
|
||||
969.02 969.028 969.036 969.043 969.05 969.057 969.063 969.07 969.076 969.082 969.088 969.093
|
||||
968.852 968.857 968.863 968.868 968.873 968.877 968.881 968.883 528.013 528.019 528.027 528.038
|
||||
968.901 968.909 968.917 968.924 968.931 968.937 968.944 968.951 968.957 968.964 968.972 968.982
|
||||
968.733 968.739 968.744 968.75 968.755 968.76 968.764 968.768 527.58 527.586 527.594 527.603
|
||||
968.784 968.792 968.799 968.805 968.812 968.818 968.825 968.831 968.838 968.845 968.854 968.865
|
||||
968.615 968.62 968.626 968.632 968.637 968.643 968.648 968.653 527.146 527.152 527.16 527.168
|
||||
968.667 968.674 968.681 968.687 968.693 968.699 968.705 968.712 968.718 968.726 968.734 968.745
|
||||
968.496 968.502 968.508 968.514 968.52 968.526 968.532 968.538 526.71 526.718 526.725 526.732
|
||||
968.551 968.557 968.563 968.568 968.574 968.58 968.586 968.592 968.598 968.605 968.612 968.621
|
||||
968.378 968.384 968.39 968.396 968.402 968.409 968.415 968.423 526.275 526.283 526.291 526.297
|
||||
968.435 968.44 968.445 968.45 968.455 968.461 968.466 968.472 968.477 968.483 968.488 968.492
|
||||
968.26 968.265 968.271 968.277 968.284 968.291 968.299 968.307 525.84 525.85 525.857 525.862
|
||||
968.319 968.323 968.327 968.331 968.336 968.341 968.347 968.352 968.357 968.361 968.365 968.368
|
||||
968.14 968.146 968.152 968.158 968.165 968.173 968.181 968.191 525.405 525.416 525.424 525.428
|
||||
968.202 968.205 968.208 968.212 968.217 968.222 968.227 968.232 968.237 968.241 968.244 968.246
|
||||
968.044 968.05 968.056 968.063 968.07 968.078 968.087 968.097 525.048 525.059 525.067 525.071
|
||||
968.108 968.109 968.113 968.116 968.12 968.125 968.129 968.133 968.138 968.141 968.144 968.145
|
||||
967.926 967.932 967.938 967.945 967.953 967.961 967.971 967.981 524.599 524.609 524.617 524.621
|
||||
967.991 967.993 967.995 967.998 968.001 968.005 968.008 968.012 968.015 968.018 968.02 968.021
|
||||
967.807 967.814 967.82 967.828 967.836 967.844 967.853 967.863 524.152 524.162 524.17 524.174
|
||||
967.874 967.875 967.877 967.879 967.882 967.885 967.888 967.891 967.893 967.895 967.897 967.898
|
||||
967.688 967.695 967.702 967.709 967.717 967.726 967.736 967.746 523.706 523.718 523.726 523.73
|
||||
967.756 967.757 967.759 967.761 967.763 967.765 967.767 967.77 967.772 967.773 967.775 967.775
|
||||
967.569 967.576 967.583 967.591 967.599 967.607 967.617 967.628 523.263 523.277 523.285 523.289
|
||||
967.639 967.639 967.64 967.641 967.643 967.645 967.647 967.649 967.651 967.652 967.653 967.654
|
||||
967.45 967.457 967.464 967.471 967.479 967.488 967.497 967.506 967.514 967.519 967.521 967.522
|
||||
967.52 967.52 967.521 967.522 967.523 967.525 967.527 967.528 967.53 967.531 967.532 967.532
|
||||
967.33 967.337 967.344 967.351 967.359 967.368 967.376 967.384 967.392 967.396 967.399 967.4
|
||||
967.4 967.4 967.401 967.402 967.403 967.405 967.406 967.408 967.409 967.41 967.411 967.412
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.986241
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.986239
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.986237
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.986235
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.999999
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 4.03568e-07 0.0137594
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 4.65551e-07 0.0137612
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 4.63239e-07 0.0137629
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 3.95919e-07 0.0137646
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 9.10179e-07
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 0.999998 0.932958
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 0.999998 0.932949
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 0.999998 0.932941
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 0.999998 0.932933
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.999995
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 2.5675e-19 1.0088e-05
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 3.94151e-19 1.0092e-05
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 3.88306e-19 1.00957e-05
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 2.42427e-19 1.00996e-05
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 2.94537e-18
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="porosity" NumberOfComponents="1" format="ascii">
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="temperature" NumberOfComponents="1" format="ascii">
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
</DataArray>
|
||||
</CellData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
@ -0,0 +1,660 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<CellData Scalars="pressure_l">
|
||||
<DataArray type="Float32" Name="pressure_l" NumberOfComponents="1" format="ascii">
|
||||
2.63098e+07 2.63111e+07 2.63123e+07 2.63133e+07 2.63143e+07 2.63151e+07 2.63158e+07 2.63163e+07 2.63167e+07 2.63172e+07 2.6318e+07 2.63191e+07
|
||||
2.63207e+07 2.63224e+07 2.6324e+07 2.63256e+07 2.63271e+07 2.63286e+07 2.63301e+07 2.63315e+07 2.63329e+07 2.63342e+07 2.63353e+07 2.6336e+07
|
||||
2.62835e+07 2.62847e+07 2.62859e+07 2.62869e+07 2.62879e+07 2.62887e+07 2.62894e+07 2.62899e+07 2.629e+07 2.62904e+07 2.62911e+07 2.62922e+07
|
||||
2.62941e+07 2.62959e+07 2.62976e+07 2.62992e+07 2.63007e+07 2.63022e+07 2.63036e+07 2.63051e+07 2.63065e+07 2.63079e+07 2.63092e+07 2.63102e+07
|
||||
2.62572e+07 2.62584e+07 2.62596e+07 2.62606e+07 2.62617e+07 2.62626e+07 2.62633e+07 2.62639e+07 2.62639e+07 2.62642e+07 2.62646e+07 2.62653e+07
|
||||
2.62677e+07 2.62695e+07 2.62712e+07 2.62728e+07 2.62743e+07 2.62758e+07 2.62772e+07 2.62787e+07 2.62802e+07 2.62817e+07 2.62834e+07 2.62855e+07
|
||||
2.6231e+07 2.62321e+07 2.62333e+07 2.62344e+07 2.62355e+07 2.62365e+07 2.62375e+07 2.62383e+07 2.62385e+07 2.62389e+07 2.62393e+07 2.62398e+07
|
||||
2.62417e+07 2.62434e+07 2.6245e+07 2.62465e+07 2.62479e+07 2.62493e+07 2.62508e+07 2.62522e+07 2.62537e+07 2.62554e+07 2.62572e+07 2.62597e+07
|
||||
2.62047e+07 2.62059e+07 2.62071e+07 2.62083e+07 2.62094e+07 2.62106e+07 2.62117e+07 2.62128e+07 2.62131e+07 2.62135e+07 2.62139e+07 2.62144e+07
|
||||
2.62159e+07 2.62174e+07 2.62188e+07 2.62202e+07 2.62216e+07 2.62229e+07 2.62243e+07 2.62257e+07 2.62272e+07 2.62288e+07 2.62306e+07 2.62331e+07
|
||||
2.61785e+07 2.61797e+07 2.61809e+07 2.61821e+07 2.61834e+07 2.61846e+07 2.61859e+07 2.61872e+07 2.61876e+07 2.61881e+07 2.61885e+07 2.61889e+07
|
||||
2.61902e+07 2.61914e+07 2.61927e+07 2.6194e+07 2.61952e+07 2.61965e+07 2.61978e+07 2.61991e+07 2.62005e+07 2.62019e+07 2.62036e+07 2.62057e+07
|
||||
2.61523e+07 2.61535e+07 2.61547e+07 2.6156e+07 2.61573e+07 2.61587e+07 2.61602e+07 2.61617e+07 2.61622e+07 2.61626e+07 2.6163e+07 2.61634e+07
|
||||
2.61644e+07 2.61655e+07 2.61666e+07 2.61677e+07 2.61689e+07 2.61701e+07 2.61713e+07 2.61725e+07 2.61738e+07 2.6175e+07 2.61761e+07 2.6177e+07
|
||||
2.6126e+07 2.61272e+07 2.61284e+07 2.61298e+07 2.61312e+07 2.61327e+07 2.61343e+07 2.61361e+07 2.61367e+07 2.61373e+07 2.61377e+07 2.6138e+07
|
||||
2.61387e+07 2.61395e+07 2.61404e+07 2.61414e+07 2.61425e+07 2.61436e+07 2.61448e+07 2.61459e+07 2.6147e+07 2.6148e+07 2.61489e+07 2.61494e+07
|
||||
2.60997e+07 2.61009e+07 2.61021e+07 2.61035e+07 2.61049e+07 2.61065e+07 2.61083e+07 2.61105e+07 2.61114e+07 2.6112e+07 2.61124e+07 2.61127e+07
|
||||
2.61128e+07 2.61133e+07 2.61141e+07 2.61151e+07 2.61161e+07 2.61172e+07 2.61183e+07 2.61193e+07 2.61204e+07 2.61213e+07 2.6122e+07 2.61224e+07
|
||||
2.60735e+07 2.60747e+07 2.6076e+07 2.60774e+07 2.60789e+07 2.60806e+07 2.60825e+07 2.60848e+07 2.60857e+07 2.60863e+07 2.60868e+07 2.6087e+07
|
||||
2.6087e+07 2.60874e+07 2.6088e+07 2.60889e+07 2.60898e+07 2.60907e+07 2.60917e+07 2.60927e+07 2.60936e+07 2.60943e+07 2.60949e+07 2.60953e+07
|
||||
2.60474e+07 2.60487e+07 2.60501e+07 2.60516e+07 2.60532e+07 2.6055e+07 2.60569e+07 2.6059e+07 2.60597e+07 2.60603e+07 2.60607e+07 2.60609e+07
|
||||
2.60612e+07 2.60616e+07 2.60622e+07 2.60628e+07 2.60636e+07 2.60643e+07 2.60651e+07 2.60659e+07 2.60666e+07 2.60672e+07 2.60676e+07 2.60679e+07
|
||||
2.60213e+07 2.60227e+07 2.60241e+07 2.60256e+07 2.60273e+07 2.60291e+07 2.60311e+07 2.60332e+07 2.60338e+07 2.60344e+07 2.60348e+07 2.6035e+07
|
||||
2.60354e+07 2.60358e+07 2.60362e+07 2.60367e+07 2.60373e+07 2.60379e+07 2.60386e+07 2.60392e+07 2.60398e+07 2.60402e+07 2.60406e+07 2.60408e+07
|
||||
2.59951e+07 2.59965e+07 2.5998e+07 2.59996e+07 2.60013e+07 2.60031e+07 2.60051e+07 2.60073e+07 2.6008e+07 2.60087e+07 2.60091e+07 2.60093e+07
|
||||
2.60096e+07 2.60098e+07 2.60101e+07 2.60105e+07 2.6011e+07 2.60115e+07 2.6012e+07 2.60125e+07 2.6013e+07 2.60134e+07 2.60137e+07 2.60138e+07
|
||||
2.59689e+07 2.59703e+07 2.59718e+07 2.59734e+07 2.59751e+07 2.5977e+07 2.5979e+07 2.59814e+07 2.59824e+07 2.59831e+07 2.59836e+07 2.59838e+07
|
||||
2.59837e+07 2.59838e+07 2.59839e+07 2.59842e+07 2.59846e+07 2.59851e+07 2.59855e+07 2.59859e+07 2.59863e+07 2.59866e+07 2.59869e+07 2.5987e+07
|
||||
2.59426e+07 2.5944e+07 2.59455e+07 2.59471e+07 2.59488e+07 2.59506e+07 2.59525e+07 2.59545e+07 2.59562e+07 2.59572e+07 2.59577e+07 2.59579e+07
|
||||
2.59576e+07 2.59575e+07 2.59577e+07 2.59579e+07 2.59582e+07 2.59586e+07 2.5959e+07 2.59594e+07 2.59597e+07 2.596e+07 2.59602e+07 2.59603e+07
|
||||
2.59163e+07 2.59177e+07 2.59192e+07 2.59207e+07 2.59224e+07 2.59242e+07 2.5926e+07 2.59277e+07 2.59292e+07 2.59303e+07 2.59309e+07 2.59311e+07
|
||||
2.59311e+07 2.59311e+07 2.59313e+07 2.59315e+07 2.59318e+07 2.59321e+07 2.59325e+07 2.59329e+07 2.59332e+07 2.59334e+07 2.59336e+07 2.59337e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="pressure_g" NumberOfComponents="1" format="ascii">
|
||||
2.63148e+07 2.63161e+07 2.63173e+07 2.63183e+07 2.63193e+07 2.63201e+07 2.63208e+07 2.63213e+07 2.63217e+07 2.63222e+07 2.6323e+07 2.63241e+07
|
||||
2.63257e+07 2.63274e+07 2.6329e+07 2.63306e+07 2.63321e+07 2.63336e+07 2.63351e+07 2.63365e+07 2.63379e+07 2.63392e+07 2.63403e+07 2.6341e+07
|
||||
2.62885e+07 2.62897e+07 2.62909e+07 2.62919e+07 2.62929e+07 2.62937e+07 2.62944e+07 2.62949e+07 2.6295e+07 2.62954e+07 2.62961e+07 2.62972e+07
|
||||
2.62991e+07 2.63009e+07 2.63026e+07 2.63042e+07 2.63057e+07 2.63072e+07 2.63086e+07 2.63101e+07 2.63115e+07 2.63129e+07 2.63142e+07 2.63152e+07
|
||||
2.62622e+07 2.62634e+07 2.62646e+07 2.62656e+07 2.62667e+07 2.62676e+07 2.62683e+07 2.62689e+07 2.62689e+07 2.62692e+07 2.62696e+07 2.62703e+07
|
||||
2.62727e+07 2.62745e+07 2.62762e+07 2.62778e+07 2.62793e+07 2.62808e+07 2.62822e+07 2.62837e+07 2.62852e+07 2.62867e+07 2.62884e+07 2.62906e+07
|
||||
2.6236e+07 2.62371e+07 2.62383e+07 2.62394e+07 2.62405e+07 2.62415e+07 2.62425e+07 2.62433e+07 2.62435e+07 2.62439e+07 2.62443e+07 2.62448e+07
|
||||
2.62467e+07 2.62484e+07 2.625e+07 2.62515e+07 2.62529e+07 2.62543e+07 2.62558e+07 2.62572e+07 2.62587e+07 2.62604e+07 2.62622e+07 2.62648e+07
|
||||
2.62097e+07 2.62109e+07 2.62121e+07 2.62133e+07 2.62144e+07 2.62156e+07 2.62167e+07 2.62178e+07 2.62181e+07 2.62185e+07 2.62189e+07 2.62194e+07
|
||||
2.62209e+07 2.62224e+07 2.62238e+07 2.62252e+07 2.62266e+07 2.62279e+07 2.62293e+07 2.62307e+07 2.62322e+07 2.62338e+07 2.62356e+07 2.62382e+07
|
||||
2.61835e+07 2.61847e+07 2.61859e+07 2.61871e+07 2.61884e+07 2.61896e+07 2.61909e+07 2.61922e+07 2.61926e+07 2.61931e+07 2.61935e+07 2.61939e+07
|
||||
2.61952e+07 2.61964e+07 2.61977e+07 2.6199e+07 2.62002e+07 2.62015e+07 2.62028e+07 2.62041e+07 2.62055e+07 2.62069e+07 2.62086e+07 2.62107e+07
|
||||
2.61573e+07 2.61585e+07 2.61597e+07 2.6161e+07 2.61623e+07 2.61637e+07 2.61652e+07 2.61667e+07 2.61672e+07 2.61676e+07 2.6168e+07 2.61684e+07
|
||||
2.61694e+07 2.61705e+07 2.61716e+07 2.61727e+07 2.61739e+07 2.61751e+07 2.61763e+07 2.61775e+07 2.61788e+07 2.618e+07 2.61811e+07 2.6182e+07
|
||||
2.6131e+07 2.61322e+07 2.61334e+07 2.61348e+07 2.61362e+07 2.61377e+07 2.61393e+07 2.61411e+07 2.61417e+07 2.61423e+07 2.61427e+07 2.6143e+07
|
||||
2.61437e+07 2.61445e+07 2.61454e+07 2.61464e+07 2.61475e+07 2.61486e+07 2.61498e+07 2.61509e+07 2.6152e+07 2.6153e+07 2.61539e+07 2.61544e+07
|
||||
2.61047e+07 2.61059e+07 2.61071e+07 2.61085e+07 2.61099e+07 2.61115e+07 2.61133e+07 2.61155e+07 2.61164e+07 2.6117e+07 2.61174e+07 2.61177e+07
|
||||
2.61178e+07 2.61183e+07 2.61191e+07 2.61201e+07 2.61211e+07 2.61222e+07 2.61233e+07 2.61243e+07 2.61254e+07 2.61263e+07 2.6127e+07 2.61274e+07
|
||||
2.60835e+07 2.60847e+07 2.6086e+07 2.60874e+07 2.60889e+07 2.60906e+07 2.60925e+07 2.60948e+07 2.60957e+07 2.60963e+07 2.60968e+07 2.6097e+07
|
||||
2.6097e+07 2.60974e+07 2.6098e+07 2.60989e+07 2.60998e+07 2.61007e+07 2.61017e+07 2.61027e+07 2.61036e+07 2.61043e+07 2.61049e+07 2.61053e+07
|
||||
2.60574e+07 2.60587e+07 2.60601e+07 2.60616e+07 2.60632e+07 2.6065e+07 2.60669e+07 2.6069e+07 2.60697e+07 2.60703e+07 2.60707e+07 2.60709e+07
|
||||
2.60712e+07 2.60716e+07 2.60722e+07 2.60728e+07 2.60736e+07 2.60743e+07 2.60751e+07 2.60759e+07 2.60766e+07 2.60772e+07 2.60776e+07 2.60779e+07
|
||||
2.60313e+07 2.60327e+07 2.60341e+07 2.60356e+07 2.60373e+07 2.60391e+07 2.60411e+07 2.60432e+07 2.60438e+07 2.60444e+07 2.60448e+07 2.6045e+07
|
||||
2.60454e+07 2.60458e+07 2.60462e+07 2.60467e+07 2.60473e+07 2.60479e+07 2.60486e+07 2.60492e+07 2.60498e+07 2.60502e+07 2.60506e+07 2.60508e+07
|
||||
2.60051e+07 2.60065e+07 2.6008e+07 2.60096e+07 2.60113e+07 2.60131e+07 2.60151e+07 2.60173e+07 2.6018e+07 2.60187e+07 2.60191e+07 2.60193e+07
|
||||
2.60196e+07 2.60198e+07 2.60201e+07 2.60205e+07 2.6021e+07 2.60215e+07 2.6022e+07 2.60225e+07 2.6023e+07 2.60234e+07 2.60237e+07 2.60238e+07
|
||||
2.59789e+07 2.59803e+07 2.59818e+07 2.59834e+07 2.59851e+07 2.5987e+07 2.5989e+07 2.59914e+07 2.59924e+07 2.59931e+07 2.59936e+07 2.59938e+07
|
||||
2.59937e+07 2.59938e+07 2.59939e+07 2.59942e+07 2.59946e+07 2.59951e+07 2.59955e+07 2.59959e+07 2.59963e+07 2.59966e+07 2.59969e+07 2.5997e+07
|
||||
2.59526e+07 2.5954e+07 2.59555e+07 2.59571e+07 2.59588e+07 2.59606e+07 2.59625e+07 2.59645e+07 2.59662e+07 2.59672e+07 2.59677e+07 2.59679e+07
|
||||
2.59676e+07 2.59675e+07 2.59677e+07 2.59679e+07 2.59682e+07 2.59686e+07 2.5969e+07 2.59694e+07 2.59697e+07 2.597e+07 2.59702e+07 2.59703e+07
|
||||
2.59263e+07 2.59277e+07 2.59292e+07 2.59307e+07 2.59324e+07 2.59342e+07 2.5936e+07 2.59377e+07 2.59392e+07 2.59403e+07 2.59409e+07 2.59411e+07
|
||||
2.59411e+07 2.59411e+07 2.59413e+07 2.59415e+07 2.59418e+07 2.59421e+07 2.59425e+07 2.59429e+07 2.59432e+07 2.59434e+07 2.59436e+07 2.59437e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_l" NumberOfComponents="1" format="ascii">
|
||||
1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19
|
||||
1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.19 1080.2 1080.2 1080.2 1080.2
|
||||
1080.17 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.15 1080.15 1080.15 1080.15
|
||||
1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.19 1080.19
|
||||
1080.16 1080.16 1080.16 1080.16 1080.17 1080.17 1080.17 1080.14 1017.28 1017.22 1017.25 1017.74
|
||||
1080.14 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.18
|
||||
1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.16 1080.09 1017.13 1017.05 1017.05 1017.4
|
||||
1080.13 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16
|
||||
1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.07 1017.12 1017.04 1017.04 1017.34
|
||||
1080.12 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15
|
||||
1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.05 1017.11 1017.03 1017.03 1017.29
|
||||
1080.11 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14
|
||||
1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.02 1017.1 1017.02 1017.02 1017.25
|
||||
1080.1 1080.12 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13
|
||||
1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1079.99 1017.09 1017.01 1017.01 1017.18
|
||||
1080.09 1080.11 1080.11 1080.11 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12
|
||||
1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1079.94 1017.08 1017 1017.01 1017.09
|
||||
1080.08 1080.1 1080.1 1080.1 1080.1 1080.1 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11
|
||||
1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.05 1017.07 1017 1017 1017.07
|
||||
1080.07 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.1 1080.1
|
||||
1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.04 1017.06 1016.99 1016.99 1017.07
|
||||
1080.06 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08
|
||||
1080.06 1080.06 1080.07 1080.07 1080.07 1080.07 1080.07 1080.03 1017.05 1016.98 1016.98 1017.06
|
||||
1080.04 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07
|
||||
1080.05 1080.05 1080.05 1080.06 1080.06 1080.06 1080.06 1080.02 1017.04 1016.97 1016.97 1017.05
|
||||
1080.03 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06
|
||||
1080.04 1080.04 1080.04 1080.04 1080.04 1080.05 1080.05 1080.01 1017.11 1017.03 1017.03 1017.11
|
||||
1080.02 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05
|
||||
1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.04 1080.04 1080.01 1080.01 1080.01 1080.01
|
||||
1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04
|
||||
1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.03 1080.03 1080.03 1080.03 1080.03
|
||||
1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_g" NumberOfComponents="1" format="ascii">
|
||||
969.089 969.094 969.099 969.104 969.108 969.112 969.115 969.117 969.119 969.121 969.125 969.13
|
||||
969.137 969.145 969.152 969.159 969.166 969.172 969.179 969.185 969.191 969.197 969.202 969.205
|
||||
968.97 968.975 968.98 968.985 968.989 968.993 968.996 968.998 968.679 968.68 968.684 968.69
|
||||
969.017 969.025 969.033 969.04 969.047 969.053 969.06 969.066 969.073 969.079 969.085 969.089
|
||||
968.851 968.857 968.862 968.867 968.871 968.875 968.878 968.534 528.913 528.662 528.808 530.874
|
||||
968.579 968.906 968.914 968.921 968.928 968.934 968.941 968.947 968.954 968.961 968.968 968.978
|
||||
968.733 968.738 968.743 968.748 968.753 968.758 968.761 967.98 527.885 527.577 527.588 529.042
|
||||
968.461 968.788 968.795 968.802 968.809 968.815 968.821 968.828 968.835 968.842 968.85 968.862
|
||||
968.614 968.62 968.625 968.63 968.636 968.641 968.644 967.67 527.448 527.142 527.152 528.403
|
||||
968.344 968.671 968.677 968.684 968.69 968.696 968.702 968.708 968.715 968.722 968.73 968.742
|
||||
968.496 968.502 968.507 968.512 968.518 968.524 968.527 967.415 527.012 526.708 526.716 527.807
|
||||
968.228 968.554 968.56 968.565 968.571 968.577 968.583 968.589 968.595 968.601 968.608 968.618
|
||||
968.378 968.383 968.389 968.394 968.4 968.407 968.411 967.149 526.577 526.273 526.281 527.208
|
||||
968.111 968.437 968.442 968.447 968.452 968.458 968.463 968.468 968.474 968.479 968.484 968.489
|
||||
968.259 968.265 968.27 968.276 968.282 968.289 968.293 966.799 526.142 525.839 525.847 526.561
|
||||
967.995 968.319 968.324 968.328 968.333 968.338 968.343 968.348 968.353 968.358 968.362 968.364
|
||||
968.14 968.145 968.151 968.157 968.164 968.171 968.173 966.086 525.706 525.405 525.413 525.776
|
||||
967.859 968.201 968.205 968.209 968.214 968.219 968.224 968.229 968.233 968.237 968.24 968.242
|
||||
968.044 968.049 968.055 968.061 968.068 968.076 968.084 967.591 525.349 525.048 525.055 525.371
|
||||
967.777 968.106 968.109 968.113 968.117 968.121 968.126 968.13 968.134 968.138 968.14 968.142
|
||||
967.925 967.931 967.937 967.944 967.951 967.959 967.968 967.522 524.9 524.597 524.604 524.939
|
||||
967.665 967.989 967.992 967.995 967.998 968.002 968.005 968.009 968.012 968.014 968.016 968.018
|
||||
967.807 967.813 967.819 967.826 967.834 967.842 967.85 967.412 524.452 524.15 524.157 524.495
|
||||
967.547 967.872 967.874 967.876 967.879 967.882 967.885 967.887 967.89 967.892 967.894 967.894
|
||||
967.688 967.694 967.701 967.708 967.716 967.724 967.733 967.28 524.006 523.705 523.712 524.043
|
||||
967.429 967.754 967.755 967.757 967.759 967.762 967.764 967.766 967.768 967.77 967.771 967.772
|
||||
967.569 967.575 967.582 967.589 967.597 967.605 967.614 967.101 523.875 523.576 523.584 523.9
|
||||
967.292 967.635 967.637 967.638 967.64 967.642 967.644 967.646 967.647 967.649 967.65 967.65
|
||||
967.45 967.456 967.463 967.47 967.477 967.485 967.494 967.502 967.106 967.141 967.151 967.148
|
||||
967.516 967.517 967.517 967.518 967.52 967.521 967.523 967.525 967.526 967.528 967.529 967.529
|
||||
967.33 967.336 967.343 967.35 967.357 967.365 967.373 967.381 967.388 967.393 967.395 967.396
|
||||
967.397 967.397 967.397 967.398 967.4 967.401 967.403 967.404 967.406 967.407 967.408 967.408
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.986241
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.986239
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.986237
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.986235
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.999999
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 4.09865e-07 0.0137594
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 4.72823e-07 0.0137612
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 4.70476e-07 0.0137629
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 4.02101e-07 0.0137647
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 9.24394e-07
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 0.999998 0.932958
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 0.999998 0.932949
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 0.999998 0.932941
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 0.999998 0.932933
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0.999995
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 2.68957e-19 1.00881e-05
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 4.12911e-19 1.00921e-05
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 4.06792e-19 1.00958e-05
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 2.5396e-19 1.00997e-05
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 3.08554e-18
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="porosity" NumberOfComponents="1" format="ascii">
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="temperature" NumberOfComponents="1" format="ascii">
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.233 293.233 293.233 293.233
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.24 392.903 392.972 392.935 392.379
|
||||
293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.353 393.065 393.15 393.149 392.756
|
||||
293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.404 393.065 393.15 393.15 392.812
|
||||
293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.151 293.44 393.066 393.15 393.15 392.855
|
||||
293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.151 293.478 393.066 393.15 393.15 392.9
|
||||
293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.151 293.539 393.066 393.15 393.15 392.957
|
||||
293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.152 293.693 393.066 393.15 393.15 393.053
|
||||
293.238 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.28 393.065 393.15 393.15 393.065
|
||||
293.235 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.268 393.065 393.15 393.15 393.06
|
||||
293.234 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.266 393.065 393.15 393.15 393.06
|
||||
293.234 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.269 393.065 393.15 393.15 393.062
|
||||
293.234 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.285 392.981 393.065 393.065 392.981
|
||||
293.239 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.255 293.247 293.244 293.245
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
</DataArray>
|
||||
</CellData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
@ -4,101 +4,101 @@
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="pressure_l">
|
||||
<DataArray type="Float32" Name="pressure_l" NumberOfComponents="1" format="ascii">
|
||||
2.63166e+07 2.63218e+07 2.62952e+07 2.62959e+07 2.63239e+07 2.62976e+07 2.63254e+07 2.6299e+07 2.63267e+07 2.63003e+07 2.63279e+07 2.63014e+07
|
||||
2.63289e+07 2.63025e+07 2.63298e+07 2.63033e+07 2.63306e+07 2.63041e+07 2.63314e+07 2.63048e+07 2.63323e+07 2.63057e+07 2.63335e+07 2.63068e+07
|
||||
2.63349e+07 2.63083e+07 2.63364e+07 2.63099e+07 2.6338e+07 2.63115e+07 2.63395e+07 2.63131e+07 2.63411e+07 2.63146e+07 2.63426e+07 2.63161e+07
|
||||
2.6344e+07 2.63176e+07 2.63455e+07 2.6319e+07 2.63469e+07 2.63205e+07 2.63483e+07 2.63219e+07 2.63495e+07 2.63232e+07 2.63504e+07 2.63243e+07
|
||||
2.63508e+07 2.63247e+07 2.62693e+07 2.62702e+07 2.62714e+07 2.62727e+07 2.6274e+07 2.62751e+07 2.62762e+07 2.62771e+07 2.62777e+07 2.62781e+07
|
||||
2.62787e+07 2.62798e+07 2.62817e+07 2.62834e+07 2.6285e+07 2.62866e+07 2.62881e+07 2.62896e+07 2.62911e+07 2.62926e+07 2.6294e+07 2.62955e+07
|
||||
2.6297e+07 2.62985e+07 2.63001e+07 2.62431e+07 2.62442e+07 2.62453e+07 2.62466e+07 2.62478e+07 2.62489e+07 2.625e+07 2.6251e+07 2.62517e+07
|
||||
2.62518e+07 2.62522e+07 2.62527e+07 2.62552e+07 2.6257e+07 2.62587e+07 2.62602e+07 2.62617e+07 2.62632e+07 2.62646e+07 2.62661e+07 2.62676e+07
|
||||
2.62691e+07 2.62708e+07 2.62727e+07 2.62757e+07 2.62169e+07 2.6218e+07 2.62192e+07 2.62204e+07 2.62216e+07 2.62228e+07 2.6224e+07 2.62251e+07
|
||||
2.62261e+07 2.62264e+07 2.62268e+07 2.62273e+07 2.62291e+07 2.62308e+07 2.62324e+07 2.62339e+07 2.62353e+07 2.62367e+07 2.62382e+07 2.62396e+07
|
||||
2.62411e+07 2.62426e+07 2.62444e+07 2.62465e+07 2.62496e+07 2.61907e+07 2.61918e+07 2.6193e+07 2.61942e+07 2.61954e+07 2.61967e+07 2.6198e+07
|
||||
2.61993e+07 2.62005e+07 2.62009e+07 2.62014e+07 2.62018e+07 2.62033e+07 2.62048e+07 2.62062e+07 2.62076e+07 2.62089e+07 2.62103e+07 2.62117e+07
|
||||
2.62131e+07 2.62145e+07 2.6216e+07 2.62176e+07 2.62195e+07 2.62225e+07 2.61644e+07 2.61656e+07 2.61668e+07 2.6168e+07 2.61693e+07 2.61706e+07
|
||||
2.6172e+07 2.61735e+07 2.6175e+07 2.61754e+07 2.61759e+07 2.61763e+07 2.61775e+07 2.61787e+07 2.618e+07 2.61813e+07 2.61826e+07 2.61839e+07
|
||||
2.61852e+07 2.61865e+07 2.61879e+07 2.61893e+07 2.61907e+07 2.61921e+07 2.61937e+07 2.61382e+07 2.61393e+07 2.61405e+07 2.61417e+07 2.6143e+07
|
||||
2.61444e+07 2.61459e+07 2.61476e+07 2.61494e+07 2.61499e+07 2.61504e+07 2.61508e+07 2.61517e+07 2.61527e+07 2.61538e+07 2.61549e+07 2.61562e+07
|
||||
2.61574e+07 2.61587e+07 2.616e+07 2.61613e+07 2.61625e+07 2.61637e+07 2.61646e+07 2.6165e+07 2.6112e+07 2.6113e+07 2.61142e+07 2.61154e+07
|
||||
2.61167e+07 2.61182e+07 2.61197e+07 2.61215e+07 2.61237e+07 2.61246e+07 2.61252e+07 2.61255e+07 2.61257e+07 2.61265e+07 2.61274e+07 2.61286e+07
|
||||
2.61297e+07 2.6131e+07 2.61322e+07 2.61334e+07 2.61346e+07 2.61358e+07 2.61368e+07 2.61375e+07 2.61378e+07 2.60857e+07 2.60868e+07 2.6088e+07
|
||||
2.60893e+07 2.60907e+07 2.60922e+07 2.60938e+07 2.60957e+07 2.60979e+07 2.60988e+07 2.60994e+07 2.60997e+07 2.60998e+07 2.61005e+07 2.61013e+07
|
||||
2.61023e+07 2.61034e+07 2.61045e+07 2.61056e+07 2.61067e+07 2.61078e+07 2.61088e+07 2.61097e+07 2.61102e+07 2.61104e+07 2.60596e+07 2.60608e+07
|
||||
2.60621e+07 2.60634e+07 2.60649e+07 2.60664e+07 2.60681e+07 2.607e+07 2.6072e+07 2.60726e+07 2.60731e+07 2.60734e+07 2.6074e+07 2.60746e+07
|
||||
2.60754e+07 2.60762e+07 2.60771e+07 2.6078e+07 2.6079e+07 2.60799e+07 2.60808e+07 2.60816e+07 2.60822e+07 2.60826e+07 2.60828e+07 2.60334e+07
|
||||
2.60347e+07 2.60361e+07 2.60375e+07 2.60389e+07 2.60405e+07 2.60423e+07 2.60441e+07 2.60461e+07 2.60466e+07 2.60471e+07 2.60474e+07 2.60481e+07
|
||||
2.60487e+07 2.60493e+07 2.605e+07 2.60508e+07 2.60516e+07 2.60524e+07 2.60531e+07 2.60539e+07 2.60545e+07 2.6055e+07 2.60553e+07 2.60554e+07
|
||||
2.60072e+07 2.60086e+07 2.601e+07 2.60114e+07 2.60129e+07 2.60145e+07 2.60162e+07 2.60181e+07 2.60201e+07 2.60208e+07 2.60213e+07 2.60216e+07
|
||||
2.60222e+07 2.60226e+07 2.60231e+07 2.60237e+07 2.60244e+07 2.60251e+07 2.60258e+07 2.60264e+07 2.6027e+07 2.60276e+07 2.6028e+07 2.60282e+07
|
||||
2.60283e+07 2.5981e+07 2.59825e+07 2.59839e+07 2.59853e+07 2.59868e+07 2.59884e+07 2.59901e+07 2.59919e+07 2.59942e+07 2.5995e+07 2.59957e+07
|
||||
2.59961e+07 2.59962e+07 2.59965e+07 2.59969e+07 2.59974e+07 2.5998e+07 2.59986e+07 2.59992e+07 2.59998e+07 2.60003e+07 2.60007e+07 2.60011e+07
|
||||
2.60013e+07 2.60014e+07 2.59548e+07 2.59564e+07 2.59578e+07 2.59592e+07 2.59606e+07 2.59621e+07 2.59637e+07 2.59654e+07 2.59671e+07 2.5969e+07
|
||||
2.59697e+07 2.59702e+07 2.597e+07 2.59702e+07 2.59706e+07 2.59711e+07 2.59716e+07 2.59721e+07 2.59726e+07 2.59732e+07 2.59736e+07 2.5974e+07
|
||||
2.59743e+07 2.59745e+07 2.59746e+07 2.59288e+07 2.59308e+07 2.59317e+07 2.59329e+07 2.59343e+07 2.59357e+07 2.59373e+07 2.59389e+07 2.59404e+07
|
||||
2.59418e+07 2.59427e+07 2.59432e+07 2.59436e+07 2.59438e+07 2.59442e+07 2.59446e+07 2.59451e+07 2.59456e+07 2.59461e+07 2.59466e+07 2.5947e+07
|
||||
2.59474e+07 2.59477e+07 2.59478e+07 2.59479e+07 2.59075e+07 2.59048e+07 2.59054e+07 2.59065e+07 2.59079e+07 2.59093e+07 2.59108e+07 2.59124e+07
|
||||
2.59138e+07 2.59151e+07 2.5916e+07 2.59166e+07 2.5917e+07 2.59174e+07 2.59178e+07 2.59182e+07 2.59186e+07 2.59191e+07 2.59196e+07 2.59201e+07
|
||||
2.59205e+07 2.59209e+07 2.59211e+07 2.59213e+07 2.59214e+07
|
||||
2.63182e+07 2.63225e+07 2.62954e+07 2.62964e+07 2.63244e+07 2.6298e+07 2.63258e+07 2.62994e+07 2.63271e+07 2.63007e+07 2.63283e+07 2.63018e+07
|
||||
2.63293e+07 2.63028e+07 2.63302e+07 2.63037e+07 2.6331e+07 2.63045e+07 2.63318e+07 2.63052e+07 2.63327e+07 2.63061e+07 2.63338e+07 2.63072e+07
|
||||
2.63352e+07 2.63087e+07 2.63368e+07 2.63103e+07 2.63384e+07 2.63119e+07 2.63399e+07 2.63134e+07 2.63414e+07 2.6315e+07 2.63429e+07 2.63165e+07
|
||||
2.63444e+07 2.63179e+07 2.63459e+07 2.63194e+07 2.63473e+07 2.63208e+07 2.63487e+07 2.63222e+07 2.63499e+07 2.63235e+07 2.63508e+07 2.63246e+07
|
||||
2.63512e+07 2.63251e+07 2.62696e+07 2.62706e+07 2.62719e+07 2.62731e+07 2.62744e+07 2.62755e+07 2.62766e+07 2.62775e+07 2.62781e+07 2.62784e+07
|
||||
2.62791e+07 2.62802e+07 2.6282e+07 2.62838e+07 2.62854e+07 2.6287e+07 2.62885e+07 2.629e+07 2.62915e+07 2.62929e+07 2.62944e+07 2.62959e+07
|
||||
2.62974e+07 2.62989e+07 2.63005e+07 2.62434e+07 2.62445e+07 2.62457e+07 2.62469e+07 2.62482e+07 2.62493e+07 2.62504e+07 2.62514e+07 2.62521e+07
|
||||
2.62522e+07 2.62526e+07 2.62531e+07 2.62556e+07 2.62574e+07 2.62591e+07 2.62606e+07 2.62621e+07 2.62636e+07 2.6265e+07 2.62665e+07 2.6268e+07
|
||||
2.62695e+07 2.62712e+07 2.62731e+07 2.62761e+07 2.62172e+07 2.62184e+07 2.62196e+07 2.62208e+07 2.6222e+07 2.62232e+07 2.62244e+07 2.62255e+07
|
||||
2.62265e+07 2.62268e+07 2.62272e+07 2.62277e+07 2.62295e+07 2.62312e+07 2.62328e+07 2.62342e+07 2.62357e+07 2.62371e+07 2.62385e+07 2.624e+07
|
||||
2.62415e+07 2.6243e+07 2.62448e+07 2.62468e+07 2.625e+07 2.6191e+07 2.61922e+07 2.61934e+07 2.61946e+07 2.61958e+07 2.61971e+07 2.61984e+07
|
||||
2.61996e+07 2.62009e+07 2.62013e+07 2.62017e+07 2.62022e+07 2.62037e+07 2.62051e+07 2.62065e+07 2.62079e+07 2.62093e+07 2.62107e+07 2.62121e+07
|
||||
2.62135e+07 2.62149e+07 2.62164e+07 2.6218e+07 2.62199e+07 2.62229e+07 2.61648e+07 2.61659e+07 2.61671e+07 2.61684e+07 2.61696e+07 2.6171e+07
|
||||
2.61724e+07 2.61738e+07 2.61753e+07 2.61758e+07 2.61763e+07 2.61767e+07 2.61779e+07 2.61791e+07 2.61804e+07 2.61816e+07 2.61829e+07 2.61842e+07
|
||||
2.61856e+07 2.61869e+07 2.61883e+07 2.61897e+07 2.61911e+07 2.61925e+07 2.61941e+07 2.61385e+07 2.61397e+07 2.61408e+07 2.61421e+07 2.61434e+07
|
||||
2.61448e+07 2.61463e+07 2.6148e+07 2.61498e+07 2.61503e+07 2.61508e+07 2.61512e+07 2.61521e+07 2.6153e+07 2.61541e+07 2.61553e+07 2.61565e+07
|
||||
2.61578e+07 2.61591e+07 2.61604e+07 2.61616e+07 2.61629e+07 2.6164e+07 2.6165e+07 2.61654e+07 2.61123e+07 2.61133e+07 2.61145e+07 2.61158e+07
|
||||
2.61171e+07 2.61185e+07 2.61201e+07 2.61219e+07 2.6124e+07 2.6125e+07 2.61255e+07 2.61259e+07 2.61261e+07 2.61268e+07 2.61278e+07 2.61289e+07
|
||||
2.61301e+07 2.61313e+07 2.61326e+07 2.61338e+07 2.6135e+07 2.61362e+07 2.61372e+07 2.61379e+07 2.61382e+07 2.60861e+07 2.60872e+07 2.60884e+07
|
||||
2.60897e+07 2.6091e+07 2.60925e+07 2.60942e+07 2.6096e+07 2.60983e+07 2.60992e+07 2.60998e+07 2.61001e+07 2.61002e+07 2.61008e+07 2.61017e+07
|
||||
2.61027e+07 2.61038e+07 2.61049e+07 2.6106e+07 2.61071e+07 2.61082e+07 2.61092e+07 2.611e+07 2.61106e+07 2.61108e+07 2.60599e+07 2.60611e+07
|
||||
2.60624e+07 2.60638e+07 2.60652e+07 2.60668e+07 2.60685e+07 2.60704e+07 2.60724e+07 2.6073e+07 2.60735e+07 2.60738e+07 2.60744e+07 2.6075e+07
|
||||
2.60757e+07 2.60766e+07 2.60775e+07 2.60784e+07 2.60794e+07 2.60803e+07 2.60812e+07 2.6082e+07 2.60826e+07 2.6083e+07 2.60832e+07 2.60338e+07
|
||||
2.60351e+07 2.60364e+07 2.60378e+07 2.60393e+07 2.60409e+07 2.60426e+07 2.60445e+07 2.60464e+07 2.6047e+07 2.60475e+07 2.60478e+07 2.60485e+07
|
||||
2.6049e+07 2.60497e+07 2.60504e+07 2.60511e+07 2.60519e+07 2.60527e+07 2.60535e+07 2.60543e+07 2.60549e+07 2.60554e+07 2.60557e+07 2.60558e+07
|
||||
2.60076e+07 2.6009e+07 2.60104e+07 2.60118e+07 2.60133e+07 2.60149e+07 2.60166e+07 2.60185e+07 2.60205e+07 2.60211e+07 2.60217e+07 2.6022e+07
|
||||
2.60225e+07 2.6023e+07 2.60235e+07 2.60241e+07 2.60248e+07 2.60255e+07 2.60261e+07 2.60268e+07 2.60274e+07 2.60279e+07 2.60283e+07 2.60286e+07
|
||||
2.60287e+07 2.59814e+07 2.59829e+07 2.59843e+07 2.59857e+07 2.59872e+07 2.59887e+07 2.59904e+07 2.59923e+07 2.59946e+07 2.59954e+07 2.59961e+07
|
||||
2.59965e+07 2.59966e+07 2.59969e+07 2.59973e+07 2.59978e+07 2.59984e+07 2.5999e+07 2.59996e+07 2.60002e+07 2.60007e+07 2.60011e+07 2.60015e+07
|
||||
2.60017e+07 2.60017e+07 2.59553e+07 2.59568e+07 2.59582e+07 2.59595e+07 2.59609e+07 2.59625e+07 2.59641e+07 2.59658e+07 2.59675e+07 2.59693e+07
|
||||
2.59701e+07 2.59705e+07 2.59704e+07 2.59706e+07 2.5971e+07 2.59714e+07 2.59719e+07 2.59725e+07 2.5973e+07 2.59735e+07 2.5974e+07 2.59744e+07
|
||||
2.59747e+07 2.59749e+07 2.5975e+07 2.59294e+07 2.5931e+07 2.5932e+07 2.59333e+07 2.59346e+07 2.59361e+07 2.59377e+07 2.59392e+07 2.59408e+07
|
||||
2.59421e+07 2.59431e+07 2.59436e+07 2.59439e+07 2.59442e+07 2.59446e+07 2.5945e+07 2.59455e+07 2.5946e+07 2.59465e+07 2.5947e+07 2.59474e+07
|
||||
2.59478e+07 2.59481e+07 2.59482e+07 2.59483e+07 2.59067e+07 2.5905e+07 2.59057e+07 2.59069e+07 2.59082e+07 2.59096e+07 2.59112e+07 2.59127e+07
|
||||
2.59142e+07 2.59155e+07 2.59164e+07 2.5917e+07 2.59174e+07 2.59178e+07 2.59181e+07 2.59186e+07 2.5919e+07 2.59195e+07 2.592e+07 2.59205e+07
|
||||
2.59209e+07 2.59212e+07 2.59215e+07 2.59217e+07 2.59217e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="pressure_g" NumberOfComponents="1" format="ascii">
|
||||
2.63216e+07 2.63268e+07 2.63002e+07 2.63009e+07 2.63289e+07 2.63026e+07 2.63304e+07 2.6304e+07 2.63317e+07 2.63053e+07 2.63329e+07 2.63064e+07
|
||||
2.63339e+07 2.63075e+07 2.63348e+07 2.63083e+07 2.63356e+07 2.63091e+07 2.63364e+07 2.63098e+07 2.63373e+07 2.63107e+07 2.63385e+07 2.63118e+07
|
||||
2.63399e+07 2.63133e+07 2.63414e+07 2.63149e+07 2.6343e+07 2.63165e+07 2.63445e+07 2.63181e+07 2.63461e+07 2.63196e+07 2.63476e+07 2.63211e+07
|
||||
2.6349e+07 2.63226e+07 2.63505e+07 2.6324e+07 2.63519e+07 2.63255e+07 2.63533e+07 2.63269e+07 2.63545e+07 2.63282e+07 2.63554e+07 2.63293e+07
|
||||
2.63558e+07 2.63297e+07 2.62743e+07 2.62752e+07 2.62764e+07 2.62777e+07 2.6279e+07 2.62801e+07 2.62812e+07 2.62821e+07 2.62827e+07 2.62831e+07
|
||||
2.62837e+07 2.62848e+07 2.62867e+07 2.62884e+07 2.629e+07 2.62916e+07 2.62931e+07 2.62946e+07 2.62961e+07 2.62976e+07 2.6299e+07 2.63005e+07
|
||||
2.6302e+07 2.63035e+07 2.63052e+07 2.62481e+07 2.62492e+07 2.62503e+07 2.62516e+07 2.62528e+07 2.62539e+07 2.6255e+07 2.6256e+07 2.62567e+07
|
||||
2.62568e+07 2.62572e+07 2.62577e+07 2.62602e+07 2.6262e+07 2.62637e+07 2.62652e+07 2.62667e+07 2.62682e+07 2.62696e+07 2.62711e+07 2.62726e+07
|
||||
2.62741e+07 2.62758e+07 2.62777e+07 2.62808e+07 2.62219e+07 2.6223e+07 2.62242e+07 2.62254e+07 2.62266e+07 2.62278e+07 2.6229e+07 2.62301e+07
|
||||
2.62311e+07 2.62314e+07 2.62318e+07 2.62323e+07 2.62341e+07 2.62358e+07 2.62374e+07 2.62389e+07 2.62403e+07 2.62417e+07 2.62432e+07 2.62446e+07
|
||||
2.62461e+07 2.62476e+07 2.62494e+07 2.62515e+07 2.62547e+07 2.61957e+07 2.61968e+07 2.6198e+07 2.61992e+07 2.62004e+07 2.62017e+07 2.6203e+07
|
||||
2.62043e+07 2.62055e+07 2.62059e+07 2.62064e+07 2.62068e+07 2.62083e+07 2.62098e+07 2.62112e+07 2.62126e+07 2.62139e+07 2.62153e+07 2.62167e+07
|
||||
2.62181e+07 2.62195e+07 2.6221e+07 2.62226e+07 2.62245e+07 2.62276e+07 2.61694e+07 2.61706e+07 2.61718e+07 2.6173e+07 2.61743e+07 2.61756e+07
|
||||
2.6177e+07 2.61785e+07 2.618e+07 2.61804e+07 2.61809e+07 2.61813e+07 2.61825e+07 2.61837e+07 2.6185e+07 2.61863e+07 2.61876e+07 2.61889e+07
|
||||
2.61902e+07 2.61915e+07 2.61929e+07 2.61943e+07 2.61957e+07 2.61971e+07 2.61988e+07 2.61432e+07 2.61443e+07 2.61455e+07 2.61467e+07 2.6148e+07
|
||||
2.61494e+07 2.61509e+07 2.61526e+07 2.61544e+07 2.61549e+07 2.61554e+07 2.61558e+07 2.61567e+07 2.61577e+07 2.61588e+07 2.61599e+07 2.61612e+07
|
||||
2.61624e+07 2.61637e+07 2.6165e+07 2.61663e+07 2.61675e+07 2.61687e+07 2.61696e+07 2.617e+07 2.6117e+07 2.6118e+07 2.61192e+07 2.61204e+07
|
||||
2.61217e+07 2.61232e+07 2.61247e+07 2.61265e+07 2.61287e+07 2.61296e+07 2.61302e+07 2.61305e+07 2.61307e+07 2.61315e+07 2.61324e+07 2.61336e+07
|
||||
2.61347e+07 2.6136e+07 2.61372e+07 2.61384e+07 2.61396e+07 2.61408e+07 2.61418e+07 2.61425e+07 2.61428e+07 2.60957e+07 2.60968e+07 2.6098e+07
|
||||
2.60993e+07 2.61007e+07 2.61022e+07 2.61038e+07 2.61057e+07 2.61079e+07 2.61088e+07 2.61094e+07 2.61097e+07 2.61098e+07 2.61105e+07 2.61113e+07
|
||||
2.61123e+07 2.61134e+07 2.61145e+07 2.61156e+07 2.61167e+07 2.61178e+07 2.61188e+07 2.61197e+07 2.61202e+07 2.61204e+07 2.60696e+07 2.60708e+07
|
||||
2.60721e+07 2.60734e+07 2.60749e+07 2.60764e+07 2.60781e+07 2.608e+07 2.6082e+07 2.60826e+07 2.60831e+07 2.60834e+07 2.6084e+07 2.60846e+07
|
||||
2.60854e+07 2.60862e+07 2.60871e+07 2.6088e+07 2.6089e+07 2.60899e+07 2.60908e+07 2.60916e+07 2.60922e+07 2.60926e+07 2.60928e+07 2.60434e+07
|
||||
2.60447e+07 2.60461e+07 2.60475e+07 2.60489e+07 2.60505e+07 2.60523e+07 2.60541e+07 2.60561e+07 2.60566e+07 2.60571e+07 2.60574e+07 2.60581e+07
|
||||
2.60587e+07 2.60593e+07 2.606e+07 2.60608e+07 2.60616e+07 2.60624e+07 2.60631e+07 2.60639e+07 2.60645e+07 2.6065e+07 2.60653e+07 2.60654e+07
|
||||
2.60172e+07 2.60186e+07 2.602e+07 2.60214e+07 2.60229e+07 2.60245e+07 2.60262e+07 2.60281e+07 2.60301e+07 2.60308e+07 2.60313e+07 2.60316e+07
|
||||
2.60322e+07 2.60326e+07 2.60331e+07 2.60337e+07 2.60344e+07 2.60351e+07 2.60358e+07 2.60364e+07 2.6037e+07 2.60376e+07 2.6038e+07 2.60382e+07
|
||||
2.60383e+07 2.5991e+07 2.59925e+07 2.59939e+07 2.59953e+07 2.59968e+07 2.59984e+07 2.60001e+07 2.60019e+07 2.60042e+07 2.6005e+07 2.60057e+07
|
||||
2.60061e+07 2.60062e+07 2.60065e+07 2.60069e+07 2.60074e+07 2.6008e+07 2.60086e+07 2.60092e+07 2.60098e+07 2.60103e+07 2.60107e+07 2.60111e+07
|
||||
2.60113e+07 2.60114e+07 2.59648e+07 2.59664e+07 2.59678e+07 2.59692e+07 2.59706e+07 2.59721e+07 2.59737e+07 2.59754e+07 2.59771e+07 2.5979e+07
|
||||
2.59797e+07 2.59802e+07 2.598e+07 2.59802e+07 2.59806e+07 2.59811e+07 2.59816e+07 2.59821e+07 2.59826e+07 2.59832e+07 2.59836e+07 2.5984e+07
|
||||
2.59843e+07 2.59845e+07 2.59846e+07 2.59388e+07 2.59408e+07 2.59417e+07 2.59429e+07 2.59443e+07 2.59457e+07 2.59473e+07 2.59489e+07 2.59504e+07
|
||||
2.59518e+07 2.59527e+07 2.59532e+07 2.59536e+07 2.59538e+07 2.59542e+07 2.59546e+07 2.59551e+07 2.59556e+07 2.59561e+07 2.59566e+07 2.5957e+07
|
||||
2.59574e+07 2.59577e+07 2.59578e+07 2.59579e+07 2.59175e+07 2.59148e+07 2.59154e+07 2.59165e+07 2.59179e+07 2.59193e+07 2.59208e+07 2.59224e+07
|
||||
2.59238e+07 2.59251e+07 2.5926e+07 2.59266e+07 2.5927e+07 2.59274e+07 2.59278e+07 2.59282e+07 2.59286e+07 2.59291e+07 2.59296e+07 2.59301e+07
|
||||
2.59305e+07 2.59309e+07 2.59311e+07 2.59313e+07 2.59314e+07
|
||||
2.63232e+07 2.63275e+07 2.63004e+07 2.63014e+07 2.63294e+07 2.6303e+07 2.63308e+07 2.63044e+07 2.63321e+07 2.63057e+07 2.63333e+07 2.63068e+07
|
||||
2.63343e+07 2.63078e+07 2.63352e+07 2.63087e+07 2.6336e+07 2.63095e+07 2.63368e+07 2.63102e+07 2.63377e+07 2.63111e+07 2.63388e+07 2.63122e+07
|
||||
2.63402e+07 2.63137e+07 2.63418e+07 2.63153e+07 2.63434e+07 2.63169e+07 2.63449e+07 2.63184e+07 2.63464e+07 2.632e+07 2.63479e+07 2.63215e+07
|
||||
2.63494e+07 2.63229e+07 2.63509e+07 2.63244e+07 2.63523e+07 2.63258e+07 2.63537e+07 2.63272e+07 2.63549e+07 2.63285e+07 2.63558e+07 2.63296e+07
|
||||
2.63562e+07 2.63301e+07 2.62746e+07 2.62756e+07 2.62769e+07 2.62781e+07 2.62794e+07 2.62805e+07 2.62816e+07 2.62825e+07 2.62831e+07 2.62834e+07
|
||||
2.62841e+07 2.62852e+07 2.6287e+07 2.62888e+07 2.62904e+07 2.6292e+07 2.62935e+07 2.6295e+07 2.62965e+07 2.62979e+07 2.62994e+07 2.63009e+07
|
||||
2.63024e+07 2.63039e+07 2.63056e+07 2.62484e+07 2.62495e+07 2.62507e+07 2.62519e+07 2.62532e+07 2.62543e+07 2.62554e+07 2.62564e+07 2.62571e+07
|
||||
2.62572e+07 2.62576e+07 2.62581e+07 2.62606e+07 2.62624e+07 2.62641e+07 2.62656e+07 2.62671e+07 2.62686e+07 2.627e+07 2.62715e+07 2.6273e+07
|
||||
2.62745e+07 2.62762e+07 2.62781e+07 2.62812e+07 2.62222e+07 2.62234e+07 2.62246e+07 2.62258e+07 2.6227e+07 2.62282e+07 2.62294e+07 2.62305e+07
|
||||
2.62315e+07 2.62318e+07 2.62322e+07 2.62327e+07 2.62345e+07 2.62362e+07 2.62378e+07 2.62392e+07 2.62407e+07 2.62421e+07 2.62435e+07 2.6245e+07
|
||||
2.62465e+07 2.6248e+07 2.62498e+07 2.62518e+07 2.62551e+07 2.6196e+07 2.61972e+07 2.61984e+07 2.61996e+07 2.62008e+07 2.62021e+07 2.62034e+07
|
||||
2.62046e+07 2.62059e+07 2.62063e+07 2.62067e+07 2.62072e+07 2.62087e+07 2.62101e+07 2.62115e+07 2.62129e+07 2.62143e+07 2.62157e+07 2.62171e+07
|
||||
2.62185e+07 2.62199e+07 2.62214e+07 2.6223e+07 2.62249e+07 2.6228e+07 2.61698e+07 2.61709e+07 2.61721e+07 2.61734e+07 2.61746e+07 2.6176e+07
|
||||
2.61774e+07 2.61788e+07 2.61803e+07 2.61808e+07 2.61813e+07 2.61817e+07 2.61829e+07 2.61841e+07 2.61854e+07 2.61866e+07 2.61879e+07 2.61892e+07
|
||||
2.61906e+07 2.61919e+07 2.61933e+07 2.61947e+07 2.61961e+07 2.61975e+07 2.61992e+07 2.61435e+07 2.61447e+07 2.61458e+07 2.61471e+07 2.61484e+07
|
||||
2.61498e+07 2.61513e+07 2.6153e+07 2.61548e+07 2.61553e+07 2.61558e+07 2.61562e+07 2.61571e+07 2.6158e+07 2.61591e+07 2.61603e+07 2.61615e+07
|
||||
2.61628e+07 2.61641e+07 2.61654e+07 2.61666e+07 2.61679e+07 2.6169e+07 2.617e+07 2.61704e+07 2.61173e+07 2.61183e+07 2.61195e+07 2.61208e+07
|
||||
2.61221e+07 2.61235e+07 2.61251e+07 2.61269e+07 2.6129e+07 2.613e+07 2.61305e+07 2.61309e+07 2.61311e+07 2.61318e+07 2.61328e+07 2.61339e+07
|
||||
2.61351e+07 2.61363e+07 2.61376e+07 2.61388e+07 2.614e+07 2.61412e+07 2.61422e+07 2.61429e+07 2.61432e+07 2.60961e+07 2.60972e+07 2.60984e+07
|
||||
2.60997e+07 2.6101e+07 2.61025e+07 2.61042e+07 2.6106e+07 2.61083e+07 2.61092e+07 2.61098e+07 2.61101e+07 2.61102e+07 2.61108e+07 2.61117e+07
|
||||
2.61127e+07 2.61138e+07 2.61149e+07 2.6116e+07 2.61171e+07 2.61182e+07 2.61192e+07 2.612e+07 2.61206e+07 2.61208e+07 2.60699e+07 2.60711e+07
|
||||
2.60724e+07 2.60738e+07 2.60752e+07 2.60768e+07 2.60785e+07 2.60804e+07 2.60824e+07 2.6083e+07 2.60835e+07 2.60838e+07 2.60844e+07 2.6085e+07
|
||||
2.60857e+07 2.60866e+07 2.60875e+07 2.60884e+07 2.60894e+07 2.60903e+07 2.60912e+07 2.6092e+07 2.60926e+07 2.6093e+07 2.60932e+07 2.60438e+07
|
||||
2.60451e+07 2.60464e+07 2.60478e+07 2.60493e+07 2.60509e+07 2.60526e+07 2.60545e+07 2.60564e+07 2.6057e+07 2.60575e+07 2.60578e+07 2.60585e+07
|
||||
2.6059e+07 2.60597e+07 2.60604e+07 2.60611e+07 2.60619e+07 2.60627e+07 2.60635e+07 2.60643e+07 2.60649e+07 2.60654e+07 2.60657e+07 2.60658e+07
|
||||
2.60176e+07 2.6019e+07 2.60204e+07 2.60218e+07 2.60233e+07 2.60249e+07 2.60266e+07 2.60285e+07 2.60305e+07 2.60311e+07 2.60317e+07 2.6032e+07
|
||||
2.60325e+07 2.6033e+07 2.60335e+07 2.60341e+07 2.60348e+07 2.60355e+07 2.60361e+07 2.60368e+07 2.60374e+07 2.60379e+07 2.60383e+07 2.60386e+07
|
||||
2.60387e+07 2.59914e+07 2.59929e+07 2.59943e+07 2.59957e+07 2.59972e+07 2.59987e+07 2.60004e+07 2.60023e+07 2.60046e+07 2.60054e+07 2.60061e+07
|
||||
2.60065e+07 2.60066e+07 2.60069e+07 2.60073e+07 2.60078e+07 2.60084e+07 2.6009e+07 2.60096e+07 2.60102e+07 2.60107e+07 2.60111e+07 2.60115e+07
|
||||
2.60117e+07 2.60117e+07 2.59653e+07 2.59668e+07 2.59682e+07 2.59695e+07 2.59709e+07 2.59725e+07 2.59741e+07 2.59758e+07 2.59775e+07 2.59793e+07
|
||||
2.59801e+07 2.59805e+07 2.59804e+07 2.59806e+07 2.5981e+07 2.59814e+07 2.59819e+07 2.59825e+07 2.5983e+07 2.59835e+07 2.5984e+07 2.59844e+07
|
||||
2.59847e+07 2.59849e+07 2.5985e+07 2.59394e+07 2.5941e+07 2.5942e+07 2.59433e+07 2.59446e+07 2.59461e+07 2.59477e+07 2.59492e+07 2.59508e+07
|
||||
2.59521e+07 2.59531e+07 2.59536e+07 2.59539e+07 2.59542e+07 2.59546e+07 2.5955e+07 2.59555e+07 2.5956e+07 2.59565e+07 2.5957e+07 2.59574e+07
|
||||
2.59578e+07 2.59581e+07 2.59582e+07 2.59583e+07 2.59167e+07 2.5915e+07 2.59157e+07 2.59169e+07 2.59182e+07 2.59196e+07 2.59212e+07 2.59227e+07
|
||||
2.59242e+07 2.59255e+07 2.59264e+07 2.5927e+07 2.59274e+07 2.59278e+07 2.59281e+07 2.59286e+07 2.5929e+07 2.59295e+07 2.593e+07 2.59305e+07
|
||||
2.59309e+07 2.59312e+07 2.59315e+07 2.59317e+07 2.59317e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_l" NumberOfComponents="1" format="ascii">
|
||||
1080.19 1080.19 1080.22 1080.18 1080.19 1080.18 1080.19 1080.18 1080.19 1080.18 1080.19 1080.18
|
||||
1080.19 1080.19 1080.19 1080.18 1080.19 1080.18 1080.19 1080.18 1080.19 1080.18 1080.19 1080.18
|
||||
1080.19 1080.18 1080.19 1080.18 1080.19 1080.18 1080.19 1080.18 1080.2 1080.18 1080.2 1080.18
|
||||
1080.2 1080.18 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19
|
||||
1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19
|
||||
1080.2 1080.19 1080.2 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.15
|
||||
1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19
|
||||
1080.2 1080.19 1080.18 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.15
|
||||
1080.15 1080.15 1080.17 1080.17 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18 1080.18
|
||||
1080.18 1080.18 1080.18 1080.19 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.13
|
||||
1080.18 1080.18 1080.18 1080.17 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.16 1080.13
|
||||
1017.27 1017.26 1017.72 1080.14 1080.16 1080.16 1080.16 1080.17 1080.17 1080.17 1080.17 1080.17
|
||||
1080.17 1080.17 1080.17 1080.17 1080.18 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15
|
||||
1080.08 1017.12 1017.05 1017.4 1080.13 1080.15 1080.15 1080.15 1080.15 1080.15 1080.16 1080.16
|
||||
1080.16 1080.16 1080.16 1080.16 1080.16 1080.17 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14
|
||||
1080.17 1080.17 1080.17 1080.17 1080.16 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.15
|
||||
1080.08 1017.12 1017.05 1017.4 1080.13 1080.15 1080.15 1080.15 1080.15 1080.16 1080.16 1080.16
|
||||
1080.16 1080.16 1080.16 1080.16 1080.16 1080.15 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14
|
||||
1080.14 1080.05 1017.11 1017.04 1017.33 1080.12 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14
|
||||
1080.14 1080.15 1080.15 1080.15 1080.15 1080.15 1080.16 1080.12 1080.13 1080.13 1080.13 1080.13
|
||||
1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.14 1080.13 1080.13 1080.13 1080.13 1080.13
|
||||
1080.13 1080.13 1080.03 1017.1 1017.03 1017.28 1080.1 1080.13 1080.13 1080.13 1080.13 1080.13
|
||||
1080.13 1080.13 1080.13 1080.13 1080.14 1080.14 1080.14 1080.15 1080.11 1080.11 1080.11 1080.12
|
||||
1080.13 1080.13 1080.13 1080.14 1080.14 1080.14 1080.14 1080.13 1080.11 1080.11 1080.12 1080.12
|
||||
1080.12 1080.12 1080.12 1080 1017.09 1017.02 1017.21 1080.09 1080.12 1080.12 1080.12 1080.12
|
||||
1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.14 1080.1 1080.1 1080.1
|
||||
1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.1 1080.1 1080.1
|
||||
1080.1 1080.11 1080.11 1080.11 1079.95 1017.08 1017.01 1017.12 1080.08 1080.11 1080.11 1080.11
|
||||
1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.1 1080.09 1080.09
|
||||
1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.09 1080.09 1080.09
|
||||
1080.09 1080.09 1080.09 1080.09 1080.1 1080.06 1017.08 1017 1017.08 1080.07 1080.1 1080.1
|
||||
1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.08 1080.08
|
||||
1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.05 1017.07 1016.99 1017.07 1080.06 1080.09
|
||||
@ -106,7 +106,7 @@
|
||||
1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.04 1017.06 1016.98 1017.07 1080.05
|
||||
1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08 1080.08
|
||||
1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.03 1017.05 1016.97 1017.05
|
||||
1080.04 1080.06 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07
|
||||
1080.04 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07
|
||||
1080.07 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.02 1017.09 1017.04
|
||||
1017.1 1080.03 1080.05 1080.05 1080.05 1080.05 1080.05 1080.06 1080.06 1080.06 1080.06 1080.06
|
||||
1080.06 1080.06 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.02
|
||||
@ -118,42 +118,42 @@
|
||||
1080.02 1080.02 1080.02 1080.02 1080.02
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_g" NumberOfComponents="1" format="ascii">
|
||||
969.123 969.143 969.488 969.026 969.152 969.033 969.158 969.04 969.164 969.045 969.169 969.05
|
||||
969.174 969.055 969.178 969.059 969.182 969.062 969.185 969.065 969.189 969.069 969.194 969.075
|
||||
969.201 969.081 969.207 969.088 969.214 969.095 969.221 969.102 969.228 969.109 969.235 969.116
|
||||
969.241 969.123 969.248 969.129 969.254 969.136 969.26 969.142 969.266 969.148 969.27 969.152
|
||||
969.271 969.154 969.354 968.91 968.915 968.921 968.927 968.932 968.936 968.94 968.863 968.705
|
||||
968.628 968.713 968.881 968.969 968.976 968.983 968.99 968.997 969.003 969.01 969.016 969.023
|
||||
969.03 969.036 969.044 969.233 968.793 968.798 968.803 968.808 968.814 968.818 968.822 968.374
|
||||
528.696 528.654 530.57 968.602 968.85 968.857 968.864 968.871 968.877 968.884 968.89 968.897
|
||||
968.904 968.911 968.92 968.934 969.114 968.675 968.68 968.685 968.69 968.696 968.701 968.705
|
||||
967.817 527.677 527.374 528.827 968.404 968.732 968.739 968.745 968.752 968.758 968.765 968.771
|
||||
968.778 968.785 968.792 968.802 968.816 968.996 968.556 968.562 968.567 968.572 968.578 968.584
|
||||
968.588 967.497 527.239 526.937 528.161 968.287 968.614 968.62 968.627 968.633 968.639 968.645
|
||||
968.651 968.658 968.664 968.672 968.68 968.694 968.878 968.438 968.443 968.449 968.454 968.46
|
||||
968.467 968.471 967.231 526.803 526.501 527.547 968.171 968.497 968.502 968.508 968.514 968.52
|
||||
968.526 968.532 968.538 968.544 968.55 968.557 968.564 968.761 968.32 968.325 968.33 968.336
|
||||
968.342 968.349 968.353 966.867 526.367 526.066 526.884 968.054 968.379 968.384 968.389 968.395
|
||||
968.4 968.406 968.412 968.418 968.423 968.428 968.433 968.434 968.644 968.201 968.206 968.211
|
||||
968.217 968.224 968.231 968.234 966.206 525.934 525.633 526.113 967.926 968.261 968.265 968.27
|
||||
968.276 968.281 968.287 968.292 968.298 968.303 968.307 968.31 968.312 968.146 968.104 968.11
|
||||
968.115 968.122 968.128 968.136 968.144 967.659 525.576 525.274 525.603 967.839 968.166 968.17
|
||||
968.174 968.179 968.184 968.189 968.194 968.199 968.203 968.207 968.21 968.211 968.026 967.986
|
||||
967.992 967.998 968.004 968.011 968.019 968.027 967.588 525.123 524.82 525.169 967.723 968.048
|
||||
968.052 968.055 968.059 968.064 968.068 968.072 968.076 968.08 968.083 968.084 968.085 967.907
|
||||
967.868 967.874 967.88 967.887 967.894 967.902 967.91 967.481 524.674 524.37 524.724 967.605
|
||||
967.93 967.933 967.936 967.94 967.943 967.947 967.951 967.954 967.957 967.959 967.96 967.961
|
||||
967.788 967.749 967.755 967.762 967.768 967.776 967.783 967.792 967.352 524.227 523.924 524.269
|
||||
967.487 967.812 967.815 967.817 967.82 967.823 967.826 967.829 967.832 967.834 967.836 967.837
|
||||
967.838 967.669 967.63 967.637 967.643 967.65 967.657 967.665 967.673 967.254 524.016 523.794
|
||||
524.04 967.445 967.693 967.695 967.698 967.7 967.703 967.706 967.708 967.711 967.713 967.714
|
||||
967.715 967.716 967.55 967.512 967.518 967.524 967.531 967.538 967.545 967.553 967.48 967.232
|
||||
967.192 967.276 967.492 967.574 967.576 967.578 967.58 967.583 967.585 967.587 967.59 967.591
|
||||
967.593 967.594 967.594 967.43 967.396 967.4 967.405 967.411 967.418 967.425 967.432 967.439
|
||||
967.445 967.449 967.452 967.453 967.454 967.456 967.458 967.46 967.462 967.465 967.467 967.469
|
||||
967.47 967.472 967.472 967.473 967.305 967.277 967.28 967.285 967.291 967.298 967.305 967.312
|
||||
967.318 967.324 967.328 967.331 967.333 967.334 967.336 967.338 967.34 967.342 967.344 967.346
|
||||
967.348 967.35 967.351 967.352 967.352
|
||||
969.128 969.146 969.208 969.028 969.154 969.035 969.16 969.041 969.166 969.047 969.171 969.052
|
||||
969.176 969.057 969.18 969.061 969.183 969.064 969.187 969.067 969.191 969.071 969.196 969.076
|
||||
969.202 969.083 969.209 969.09 969.216 969.097 969.223 969.104 969.23 969.111 969.236 969.118
|
||||
969.243 969.124 969.25 969.131 969.256 969.137 969.262 969.143 969.267 969.149 969.271 969.154
|
||||
969.273 969.156 969.082 968.912 968.917 968.923 968.928 968.934 968.938 968.942 968.865 968.706
|
||||
968.63 968.715 968.883 968.971 968.978 968.985 968.992 968.998 969.005 969.011 969.018 969.025
|
||||
969.031 969.038 969.046 968.962 968.794 968.799 968.805 968.81 968.815 968.82 968.824 968.378
|
||||
528.704 528.661 530.577 968.604 968.852 968.859 968.866 968.872 968.879 968.886 968.892 968.899
|
||||
968.906 968.913 968.922 968.936 968.843 968.676 968.681 968.687 968.692 968.698 968.703 968.706
|
||||
967.82 527.683 527.381 528.833 968.406 968.733 968.74 968.747 968.753 968.76 968.766 968.773
|
||||
968.779 968.786 968.794 968.803 968.818 968.725 968.558 968.563 968.569 968.574 968.58 968.586
|
||||
968.589 967.499 527.246 526.943 528.167 968.289 968.616 968.622 968.628 968.634 968.641 968.647
|
||||
968.653 968.659 968.666 968.673 968.682 968.696 968.607 968.44 968.445 968.45 968.456 968.462
|
||||
968.468 968.472 967.232 526.81 526.507 527.553 968.172 968.498 968.504 968.51 968.516 968.521
|
||||
968.527 968.533 968.539 968.546 968.552 968.558 968.566 968.489 968.321 968.326 968.332 968.338
|
||||
968.344 968.351 968.355 966.868 526.374 526.072 526.89 968.055 968.381 968.386 968.391 968.396
|
||||
968.402 968.408 968.414 968.419 968.425 968.43 968.434 968.436 968.372 968.202 968.207 968.213
|
||||
968.219 968.225 968.233 968.236 966.207 525.94 525.639 526.12 967.927 968.263 968.267 968.272
|
||||
968.277 968.283 968.288 968.294 968.299 968.304 968.309 968.312 968.313 968.119 968.106 968.111
|
||||
968.117 968.123 968.13 968.137 968.145 967.66 525.582 525.28 525.609 967.841 968.167 968.171
|
||||
968.176 968.181 968.186 968.191 968.196 968.201 968.205 968.209 968.211 968.212 968 967.988
|
||||
967.993 968 968.006 968.013 968.021 968.029 967.589 525.13 524.827 525.175 967.725 968.05
|
||||
968.053 968.057 968.061 968.065 968.07 968.074 968.078 968.081 968.084 968.086 968.087 967.881
|
||||
967.869 967.875 967.882 967.888 967.896 967.903 967.911 967.483 524.68 524.377 524.73 967.607
|
||||
967.932 967.935 967.938 967.942 967.945 967.949 967.952 967.956 967.958 967.961 967.962 967.963
|
||||
967.762 967.751 967.757 967.763 967.77 967.777 967.785 967.793 967.354 524.233 523.93 524.276
|
||||
967.489 967.814 967.816 967.819 967.822 967.825 967.828 967.831 967.834 967.836 967.838 967.839
|
||||
967.84 967.643 967.632 967.638 967.645 967.651 967.659 967.666 967.674 967.255 524.022 523.8
|
||||
524.047 967.447 967.695 967.697 967.699 967.702 967.705 967.707 967.71 967.712 967.714 967.716
|
||||
967.717 967.717 967.524 967.514 967.52 967.526 967.532 967.539 967.547 967.554 967.481 967.234
|
||||
967.193 967.277 967.494 967.576 967.578 967.58 967.582 967.584 967.587 967.589 967.591 967.593
|
||||
967.594 967.595 967.596 967.405 967.397 967.401 967.407 967.413 967.42 967.427 967.434 967.441
|
||||
967.447 967.451 967.453 967.455 967.456 967.458 967.46 967.462 967.464 967.466 967.469 967.471
|
||||
967.472 967.473 967.474 967.474 967.297 967.278 967.281 967.287 967.293 967.299 967.306 967.313
|
||||
967.32 967.326 967.33 967.333 967.334 967.336 967.338 967.34 967.342 967.344 967.346 967.348
|
||||
967.35 967.352 967.353 967.354 967.354
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
@ -166,11 +166,11 @@
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 0.999996 0.97249 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 0.999995 0.972485 1 1 1 1 1 1 1
|
||||
1 1 1 0.999995 0.972486 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 0.999996 0.972482 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 0.986228 1 1 1 1 1
|
||||
1 1 1 1 1 1 0.986229 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 0.999999 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
@ -200,17 +200,17 @@
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 3.08892e-07 0.0137585 0 0 0 0 0 0 0 0 0
|
||||
0 3.08888e-07 0.0137584 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 4.2189e-06 0.0275099 0 0 0 0 0 0 0 0
|
||||
0 0 4.21884e-06 0.0275098 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 4.59667e-06 0.0275145 0 0 0 0 0 0 0
|
||||
0 0 0 4.59661e-06 0.0275145 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 4.2103e-06 0.027518 0 0 0 0 0 0
|
||||
0 0 0 0 4.21025e-06 0.0275179 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 3.0537e-07 0.0137715 0 0 0 0 0
|
||||
0 0 0 0 0 3.05366e-07 0.0137715 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 8.64854e-07 0 0 0 0
|
||||
0 0 0 0 0 0 0 8.64781e-07 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
@ -242,7 +242,7 @@
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 0.999979 0.869384 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 0.999977 0.869363 1 1 1 1 1 1 1
|
||||
1 1 1 0.999977 0.869364 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 0.999979 0.869348 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
@ -276,17 +276,17 @@
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 1.15128e-19 1.0086e-05 0 0 0 0 0 0 0 0 0
|
||||
0 1.15123e-19 1.0086e-05 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 2.93329e-16 7.99272e-05 0 0 0 0 0 0 0 0
|
||||
0 0 2.93318e-16 7.99268e-05 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 3.79392e-16 7.99673e-05 0 0 0 0 0 0 0
|
||||
0 0 0 3.79377e-16 7.99669e-05 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 2.9154e-16 7.99971e-05 0 0 0 0 0 0
|
||||
0 0 0 0 2.91529e-16 7.99967e-05 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 1.11235e-19 1.01147e-05 0 0 0 0 0
|
||||
0 0 0 0 0 1.1123e-19 1.01146e-05 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 2.5269e-18 0 0 0 0
|
||||
0 0 0 0 0 0 0 2.52626e-18 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
@ -346,40 +346,40 @@
|
||||
0.3 0.3 0.3 0.3 0.3
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="temperature" NumberOfComponents="1" format="ascii">
|
||||
293.149 293.15 293.029 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.102 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.034 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.171 293.212
|
||||
293.15 293.15 293.105 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.171 293.212
|
||||
293.233 293.212 293.171 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.034 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.267
|
||||
392.906 392.919 392.403 293.212 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.035 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.381 393.065 393.149 392.756 293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.035 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.105 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.267
|
||||
392.905 392.919 392.403 293.212 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.105 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.381 393.065 393.149 392.757 293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.105 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.151 293.434 393.066 393.15 392.819 293.233 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.035 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.105 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.151 293.473 393.066 393.15 392.867 293.233 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.035 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.105 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.151 293.537 393.066 393.15 392.929 293.233 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.034 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.105 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.151 293.677 393.066 393.15 393.021 293.236 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.138 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.278 393.065 393.15 393.062 293.234 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.138 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.145 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.278 393.066 393.15 393.062 293.234 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.146 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.266 393.065 393.15 393.057 293.233 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.138
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.146
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.263 393.065 393.15 393.056 293.233
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.138 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.266 393.065 393.15 393.058
|
||||
293.146 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.266 393.065 393.15 393.058
|
||||
293.234 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.138 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.261 393.002 393.065
|
||||
293.15 293.146 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.261 393.002 393.065
|
||||
393 293.214 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.138 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.171 293.237
|
||||
293.15 293.15 293.146 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.171 293.237
|
||||
293.248 293.227 293.171 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.139 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.146 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.146 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.147 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15
|
||||
</DataArray>
|
@ -4,84 +4,84 @@
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="pressure_l">
|
||||
<DataArray type="Float32" Name="pressure_l" NumberOfComponents="1" format="ascii">
|
||||
2.63166e+07 2.63219e+07 2.62952e+07 2.6296e+07 2.6324e+07 2.62977e+07 2.63256e+07 2.62992e+07 2.63269e+07 2.63005e+07 2.63281e+07 2.63017e+07
|
||||
2.63292e+07 2.63028e+07 2.63301e+07 2.63037e+07 2.6331e+07 2.63045e+07 2.63318e+07 2.63053e+07 2.63328e+07 2.63061e+07 2.63339e+07 2.63073e+07
|
||||
2.63354e+07 2.63088e+07 2.63369e+07 2.63104e+07 2.63385e+07 2.6312e+07 2.634e+07 2.63136e+07 2.63416e+07 2.63151e+07 2.63431e+07 2.63166e+07
|
||||
2.63446e+07 2.63181e+07 2.6346e+07 2.63195e+07 2.63474e+07 2.6321e+07 2.63488e+07 2.63224e+07 2.635e+07 2.63237e+07 2.6351e+07 2.63248e+07
|
||||
2.63513e+07 2.63252e+07 2.62693e+07 2.62703e+07 2.62716e+07 2.62729e+07 2.62742e+07 2.62754e+07 2.62765e+07 2.62774e+07 2.62782e+07 2.62785e+07
|
||||
2.62792e+07 2.62803e+07 2.62822e+07 2.62839e+07 2.62856e+07 2.62871e+07 2.62886e+07 2.62901e+07 2.62916e+07 2.62931e+07 2.62945e+07 2.6296e+07
|
||||
2.62975e+07 2.6299e+07 2.63006e+07 2.62431e+07 2.62442e+07 2.62455e+07 2.62467e+07 2.6248e+07 2.62492e+07 2.62503e+07 2.62514e+07 2.62522e+07
|
||||
2.62523e+07 2.62527e+07 2.62532e+07 2.62557e+07 2.62575e+07 2.62592e+07 2.62607e+07 2.62622e+07 2.62637e+07 2.62651e+07 2.62666e+07 2.62681e+07
|
||||
2.62696e+07 2.62713e+07 2.62732e+07 2.62762e+07 2.62169e+07 2.62181e+07 2.62193e+07 2.62206e+07 2.62218e+07 2.62231e+07 2.62243e+07 2.62255e+07
|
||||
2.62266e+07 2.62269e+07 2.62273e+07 2.62278e+07 2.62296e+07 2.62313e+07 2.62329e+07 2.62344e+07 2.62358e+07 2.62373e+07 2.62387e+07 2.62401e+07
|
||||
2.62416e+07 2.62432e+07 2.62449e+07 2.6247e+07 2.62501e+07 2.61907e+07 2.61919e+07 2.61931e+07 2.61944e+07 2.61957e+07 2.6197e+07 2.61983e+07
|
||||
2.61997e+07 2.6201e+07 2.62014e+07 2.62019e+07 2.62023e+07 2.62038e+07 2.62053e+07 2.62067e+07 2.62081e+07 2.62094e+07 2.62108e+07 2.62122e+07
|
||||
2.62136e+07 2.6215e+07 2.62165e+07 2.62182e+07 2.62201e+07 2.6223e+07 2.61644e+07 2.61656e+07 2.61669e+07 2.61682e+07 2.61695e+07 2.61709e+07
|
||||
2.61723e+07 2.61739e+07 2.61754e+07 2.61759e+07 2.61764e+07 2.61768e+07 2.6178e+07 2.61792e+07 2.61805e+07 2.61818e+07 2.61831e+07 2.61844e+07
|
||||
2.61857e+07 2.61871e+07 2.61884e+07 2.61898e+07 2.61912e+07 2.61927e+07 2.61942e+07 2.61382e+07 2.61394e+07 2.61406e+07 2.61419e+07 2.61433e+07
|
||||
2.61447e+07 2.61463e+07 2.6148e+07 2.61498e+07 2.61504e+07 2.6151e+07 2.61513e+07 2.61522e+07 2.61532e+07 2.61543e+07 2.61554e+07 2.61567e+07
|
||||
2.61579e+07 2.61592e+07 2.61605e+07 2.61618e+07 2.6163e+07 2.61642e+07 2.61652e+07 2.61656e+07 2.6112e+07 2.61131e+07 2.61143e+07 2.61156e+07
|
||||
2.6117e+07 2.61185e+07 2.61201e+07 2.61219e+07 2.61241e+07 2.61251e+07 2.61257e+07 2.6126e+07 2.61262e+07 2.6127e+07 2.6128e+07 2.61291e+07
|
||||
2.61302e+07 2.61315e+07 2.61327e+07 2.6134e+07 2.61352e+07 2.61363e+07 2.61373e+07 2.6138e+07 2.61383e+07 2.60858e+07 2.60869e+07 2.60881e+07
|
||||
2.60895e+07 2.60909e+07 2.60925e+07 2.60942e+07 2.60961e+07 2.60984e+07 2.60993e+07 2.60999e+07 2.61003e+07 2.61004e+07 2.6101e+07 2.61018e+07
|
||||
2.61028e+07 2.61039e+07 2.6105e+07 2.61061e+07 2.61073e+07 2.61083e+07 2.61093e+07 2.61102e+07 2.61107e+07 2.6111e+07 2.60596e+07 2.60609e+07
|
||||
2.60622e+07 2.60636e+07 2.60651e+07 2.60667e+07 2.60685e+07 2.60704e+07 2.60725e+07 2.60732e+07 2.60737e+07 2.60741e+07 2.60746e+07 2.60752e+07
|
||||
2.60759e+07 2.60767e+07 2.60776e+07 2.60786e+07 2.60795e+07 2.60804e+07 2.60813e+07 2.60821e+07 2.60827e+07 2.60832e+07 2.60833e+07 2.60334e+07
|
||||
2.60348e+07 2.60362e+07 2.60377e+07 2.60392e+07 2.60408e+07 2.60426e+07 2.60446e+07 2.60466e+07 2.60472e+07 2.60477e+07 2.60481e+07 2.60487e+07
|
||||
2.60492e+07 2.60498e+07 2.60505e+07 2.60513e+07 2.60521e+07 2.60529e+07 2.60537e+07 2.60544e+07 2.6055e+07 2.60555e+07 2.60558e+07 2.6056e+07
|
||||
2.60072e+07 2.60086e+07 2.60101e+07 2.60116e+07 2.60132e+07 2.60148e+07 2.60166e+07 2.60186e+07 2.60207e+07 2.60214e+07 2.60219e+07 2.60223e+07
|
||||
2.60227e+07 2.60232e+07 2.60237e+07 2.60243e+07 2.60249e+07 2.60256e+07 2.60263e+07 2.6027e+07 2.60276e+07 2.60281e+07 2.60285e+07 2.60287e+07
|
||||
2.60288e+07 2.5981e+07 2.59825e+07 2.5984e+07 2.59855e+07 2.59871e+07 2.59887e+07 2.59905e+07 2.59924e+07 2.59948e+07 2.59957e+07 2.59964e+07
|
||||
2.59968e+07 2.59968e+07 2.59971e+07 2.59975e+07 2.5998e+07 2.59985e+07 2.59991e+07 2.59997e+07 2.60003e+07 2.60008e+07 2.60013e+07 2.60016e+07
|
||||
2.60018e+07 2.60019e+07 2.59548e+07 2.59565e+07 2.5958e+07 2.59594e+07 2.59609e+07 2.59624e+07 2.59641e+07 2.59659e+07 2.59677e+07 2.59696e+07
|
||||
2.59704e+07 2.59708e+07 2.59706e+07 2.59708e+07 2.59712e+07 2.59716e+07 2.59721e+07 2.59727e+07 2.59732e+07 2.59737e+07 2.59742e+07 2.59746e+07
|
||||
2.59749e+07 2.5975e+07 2.59751e+07 2.59288e+07 2.59308e+07 2.59319e+07 2.59331e+07 2.59345e+07 2.59361e+07 2.59377e+07 2.59393e+07 2.59409e+07
|
||||
2.59423e+07 2.59433e+07 2.59438e+07 2.59442e+07 2.59444e+07 2.59448e+07 2.59452e+07 2.59457e+07 2.59462e+07 2.59467e+07 2.59471e+07 2.59476e+07
|
||||
2.59479e+07 2.59482e+07 2.59484e+07 2.59484e+07 2.59075e+07 2.59049e+07 2.59056e+07 2.59067e+07 2.59081e+07 2.59096e+07 2.59112e+07 2.59128e+07
|
||||
2.59143e+07 2.59157e+07 2.59166e+07 2.59172e+07 2.59176e+07 2.5918e+07 2.59183e+07 2.59187e+07 2.59192e+07 2.59197e+07 2.59202e+07 2.59206e+07
|
||||
2.59211e+07 2.59214e+07 2.59217e+07 2.59218e+07 2.59219e+07
|
||||
2.63182e+07 2.63225e+07 2.62955e+07 2.62965e+07 2.63245e+07 2.62981e+07 2.6326e+07 2.62996e+07 2.63274e+07 2.63009e+07 2.63285e+07 2.63021e+07
|
||||
2.63296e+07 2.63032e+07 2.63306e+07 2.63041e+07 2.63314e+07 2.63049e+07 2.63322e+07 2.63057e+07 2.63332e+07 2.63065e+07 2.63343e+07 2.63077e+07
|
||||
2.63358e+07 2.63092e+07 2.63373e+07 2.63108e+07 2.63389e+07 2.63124e+07 2.63404e+07 2.6314e+07 2.6342e+07 2.63155e+07 2.63435e+07 2.6317e+07
|
||||
2.6345e+07 2.63185e+07 2.63464e+07 2.63199e+07 2.63478e+07 2.63214e+07 2.63492e+07 2.63228e+07 2.63504e+07 2.63241e+07 2.63514e+07 2.63252e+07
|
||||
2.63517e+07 2.63256e+07 2.62696e+07 2.62707e+07 2.6272e+07 2.62733e+07 2.62746e+07 2.62758e+07 2.62769e+07 2.62778e+07 2.62786e+07 2.62789e+07
|
||||
2.62796e+07 2.62807e+07 2.62826e+07 2.62843e+07 2.6286e+07 2.62875e+07 2.6289e+07 2.62905e+07 2.6292e+07 2.62935e+07 2.62949e+07 2.62964e+07
|
||||
2.62979e+07 2.62994e+07 2.6301e+07 2.62434e+07 2.62446e+07 2.62459e+07 2.62471e+07 2.62484e+07 2.62496e+07 2.62507e+07 2.62518e+07 2.62526e+07
|
||||
2.62527e+07 2.62531e+07 2.62536e+07 2.62561e+07 2.62579e+07 2.62596e+07 2.62611e+07 2.62626e+07 2.62641e+07 2.62655e+07 2.6267e+07 2.62685e+07
|
||||
2.627e+07 2.62717e+07 2.62736e+07 2.62766e+07 2.62172e+07 2.62184e+07 2.62197e+07 2.6221e+07 2.62222e+07 2.62235e+07 2.62247e+07 2.62259e+07
|
||||
2.6227e+07 2.62273e+07 2.62277e+07 2.62282e+07 2.623e+07 2.62317e+07 2.62333e+07 2.62348e+07 2.62362e+07 2.62377e+07 2.62391e+07 2.62405e+07
|
||||
2.6242e+07 2.62436e+07 2.62453e+07 2.62474e+07 2.62505e+07 2.6191e+07 2.61922e+07 2.61935e+07 2.61948e+07 2.61961e+07 2.61974e+07 2.61987e+07
|
||||
2.62001e+07 2.62014e+07 2.62018e+07 2.62023e+07 2.62027e+07 2.62042e+07 2.62057e+07 2.62071e+07 2.62085e+07 2.62098e+07 2.62112e+07 2.62126e+07
|
||||
2.6214e+07 2.62154e+07 2.62169e+07 2.62186e+07 2.62205e+07 2.62234e+07 2.61648e+07 2.6166e+07 2.61673e+07 2.61685e+07 2.61699e+07 2.61713e+07
|
||||
2.61727e+07 2.61742e+07 2.61758e+07 2.61763e+07 2.61768e+07 2.61772e+07 2.61784e+07 2.61796e+07 2.61809e+07 2.61822e+07 2.61835e+07 2.61848e+07
|
||||
2.61861e+07 2.61875e+07 2.61888e+07 2.61902e+07 2.61916e+07 2.6193e+07 2.61946e+07 2.61386e+07 2.61397e+07 2.6141e+07 2.61423e+07 2.61437e+07
|
||||
2.61451e+07 2.61467e+07 2.61484e+07 2.61502e+07 2.61508e+07 2.61513e+07 2.61517e+07 2.61526e+07 2.61536e+07 2.61547e+07 2.61558e+07 2.61571e+07
|
||||
2.61583e+07 2.61596e+07 2.61609e+07 2.61622e+07 2.61634e+07 2.61646e+07 2.61656e+07 2.6166e+07 2.61123e+07 2.61134e+07 2.61146e+07 2.61159e+07
|
||||
2.61173e+07 2.61188e+07 2.61205e+07 2.61223e+07 2.61245e+07 2.61255e+07 2.61261e+07 2.61264e+07 2.61266e+07 2.61274e+07 2.61284e+07 2.61295e+07
|
||||
2.61306e+07 2.61319e+07 2.61331e+07 2.61343e+07 2.61356e+07 2.61367e+07 2.61377e+07 2.61384e+07 2.61387e+07 2.60861e+07 2.60872e+07 2.60885e+07
|
||||
2.60898e+07 2.60913e+07 2.60928e+07 2.60946e+07 2.60965e+07 2.60988e+07 2.60997e+07 2.61003e+07 2.61007e+07 2.61008e+07 2.61014e+07 2.61022e+07
|
||||
2.61032e+07 2.61043e+07 2.61054e+07 2.61065e+07 2.61077e+07 2.61087e+07 2.61097e+07 2.61106e+07 2.61111e+07 2.61114e+07 2.606e+07 2.60612e+07
|
||||
2.60626e+07 2.6064e+07 2.60655e+07 2.60671e+07 2.60689e+07 2.60708e+07 2.60729e+07 2.60736e+07 2.60741e+07 2.60744e+07 2.6075e+07 2.60756e+07
|
||||
2.60763e+07 2.60771e+07 2.6078e+07 2.6079e+07 2.60799e+07 2.60808e+07 2.60817e+07 2.60825e+07 2.60831e+07 2.60836e+07 2.60837e+07 2.60338e+07
|
||||
2.60352e+07 2.60366e+07 2.6038e+07 2.60396e+07 2.60412e+07 2.6043e+07 2.6045e+07 2.6047e+07 2.60476e+07 2.60481e+07 2.60485e+07 2.60491e+07
|
||||
2.60496e+07 2.60502e+07 2.60509e+07 2.60517e+07 2.60525e+07 2.60533e+07 2.60541e+07 2.60548e+07 2.60554e+07 2.60559e+07 2.60562e+07 2.60564e+07
|
||||
2.60076e+07 2.60091e+07 2.60105e+07 2.6012e+07 2.60136e+07 2.60152e+07 2.6017e+07 2.6019e+07 2.60211e+07 2.60218e+07 2.60223e+07 2.60227e+07
|
||||
2.60231e+07 2.60236e+07 2.60241e+07 2.60247e+07 2.60253e+07 2.6026e+07 2.60267e+07 2.60274e+07 2.6028e+07 2.60285e+07 2.60289e+07 2.60291e+07
|
||||
2.60292e+07 2.59814e+07 2.59829e+07 2.59844e+07 2.59859e+07 2.59874e+07 2.59891e+07 2.59908e+07 2.59928e+07 2.59951e+07 2.59961e+07 2.59968e+07
|
||||
2.59971e+07 2.59972e+07 2.59975e+07 2.59979e+07 2.59984e+07 2.59989e+07 2.59995e+07 2.60001e+07 2.60007e+07 2.60012e+07 2.60017e+07 2.6002e+07
|
||||
2.60022e+07 2.60023e+07 2.59553e+07 2.59569e+07 2.59583e+07 2.59597e+07 2.59612e+07 2.59628e+07 2.59645e+07 2.59663e+07 2.59681e+07 2.597e+07
|
||||
2.59708e+07 2.59712e+07 2.5971e+07 2.59712e+07 2.59716e+07 2.5972e+07 2.59725e+07 2.59731e+07 2.59736e+07 2.59741e+07 2.59746e+07 2.5975e+07
|
||||
2.59752e+07 2.59754e+07 2.59755e+07 2.59294e+07 2.59311e+07 2.59322e+07 2.59335e+07 2.59349e+07 2.59364e+07 2.59381e+07 2.59397e+07 2.59413e+07
|
||||
2.59427e+07 2.59437e+07 2.59442e+07 2.59445e+07 2.59448e+07 2.59452e+07 2.59456e+07 2.59461e+07 2.59466e+07 2.59471e+07 2.59475e+07 2.5948e+07
|
||||
2.59483e+07 2.59486e+07 2.59488e+07 2.59488e+07 2.59067e+07 2.59051e+07 2.59059e+07 2.59071e+07 2.59085e+07 2.591e+07 2.59116e+07 2.59132e+07
|
||||
2.59147e+07 2.5916e+07 2.5917e+07 2.59176e+07 2.5918e+07 2.59184e+07 2.59187e+07 2.59191e+07 2.59196e+07 2.59201e+07 2.59206e+07 2.5921e+07
|
||||
2.59214e+07 2.59218e+07 2.59221e+07 2.59222e+07 2.59223e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="pressure_g" NumberOfComponents="1" format="ascii">
|
||||
2.63216e+07 2.63269e+07 2.63002e+07 2.6301e+07 2.6329e+07 2.63027e+07 2.63306e+07 2.63042e+07 2.63319e+07 2.63055e+07 2.63331e+07 2.63067e+07
|
||||
2.63342e+07 2.63078e+07 2.63351e+07 2.63087e+07 2.6336e+07 2.63095e+07 2.63368e+07 2.63103e+07 2.63378e+07 2.63111e+07 2.63389e+07 2.63123e+07
|
||||
2.63404e+07 2.63138e+07 2.63419e+07 2.63154e+07 2.63435e+07 2.6317e+07 2.6345e+07 2.63186e+07 2.63466e+07 2.63201e+07 2.63481e+07 2.63216e+07
|
||||
2.63496e+07 2.63231e+07 2.6351e+07 2.63245e+07 2.63524e+07 2.6326e+07 2.63538e+07 2.63274e+07 2.6355e+07 2.63287e+07 2.6356e+07 2.63298e+07
|
||||
2.63563e+07 2.63302e+07 2.62743e+07 2.62753e+07 2.62766e+07 2.62779e+07 2.62792e+07 2.62804e+07 2.62815e+07 2.62824e+07 2.62832e+07 2.62835e+07
|
||||
2.62842e+07 2.62853e+07 2.62872e+07 2.62889e+07 2.62906e+07 2.62921e+07 2.62936e+07 2.62951e+07 2.62966e+07 2.62981e+07 2.62995e+07 2.6301e+07
|
||||
2.63025e+07 2.6304e+07 2.63057e+07 2.62481e+07 2.62492e+07 2.62505e+07 2.62517e+07 2.6253e+07 2.62542e+07 2.62553e+07 2.62564e+07 2.62572e+07
|
||||
2.62573e+07 2.62577e+07 2.62582e+07 2.62607e+07 2.62625e+07 2.62642e+07 2.62657e+07 2.62672e+07 2.62687e+07 2.62701e+07 2.62716e+07 2.62731e+07
|
||||
2.62746e+07 2.62763e+07 2.62782e+07 2.62813e+07 2.62219e+07 2.62231e+07 2.62243e+07 2.62256e+07 2.62268e+07 2.62281e+07 2.62293e+07 2.62305e+07
|
||||
2.62316e+07 2.62319e+07 2.62323e+07 2.62328e+07 2.62346e+07 2.62363e+07 2.62379e+07 2.62394e+07 2.62408e+07 2.62423e+07 2.62437e+07 2.62451e+07
|
||||
2.62466e+07 2.62482e+07 2.62499e+07 2.6252e+07 2.62552e+07 2.61957e+07 2.61969e+07 2.61981e+07 2.61994e+07 2.62007e+07 2.6202e+07 2.62033e+07
|
||||
2.62047e+07 2.6206e+07 2.62064e+07 2.62069e+07 2.62073e+07 2.62088e+07 2.62103e+07 2.62117e+07 2.62131e+07 2.62144e+07 2.62158e+07 2.62172e+07
|
||||
2.62186e+07 2.622e+07 2.62215e+07 2.62232e+07 2.62251e+07 2.62281e+07 2.61694e+07 2.61706e+07 2.61719e+07 2.61732e+07 2.61745e+07 2.61759e+07
|
||||
2.61773e+07 2.61789e+07 2.61804e+07 2.61809e+07 2.61814e+07 2.61818e+07 2.6183e+07 2.61842e+07 2.61855e+07 2.61868e+07 2.61881e+07 2.61894e+07
|
||||
2.61907e+07 2.61921e+07 2.61934e+07 2.61948e+07 2.61962e+07 2.61977e+07 2.61993e+07 2.61432e+07 2.61444e+07 2.61456e+07 2.61469e+07 2.61483e+07
|
||||
2.61497e+07 2.61513e+07 2.6153e+07 2.61548e+07 2.61554e+07 2.6156e+07 2.61563e+07 2.61572e+07 2.61582e+07 2.61593e+07 2.61604e+07 2.61617e+07
|
||||
2.61629e+07 2.61642e+07 2.61655e+07 2.61668e+07 2.6168e+07 2.61692e+07 2.61702e+07 2.61706e+07 2.6117e+07 2.61181e+07 2.61193e+07 2.61206e+07
|
||||
2.6122e+07 2.61235e+07 2.61251e+07 2.61269e+07 2.61291e+07 2.61301e+07 2.61307e+07 2.6131e+07 2.61312e+07 2.6132e+07 2.6133e+07 2.61341e+07
|
||||
2.61352e+07 2.61365e+07 2.61377e+07 2.6139e+07 2.61402e+07 2.61413e+07 2.61423e+07 2.6143e+07 2.61433e+07 2.60958e+07 2.60969e+07 2.60981e+07
|
||||
2.60995e+07 2.61009e+07 2.61025e+07 2.61042e+07 2.61061e+07 2.61084e+07 2.61093e+07 2.61099e+07 2.61103e+07 2.61104e+07 2.6111e+07 2.61118e+07
|
||||
2.61128e+07 2.61139e+07 2.6115e+07 2.61161e+07 2.61173e+07 2.61183e+07 2.61193e+07 2.61202e+07 2.61207e+07 2.6121e+07 2.60696e+07 2.60709e+07
|
||||
2.60722e+07 2.60736e+07 2.60751e+07 2.60767e+07 2.60785e+07 2.60804e+07 2.60825e+07 2.60832e+07 2.60837e+07 2.60841e+07 2.60846e+07 2.60852e+07
|
||||
2.60859e+07 2.60867e+07 2.60876e+07 2.60886e+07 2.60895e+07 2.60904e+07 2.60913e+07 2.60921e+07 2.60927e+07 2.60932e+07 2.60933e+07 2.60434e+07
|
||||
2.60448e+07 2.60462e+07 2.60477e+07 2.60492e+07 2.60508e+07 2.60526e+07 2.60546e+07 2.60566e+07 2.60572e+07 2.60577e+07 2.60581e+07 2.60587e+07
|
||||
2.60592e+07 2.60598e+07 2.60605e+07 2.60613e+07 2.60621e+07 2.60629e+07 2.60637e+07 2.60644e+07 2.6065e+07 2.60655e+07 2.60658e+07 2.6066e+07
|
||||
2.60172e+07 2.60186e+07 2.60201e+07 2.60216e+07 2.60232e+07 2.60248e+07 2.60266e+07 2.60286e+07 2.60307e+07 2.60314e+07 2.60319e+07 2.60323e+07
|
||||
2.60327e+07 2.60332e+07 2.60337e+07 2.60343e+07 2.60349e+07 2.60356e+07 2.60363e+07 2.6037e+07 2.60376e+07 2.60381e+07 2.60385e+07 2.60387e+07
|
||||
2.60388e+07 2.5991e+07 2.59925e+07 2.5994e+07 2.59955e+07 2.59971e+07 2.59987e+07 2.60005e+07 2.60024e+07 2.60048e+07 2.60057e+07 2.60064e+07
|
||||
2.60068e+07 2.60068e+07 2.60071e+07 2.60075e+07 2.6008e+07 2.60085e+07 2.60091e+07 2.60097e+07 2.60103e+07 2.60108e+07 2.60113e+07 2.60116e+07
|
||||
2.60118e+07 2.60119e+07 2.59648e+07 2.59665e+07 2.5968e+07 2.59694e+07 2.59709e+07 2.59724e+07 2.59741e+07 2.59759e+07 2.59777e+07 2.59796e+07
|
||||
2.59804e+07 2.59808e+07 2.59806e+07 2.59808e+07 2.59812e+07 2.59816e+07 2.59821e+07 2.59827e+07 2.59832e+07 2.59837e+07 2.59842e+07 2.59846e+07
|
||||
2.59849e+07 2.5985e+07 2.59851e+07 2.59388e+07 2.59408e+07 2.59419e+07 2.59431e+07 2.59445e+07 2.59461e+07 2.59477e+07 2.59493e+07 2.59509e+07
|
||||
2.59523e+07 2.59533e+07 2.59538e+07 2.59542e+07 2.59544e+07 2.59548e+07 2.59552e+07 2.59557e+07 2.59562e+07 2.59567e+07 2.59571e+07 2.59576e+07
|
||||
2.59579e+07 2.59582e+07 2.59584e+07 2.59584e+07 2.59175e+07 2.59149e+07 2.59156e+07 2.59167e+07 2.59181e+07 2.59196e+07 2.59212e+07 2.59228e+07
|
||||
2.59243e+07 2.59257e+07 2.59266e+07 2.59272e+07 2.59276e+07 2.5928e+07 2.59283e+07 2.59287e+07 2.59292e+07 2.59297e+07 2.59302e+07 2.59306e+07
|
||||
2.59311e+07 2.59314e+07 2.59317e+07 2.59318e+07 2.59319e+07
|
||||
2.63232e+07 2.63275e+07 2.63005e+07 2.63015e+07 2.63295e+07 2.63031e+07 2.6331e+07 2.63046e+07 2.63324e+07 2.63059e+07 2.63335e+07 2.63071e+07
|
||||
2.63346e+07 2.63082e+07 2.63356e+07 2.63091e+07 2.63364e+07 2.63099e+07 2.63372e+07 2.63107e+07 2.63382e+07 2.63115e+07 2.63393e+07 2.63127e+07
|
||||
2.63408e+07 2.63142e+07 2.63423e+07 2.63158e+07 2.63439e+07 2.63174e+07 2.63454e+07 2.6319e+07 2.6347e+07 2.63205e+07 2.63485e+07 2.6322e+07
|
||||
2.635e+07 2.63235e+07 2.63514e+07 2.63249e+07 2.63528e+07 2.63264e+07 2.63542e+07 2.63278e+07 2.63554e+07 2.63291e+07 2.63564e+07 2.63302e+07
|
||||
2.63567e+07 2.63306e+07 2.62746e+07 2.62757e+07 2.6277e+07 2.62783e+07 2.62796e+07 2.62808e+07 2.62819e+07 2.62828e+07 2.62836e+07 2.62839e+07
|
||||
2.62846e+07 2.62857e+07 2.62876e+07 2.62893e+07 2.6291e+07 2.62925e+07 2.6294e+07 2.62955e+07 2.6297e+07 2.62985e+07 2.62999e+07 2.63014e+07
|
||||
2.63029e+07 2.63044e+07 2.63061e+07 2.62484e+07 2.62496e+07 2.62509e+07 2.62521e+07 2.62534e+07 2.62546e+07 2.62557e+07 2.62568e+07 2.62576e+07
|
||||
2.62577e+07 2.62581e+07 2.62586e+07 2.62611e+07 2.62629e+07 2.62646e+07 2.62661e+07 2.62676e+07 2.62691e+07 2.62705e+07 2.6272e+07 2.62735e+07
|
||||
2.6275e+07 2.62767e+07 2.62786e+07 2.62817e+07 2.62222e+07 2.62234e+07 2.62247e+07 2.6226e+07 2.62272e+07 2.62285e+07 2.62297e+07 2.62309e+07
|
||||
2.6232e+07 2.62323e+07 2.62327e+07 2.62332e+07 2.6235e+07 2.62367e+07 2.62383e+07 2.62398e+07 2.62412e+07 2.62427e+07 2.62441e+07 2.62455e+07
|
||||
2.6247e+07 2.62486e+07 2.62503e+07 2.62524e+07 2.62556e+07 2.6196e+07 2.61972e+07 2.61985e+07 2.61998e+07 2.62011e+07 2.62024e+07 2.62037e+07
|
||||
2.62051e+07 2.62064e+07 2.62068e+07 2.62073e+07 2.62077e+07 2.62092e+07 2.62107e+07 2.62121e+07 2.62135e+07 2.62148e+07 2.62162e+07 2.62176e+07
|
||||
2.6219e+07 2.62204e+07 2.62219e+07 2.62236e+07 2.62255e+07 2.62285e+07 2.61698e+07 2.6171e+07 2.61723e+07 2.61735e+07 2.61749e+07 2.61763e+07
|
||||
2.61777e+07 2.61792e+07 2.61808e+07 2.61813e+07 2.61818e+07 2.61822e+07 2.61834e+07 2.61846e+07 2.61859e+07 2.61872e+07 2.61885e+07 2.61898e+07
|
||||
2.61911e+07 2.61925e+07 2.61938e+07 2.61952e+07 2.61966e+07 2.6198e+07 2.61997e+07 2.61436e+07 2.61447e+07 2.6146e+07 2.61473e+07 2.61487e+07
|
||||
2.61501e+07 2.61517e+07 2.61534e+07 2.61552e+07 2.61558e+07 2.61563e+07 2.61567e+07 2.61576e+07 2.61586e+07 2.61597e+07 2.61608e+07 2.61621e+07
|
||||
2.61633e+07 2.61646e+07 2.61659e+07 2.61672e+07 2.61684e+07 2.61696e+07 2.61706e+07 2.6171e+07 2.61173e+07 2.61184e+07 2.61196e+07 2.61209e+07
|
||||
2.61223e+07 2.61238e+07 2.61255e+07 2.61273e+07 2.61295e+07 2.61305e+07 2.61311e+07 2.61314e+07 2.61316e+07 2.61324e+07 2.61334e+07 2.61345e+07
|
||||
2.61356e+07 2.61369e+07 2.61381e+07 2.61393e+07 2.61406e+07 2.61417e+07 2.61427e+07 2.61434e+07 2.61437e+07 2.60961e+07 2.60972e+07 2.60985e+07
|
||||
2.60998e+07 2.61013e+07 2.61028e+07 2.61046e+07 2.61065e+07 2.61088e+07 2.61097e+07 2.61103e+07 2.61107e+07 2.61108e+07 2.61114e+07 2.61122e+07
|
||||
2.61132e+07 2.61143e+07 2.61154e+07 2.61165e+07 2.61177e+07 2.61187e+07 2.61197e+07 2.61206e+07 2.61211e+07 2.61214e+07 2.607e+07 2.60712e+07
|
||||
2.60726e+07 2.6074e+07 2.60755e+07 2.60771e+07 2.60789e+07 2.60808e+07 2.60829e+07 2.60836e+07 2.60841e+07 2.60844e+07 2.6085e+07 2.60856e+07
|
||||
2.60863e+07 2.60871e+07 2.6088e+07 2.6089e+07 2.60899e+07 2.60908e+07 2.60917e+07 2.60925e+07 2.60931e+07 2.60936e+07 2.60937e+07 2.60438e+07
|
||||
2.60452e+07 2.60466e+07 2.6048e+07 2.60496e+07 2.60512e+07 2.6053e+07 2.6055e+07 2.6057e+07 2.60576e+07 2.60581e+07 2.60585e+07 2.60591e+07
|
||||
2.60596e+07 2.60602e+07 2.60609e+07 2.60617e+07 2.60625e+07 2.60633e+07 2.60641e+07 2.60648e+07 2.60654e+07 2.60659e+07 2.60662e+07 2.60664e+07
|
||||
2.60176e+07 2.60191e+07 2.60205e+07 2.6022e+07 2.60236e+07 2.60252e+07 2.6027e+07 2.6029e+07 2.60311e+07 2.60318e+07 2.60323e+07 2.60327e+07
|
||||
2.60331e+07 2.60336e+07 2.60341e+07 2.60347e+07 2.60353e+07 2.6036e+07 2.60367e+07 2.60374e+07 2.6038e+07 2.60385e+07 2.60389e+07 2.60391e+07
|
||||
2.60392e+07 2.59914e+07 2.59929e+07 2.59944e+07 2.59959e+07 2.59974e+07 2.59991e+07 2.60008e+07 2.60028e+07 2.60051e+07 2.60061e+07 2.60068e+07
|
||||
2.60071e+07 2.60072e+07 2.60075e+07 2.60079e+07 2.60084e+07 2.60089e+07 2.60095e+07 2.60101e+07 2.60107e+07 2.60112e+07 2.60117e+07 2.6012e+07
|
||||
2.60122e+07 2.60123e+07 2.59653e+07 2.59669e+07 2.59683e+07 2.59697e+07 2.59712e+07 2.59728e+07 2.59745e+07 2.59763e+07 2.59781e+07 2.598e+07
|
||||
2.59808e+07 2.59812e+07 2.5981e+07 2.59812e+07 2.59816e+07 2.5982e+07 2.59825e+07 2.59831e+07 2.59836e+07 2.59841e+07 2.59846e+07 2.5985e+07
|
||||
2.59852e+07 2.59854e+07 2.59855e+07 2.59394e+07 2.59411e+07 2.59422e+07 2.59435e+07 2.59449e+07 2.59464e+07 2.59481e+07 2.59497e+07 2.59513e+07
|
||||
2.59527e+07 2.59537e+07 2.59542e+07 2.59545e+07 2.59548e+07 2.59552e+07 2.59556e+07 2.59561e+07 2.59566e+07 2.59571e+07 2.59575e+07 2.5958e+07
|
||||
2.59583e+07 2.59586e+07 2.59588e+07 2.59588e+07 2.59167e+07 2.59151e+07 2.59159e+07 2.59171e+07 2.59185e+07 2.592e+07 2.59216e+07 2.59232e+07
|
||||
2.59247e+07 2.5926e+07 2.5927e+07 2.59276e+07 2.5928e+07 2.59284e+07 2.59287e+07 2.59291e+07 2.59296e+07 2.59301e+07 2.59306e+07 2.5931e+07
|
||||
2.59314e+07 2.59318e+07 2.59321e+07 2.59322e+07 2.59323e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_l" NumberOfComponents="1" format="ascii">
|
||||
1080.19 1080.19 1080.18 1080.18 1080.19 1080.18 1080.19 1080.18 1080.19 1080.18 1080.19 1080.18
|
||||
1080.19 1080.18 1080.19 1080.18 1080.19 1080.18 1080.19 1080.18 1080.2 1080.18 1080.2 1080.18
|
||||
1080.19 1080.18 1080.19 1080.18 1080.19 1080.18 1080.2 1080.18 1080.2 1080.18 1080.2 1080.18
|
||||
1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19
|
||||
1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19 1080.2 1080.19
|
||||
1080.2 1080.19 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17 1080.17
|
||||
@ -92,14 +92,14 @@
|
||||
1080.15 1017.05 1017.05 1017.05 1080.15 1080.15 1080.15 1080.15 1080.15 1080.16 1080.16 1080.16
|
||||
1080.16 1080.16 1080.16 1080.16 1080.16 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14
|
||||
1080.14 1080.14 1017.04 1017.04 1017.04 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14 1080.14
|
||||
1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.12 1080.12 1080.13 1080.13 1080.13 1080.13
|
||||
1080.15 1080.15 1080.15 1080.15 1080.15 1080.15 1080.12 1080.13 1080.13 1080.13 1080.13 1080.13
|
||||
1080.13 1080.13 1080.13 1017.03 1017.03 1017.03 1080.13 1080.13 1080.13 1080.13 1080.13 1080.13
|
||||
1080.13 1080.13 1080.13 1080.14 1080.14 1080.14 1080.14 1080.11 1080.11 1080.11 1080.12 1080.12
|
||||
1080.12 1080.12 1080.12 1080.12 1017.02 1017.02 1017.02 1080.12 1080.12 1080.12 1080.12 1080.12
|
||||
1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.1 1080.1 1080.1 1080.1
|
||||
1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.12 1080.13 1080.1 1080.1 1080.1 1080.1
|
||||
1080.1 1080.11 1080.11 1080.11 1080.11 1017.01 1017.01 1017.01 1080.11 1080.11 1080.11 1080.11
|
||||
1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.11 1080.09 1080.09 1080.09
|
||||
1080.09 1080.09 1080.09 1080.09 1080.1 1080.1 1017 1017 1017 1080.1 1080.1 1080.1
|
||||
1080.09 1080.09 1080.09 1080.1 1080.1 1080.1 1017 1017 1017 1080.1 1080.1 1080.1
|
||||
1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.1 1080.08 1080.08
|
||||
1080.08 1080.08 1080.08 1080.08 1080.08 1080.09 1080.09 1016.99 1016.99 1016.99 1080.09 1080.09
|
||||
1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.09 1080.07
|
||||
@ -108,52 +108,52 @@
|
||||
1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1016.97 1016.97 1016.97
|
||||
1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07 1080.07
|
||||
1080.07 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1080.05 1016.96 1016.96
|
||||
1016.96 1080.05 1080.05 1080.05 1080.05 1080.05 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06
|
||||
1016.96 1080.05 1080.05 1080.05 1080.05 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06 1080.06
|
||||
1080.06 1080.06 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04
|
||||
1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04 1080.04
|
||||
1080.04 1080.04 1080.05 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03
|
||||
1080.05 1080.05 1080.05 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03
|
||||
1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03 1080.03
|
||||
1080.03 1080.03 1080.03 1080.03 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02
|
||||
1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02 1080.02
|
||||
1080.02 1080.02 1080.02 1080.02 1080.02
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_g" NumberOfComponents="1" format="ascii">
|
||||
969.119 969.143 969.023 969.026 969.152 969.034 969.159 969.04 969.165 969.046 969.171 969.052
|
||||
969.176 969.057 969.18 969.061 969.184 969.065 969.187 969.068 969.192 969.072 969.197 969.077
|
||||
969.203 969.084 969.21 969.091 969.217 969.098 969.224 969.105 969.231 969.112 969.238 969.119
|
||||
969.244 969.126 969.251 969.132 969.257 969.139 969.263 969.145 969.269 969.151 969.273 969.156
|
||||
969.275 969.158 968.906 968.91 968.916 968.922 968.928 968.933 968.938 968.942 968.946 968.947
|
||||
968.95 968.956 968.964 968.972 968.979 968.986 968.993 969 969.006 969.013 969.02 969.026
|
||||
969.033 969.04 969.047 968.788 968.793 968.798 968.804 968.81 968.815 968.82 968.825 968.829
|
||||
527.806 527.813 527.822 968.844 968.853 968.86 968.867 968.874 968.88 968.887 968.894 968.9
|
||||
968.907 968.915 968.923 968.937 968.669 968.675 968.68 968.686 968.692 968.697 968.703 968.708
|
||||
968.713 527.372 527.38 527.388 968.727 968.735 968.742 968.748 968.755 968.761 968.768 968.774
|
||||
968.781 968.788 968.796 968.805 968.82 968.551 968.557 968.562 968.568 968.574 968.58 968.586
|
||||
968.592 968.598 526.937 526.944 526.952 968.61 968.617 968.623 968.63 968.636 968.642 968.648
|
||||
968.655 968.661 968.668 968.675 968.684 968.698 968.433 968.438 968.444 968.45 968.456 968.462
|
||||
968.468 968.475 968.482 526.501 526.509 526.516 968.494 968.5 968.505 968.511 968.517 968.523
|
||||
968.529 968.535 968.541 968.547 968.553 968.56 968.567 968.315 968.32 968.325 968.331 968.337
|
||||
968.344 968.351 968.359 968.367 526.065 526.074 526.081 968.378 968.382 968.387 968.392 968.398
|
||||
968.403 968.409 968.415 968.421 968.426 968.432 968.436 968.438 968.196 968.201 968.206 968.212
|
||||
968.219 968.225 968.233 968.241 968.251 525.632 525.642 525.648 968.261 968.264 968.268 968.273
|
||||
968.279 968.284 968.29 968.295 968.301 968.306 968.31 968.314 968.315 968.099 968.105 968.11
|
||||
968.116 968.123 968.13 968.138 968.146 968.157 525.274 525.284 525.29 968.166 968.169 968.173
|
||||
968.177 968.182 968.187 968.192 968.197 968.202 968.207 968.21 968.213 968.214 967.981 967.986
|
||||
967.992 967.999 968.006 968.013 968.021 968.03 968.039 524.822 524.831 524.837 968.049 968.051
|
||||
968.055 968.058 968.063 968.067 968.071 968.075 968.079 968.083 968.086 968.088 968.088 967.862
|
||||
967.868 967.874 967.881 967.888 967.896 967.904 967.912 967.922 524.373 524.382 524.388 967.931
|
||||
967.934 967.936 967.94 967.943 967.947 967.95 967.954 967.957 967.96 967.962 967.964 967.964
|
||||
967.743 967.749 967.756 967.763 967.77 967.777 967.786 967.794 967.804 523.926 523.936 523.942
|
||||
967.813 967.815 967.818 967.82 967.823 967.826 967.83 967.833 967.835 967.838 967.839 967.841
|
||||
967.841 967.624 967.631 967.638 967.644 967.651 967.659 967.667 967.675 967.686 523.482 523.494
|
||||
523.5 967.695 967.697 967.699 967.701 967.703 967.706 967.709 967.711 967.714 967.716 967.717
|
||||
967.718 967.719 967.505 967.513 967.519 967.526 967.532 967.539 967.547 967.555 967.563 967.572
|
||||
967.576 967.577 967.577 967.578 967.579 967.581 967.583 967.586 967.588 967.591 967.593 967.595
|
||||
967.596 967.597 967.597 967.387 967.396 967.401 967.406 967.413 967.42 967.427 967.435 967.442
|
||||
967.448 967.453 967.455 967.456 967.458 967.459 967.461 967.463 967.466 967.468 967.47 967.472
|
||||
967.474 967.475 967.476 967.476 967.29 967.278 967.281 967.286 967.293 967.299 967.307 967.314
|
||||
967.321 967.327 967.331 967.334 967.336 967.338 967.339 967.341 967.343 967.345 967.348 967.35
|
||||
967.352 967.353 967.354 967.355 967.355
|
||||
969.126 969.146 969.024 969.028 969.155 969.036 969.161 969.042 969.167 969.048 969.173 969.054
|
||||
969.178 969.059 969.182 969.063 969.185 969.066 969.189 969.07 969.193 969.074 969.199 969.079
|
||||
969.205 969.086 969.212 969.093 969.219 969.1 969.226 969.107 969.233 969.114 969.24 969.121
|
||||
969.246 969.128 969.253 969.134 969.259 969.141 969.265 969.147 969.271 969.153 969.275 969.158
|
||||
969.276 969.16 968.907 968.912 968.918 968.924 968.93 968.935 968.94 968.944 968.948 968.949
|
||||
968.952 968.957 968.966 968.974 968.981 968.988 968.995 969.002 969.008 969.015 969.021 969.028
|
||||
969.035 969.042 969.049 968.789 968.794 968.8 968.806 968.811 968.817 968.822 968.827 968.83
|
||||
527.813 527.82 527.829 968.846 968.855 968.862 968.869 968.876 968.882 968.889 968.895 968.902
|
||||
968.909 968.917 968.925 968.939 968.671 968.676 968.682 968.688 968.693 968.699 968.705 968.71
|
||||
968.715 527.379 527.386 527.395 968.729 968.736 968.743 968.75 968.757 968.763 968.769 968.776
|
||||
968.783 968.79 968.797 968.807 968.821 968.553 968.558 968.564 968.57 968.575 968.581 968.587
|
||||
968.593 968.599 526.944 526.951 526.959 968.612 968.619 968.625 968.631 968.638 968.644 968.65
|
||||
968.656 968.663 968.67 968.677 968.685 968.699 968.434 968.44 968.445 968.451 968.457 968.464
|
||||
968.47 968.477 968.484 526.508 526.516 526.523 968.496 968.501 968.507 968.513 968.519 968.525
|
||||
968.531 968.537 968.543 968.549 968.555 968.562 968.569 968.316 968.321 968.327 968.333 968.339
|
||||
968.346 968.353 968.36 968.369 526.072 526.081 526.088 968.379 968.384 968.389 968.394 968.4
|
||||
968.405 968.411 968.417 968.423 968.428 968.433 968.438 968.44 968.197 968.202 968.208 968.214
|
||||
968.22 968.227 968.234 968.243 968.253 525.639 525.649 525.655 968.262 968.266 968.27 968.275
|
||||
968.28 968.286 968.292 968.297 968.303 968.308 968.312 968.316 968.317 968.101 968.106 968.112
|
||||
968.118 968.125 968.132 968.139 968.148 968.159 525.281 525.291 525.297 968.168 968.17 968.174
|
||||
968.179 968.184 968.189 968.194 968.199 968.204 968.208 968.212 968.215 968.216 967.982 967.988
|
||||
967.994 968.001 968.008 968.015 968.023 968.032 968.041 524.829 524.838 524.844 968.051 968.053
|
||||
968.057 968.06 968.064 968.069 968.073 968.077 968.081 968.085 968.088 968.09 968.09 967.863
|
||||
967.87 967.876 967.883 967.89 967.897 967.905 967.914 967.923 524.38 524.389 524.395 967.933
|
||||
967.935 967.938 967.941 967.945 967.948 967.952 967.956 967.959 967.962 967.964 967.966 967.966
|
||||
967.745 967.751 967.758 967.765 967.772 967.779 967.787 967.796 967.806 523.933 523.943 523.949
|
||||
967.815 967.817 967.819 967.822 967.825 967.828 967.831 967.834 967.837 967.839 967.841 967.842
|
||||
967.843 967.626 967.633 967.639 967.646 967.653 967.66 967.668 967.677 967.688 523.488 523.501
|
||||
523.507 967.697 967.698 967.7 967.703 967.705 967.708 967.711 967.713 967.716 967.718 967.719
|
||||
967.72 967.72 967.507 967.514 967.521 967.527 967.534 967.541 967.549 967.557 967.565 967.574
|
||||
967.577 967.579 967.578 967.579 967.581 967.583 967.585 967.588 967.59 967.592 967.595 967.596
|
||||
967.598 967.599 967.599 967.39 967.397 967.402 967.408 967.414 967.421 967.429 967.436 967.444
|
||||
967.45 967.454 967.457 967.458 967.459 967.461 967.463 967.465 967.467 967.47 967.472 967.474
|
||||
967.475 967.477 967.477 967.478 967.286 967.279 967.282 967.288 967.294 967.301 967.308 967.316
|
||||
967.323 967.329 967.333 967.336 967.338 967.339 967.341 967.343 967.345 967.347 967.349 967.351
|
||||
967.353 967.355 967.356 967.357 967.357
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
@ -200,17 +200,17 @@
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 3.13722e-07 0.0137584 0 0 0 0 0 0 0 0 0
|
||||
0 3.13717e-07 0.0137584 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 4.28516e-06 0.0275096 0 0 0 0 0 0 0 0
|
||||
0 0 4.2851e-06 0.0275096 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 4.66894e-06 0.0275143 0 0 0 0 0 0 0
|
||||
0 0 0 4.66887e-06 0.0275142 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 4.27642e-06 0.0275177 0 0 0 0 0 0
|
||||
0 0 0 0 4.27637e-06 0.0275176 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 3.1015e-07 0.0137716 0 0 0 0 0
|
||||
0 0 0 0 0 3.10145e-07 0.0137715 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 8.78186e-07 0 0 0 0
|
||||
0 0 0 0 0 0 0 8.78109e-07 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
@ -276,17 +276,17 @@
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 1.20613e-19 1.00859e-05 0 0 0 0 0 0 0 0 0
|
||||
0 1.20607e-19 1.00858e-05 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 3.0737e-16 7.99247e-05 0 0 0 0 0 0 0 0
|
||||
0 0 3.07357e-16 7.99243e-05 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 3.9757e-16 7.9965e-05 0 0 0 0 0 0 0
|
||||
0 0 0 3.97553e-16 7.99646e-05 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 3.05493e-16 7.99948e-05 0 0 0 0 0 0
|
||||
0 0 0 0 3.05481e-16 7.99943e-05 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 1.1654e-19 1.01147e-05 0 0 0 0 0
|
||||
0 0 0 0 0 1.16535e-19 1.01147e-05 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 2.64557e-18 0 0 0 0
|
||||
0 0 0 0 0 0 0 2.64488e-18 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
@ -1,852 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="pressure_l">
|
||||
<DataArray type="Float32" Name="pressure_l" NumberOfComponents="1" format="ascii">
|
||||
2.63166e+07 2.63216e+07 2.62952e+07 2.62956e+07 2.63234e+07 2.6297e+07 2.63246e+07 2.62982e+07 2.63257e+07 2.62992e+07 2.63266e+07 2.63001e+07
|
||||
2.63273e+07 2.63008e+07 2.6328e+07 2.63015e+07 2.63285e+07 2.6302e+07 2.63291e+07 2.63025e+07 2.63298e+07 2.63031e+07 2.63307e+07 2.6304e+07
|
||||
2.63318e+07 2.63052e+07 2.6333e+07 2.63065e+07 2.63343e+07 2.63078e+07 2.63355e+07 2.6309e+07 2.63367e+07 2.63102e+07 2.63379e+07 2.63113e+07
|
||||
2.6339e+07 2.63124e+07 2.63401e+07 2.63136e+07 2.63412e+07 2.63146e+07 2.63422e+07 2.63157e+07 2.63431e+07 2.63167e+07 2.63438e+07 2.63175e+07
|
||||
2.63441e+07 2.63178e+07 2.62692e+07 2.62699e+07 2.62709e+07 2.62719e+07 2.62729e+07 2.62737e+07 2.62745e+07 2.62751e+07 2.62756e+07 2.62757e+07
|
||||
2.62761e+07 2.6277e+07 2.62786e+07 2.628e+07 2.62813e+07 2.62825e+07 2.62837e+07 2.62848e+07 2.62859e+07 2.6287e+07 2.62881e+07 2.62892e+07
|
||||
2.62904e+07 2.62915e+07 2.62926e+07 2.6243e+07 2.62438e+07 2.62447e+07 2.62457e+07 2.62466e+07 2.62475e+07 2.62483e+07 2.6249e+07 2.62494e+07
|
||||
2.62493e+07 2.62496e+07 2.625e+07 2.62521e+07 2.62536e+07 2.62549e+07 2.62561e+07 2.62572e+07 2.62583e+07 2.62594e+07 2.62605e+07 2.62616e+07
|
||||
2.62628e+07 2.6264e+07 2.62655e+07 2.62674e+07 2.62168e+07 2.62177e+07 2.62185e+07 2.62195e+07 2.62204e+07 2.62213e+07 2.62222e+07 2.6223e+07
|
||||
2.62237e+07 2.62239e+07 2.62242e+07 2.62246e+07 2.6226e+07 2.62274e+07 2.62286e+07 2.62297e+07 2.62308e+07 2.62319e+07 2.62329e+07 2.6234e+07
|
||||
2.62351e+07 2.62363e+07 2.62375e+07 2.62391e+07 2.62411e+07 2.61906e+07 2.61914e+07 2.61923e+07 2.61932e+07 2.61942e+07 2.61952e+07 2.61961e+07
|
||||
2.61971e+07 2.61981e+07 2.61984e+07 2.61987e+07 2.6199e+07 2.62002e+07 2.62013e+07 2.62023e+07 2.62034e+07 2.62044e+07 2.62054e+07 2.62064e+07
|
||||
2.62075e+07 2.62085e+07 2.62096e+07 2.62108e+07 2.62122e+07 2.62141e+07 2.61644e+07 2.61652e+07 2.61661e+07 2.6167e+07 2.6168e+07 2.6169e+07
|
||||
2.61701e+07 2.61712e+07 2.61724e+07 2.61728e+07 2.61732e+07 2.61735e+07 2.61743e+07 2.61752e+07 2.61761e+07 2.6177e+07 2.6178e+07 2.61789e+07
|
||||
2.61799e+07 2.61809e+07 2.61819e+07 2.61829e+07 2.61839e+07 2.6185e+07 2.61861e+07 2.61381e+07 2.61389e+07 2.61398e+07 2.61407e+07 2.61417e+07
|
||||
2.61428e+07 2.6144e+07 2.61453e+07 2.61468e+07 2.61473e+07 2.61477e+07 2.6148e+07 2.61485e+07 2.61491e+07 2.61498e+07 2.61507e+07 2.61515e+07
|
||||
2.61524e+07 2.61534e+07 2.61543e+07 2.61552e+07 2.61562e+07 2.6157e+07 2.61577e+07 2.6158e+07 2.61119e+07 2.61126e+07 2.61134e+07 2.61143e+07
|
||||
2.61153e+07 2.61165e+07 2.61177e+07 2.61192e+07 2.61211e+07 2.61219e+07 2.61223e+07 2.61226e+07 2.61225e+07 2.61229e+07 2.61235e+07 2.61242e+07
|
||||
2.61251e+07 2.61259e+07 2.61268e+07 2.61277e+07 2.61286e+07 2.61295e+07 2.61302e+07 2.61307e+07 2.61309e+07 2.60857e+07 2.60864e+07 2.60872e+07
|
||||
2.60882e+07 2.60893e+07 2.60904e+07 2.60918e+07 2.60933e+07 2.60952e+07 2.60961e+07 2.60966e+07 2.60968e+07 2.60966e+07 2.60969e+07 2.60974e+07
|
||||
2.6098e+07 2.60987e+07 2.60995e+07 2.61003e+07 2.61011e+07 2.61019e+07 2.61026e+07 2.61032e+07 2.61036e+07 2.61038e+07 2.60595e+07 2.60604e+07
|
||||
2.60613e+07 2.60623e+07 2.60635e+07 2.60647e+07 2.60661e+07 2.60677e+07 2.60694e+07 2.60699e+07 2.60703e+07 2.60706e+07 2.60708e+07 2.6071e+07
|
||||
2.60714e+07 2.60719e+07 2.60725e+07 2.60731e+07 2.60738e+07 2.60744e+07 2.6075e+07 2.60756e+07 2.6076e+07 2.60763e+07 2.60764e+07 2.60333e+07
|
||||
2.60343e+07 2.60353e+07 2.60364e+07 2.60376e+07 2.60388e+07 2.60402e+07 2.60418e+07 2.60434e+07 2.60439e+07 2.60443e+07 2.60446e+07 2.60448e+07
|
||||
2.60451e+07 2.60454e+07 2.60457e+07 2.60462e+07 2.60467e+07 2.60472e+07 2.60477e+07 2.60482e+07 2.60487e+07 2.6049e+07 2.60492e+07 2.60493e+07
|
||||
2.60071e+07 2.60082e+07 2.60092e+07 2.60103e+07 2.60115e+07 2.60128e+07 2.60142e+07 2.60158e+07 2.60175e+07 2.60181e+07 2.60185e+07 2.60187e+07
|
||||
2.60189e+07 2.6019e+07 2.60192e+07 2.60195e+07 2.60198e+07 2.60202e+07 2.60207e+07 2.60211e+07 2.60215e+07 2.60219e+07 2.60221e+07 2.60223e+07
|
||||
2.60224e+07 2.59809e+07 2.5982e+07 2.59831e+07 2.59842e+07 2.59854e+07 2.59866e+07 2.5988e+07 2.59896e+07 2.59916e+07 2.59923e+07 2.59929e+07
|
||||
2.59931e+07 2.5993e+07 2.59929e+07 2.5993e+07 2.59932e+07 2.59935e+07 2.59938e+07 2.59941e+07 2.59945e+07 2.59948e+07 2.59951e+07 2.59953e+07
|
||||
2.59955e+07 2.59955e+07 2.59547e+07 2.5956e+07 2.59571e+07 2.59581e+07 2.59592e+07 2.59604e+07 2.59617e+07 2.59631e+07 2.59646e+07 2.59662e+07
|
||||
2.59668e+07 2.59671e+07 2.59666e+07 2.59665e+07 2.59666e+07 2.59668e+07 2.5967e+07 2.59673e+07 2.59676e+07 2.59679e+07 2.59682e+07 2.59684e+07
|
||||
2.59686e+07 2.59688e+07 2.59688e+07 2.59287e+07 2.59303e+07 2.59309e+07 2.59318e+07 2.59328e+07 2.5934e+07 2.59352e+07 2.59366e+07 2.59378e+07
|
||||
2.5939e+07 2.59397e+07 2.594e+07 2.59401e+07 2.59401e+07 2.59402e+07 2.59403e+07 2.59405e+07 2.59408e+07 2.59411e+07 2.59413e+07 2.59416e+07
|
||||
2.59418e+07 2.5942e+07 2.59421e+07 2.59421e+07 2.59074e+07 2.59043e+07 2.59046e+07 2.59054e+07 2.59063e+07 2.59075e+07 2.59087e+07 2.591e+07
|
||||
2.59112e+07 2.59123e+07 2.5913e+07 2.59134e+07 2.59135e+07 2.59136e+07 2.59137e+07 2.59138e+07 2.5914e+07 2.59143e+07 2.59145e+07 2.59148e+07
|
||||
2.5915e+07 2.59153e+07 2.59154e+07 2.59155e+07 2.59156e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="pressure_g" NumberOfComponents="1" format="ascii">
|
||||
2.63216e+07 2.63266e+07 2.63002e+07 2.63006e+07 2.63284e+07 2.6302e+07 2.63296e+07 2.63032e+07 2.63307e+07 2.63042e+07 2.63316e+07 2.63051e+07
|
||||
2.63323e+07 2.63058e+07 2.6333e+07 2.63065e+07 2.63335e+07 2.6307e+07 2.63341e+07 2.63075e+07 2.63348e+07 2.63081e+07 2.63357e+07 2.6309e+07
|
||||
2.63368e+07 2.63102e+07 2.6338e+07 2.63115e+07 2.63393e+07 2.63128e+07 2.63405e+07 2.6314e+07 2.63417e+07 2.63152e+07 2.63429e+07 2.63163e+07
|
||||
2.6344e+07 2.63174e+07 2.63451e+07 2.63186e+07 2.63462e+07 2.63196e+07 2.63472e+07 2.63207e+07 2.63481e+07 2.63217e+07 2.63488e+07 2.63225e+07
|
||||
2.63491e+07 2.63228e+07 2.62742e+07 2.62749e+07 2.62759e+07 2.62769e+07 2.62779e+07 2.62787e+07 2.62795e+07 2.62801e+07 2.62806e+07 2.62807e+07
|
||||
2.62811e+07 2.6282e+07 2.62836e+07 2.6285e+07 2.62863e+07 2.62875e+07 2.62887e+07 2.62898e+07 2.62909e+07 2.6292e+07 2.62931e+07 2.62942e+07
|
||||
2.62954e+07 2.62965e+07 2.62976e+07 2.6248e+07 2.62488e+07 2.62497e+07 2.62507e+07 2.62516e+07 2.62525e+07 2.62533e+07 2.6254e+07 2.62544e+07
|
||||
2.62543e+07 2.62546e+07 2.6255e+07 2.62571e+07 2.62586e+07 2.62599e+07 2.62611e+07 2.62622e+07 2.62633e+07 2.62644e+07 2.62655e+07 2.62666e+07
|
||||
2.62678e+07 2.6269e+07 2.62705e+07 2.62724e+07 2.62218e+07 2.62227e+07 2.62235e+07 2.62245e+07 2.62254e+07 2.62263e+07 2.62272e+07 2.6228e+07
|
||||
2.62287e+07 2.62289e+07 2.62292e+07 2.62296e+07 2.6231e+07 2.62324e+07 2.62336e+07 2.62347e+07 2.62358e+07 2.62369e+07 2.62379e+07 2.6239e+07
|
||||
2.62401e+07 2.62413e+07 2.62425e+07 2.62441e+07 2.62461e+07 2.61956e+07 2.61964e+07 2.61973e+07 2.61982e+07 2.61992e+07 2.62002e+07 2.62011e+07
|
||||
2.62021e+07 2.62031e+07 2.62034e+07 2.62037e+07 2.6204e+07 2.62052e+07 2.62063e+07 2.62073e+07 2.62084e+07 2.62094e+07 2.62104e+07 2.62114e+07
|
||||
2.62125e+07 2.62135e+07 2.62146e+07 2.62158e+07 2.62172e+07 2.62191e+07 2.61694e+07 2.61702e+07 2.61711e+07 2.6172e+07 2.6173e+07 2.6174e+07
|
||||
2.61751e+07 2.61762e+07 2.61774e+07 2.61778e+07 2.61782e+07 2.61785e+07 2.61793e+07 2.61802e+07 2.61811e+07 2.6182e+07 2.6183e+07 2.61839e+07
|
||||
2.61849e+07 2.61859e+07 2.61869e+07 2.61879e+07 2.61889e+07 2.619e+07 2.61911e+07 2.61431e+07 2.61439e+07 2.61448e+07 2.61457e+07 2.61467e+07
|
||||
2.61478e+07 2.6149e+07 2.61503e+07 2.61518e+07 2.61523e+07 2.61527e+07 2.6153e+07 2.61535e+07 2.61541e+07 2.61548e+07 2.61557e+07 2.61565e+07
|
||||
2.61574e+07 2.61584e+07 2.61593e+07 2.61602e+07 2.61612e+07 2.6162e+07 2.61627e+07 2.6163e+07 2.61169e+07 2.61176e+07 2.61184e+07 2.61193e+07
|
||||
2.61203e+07 2.61215e+07 2.61227e+07 2.61242e+07 2.61261e+07 2.61269e+07 2.61273e+07 2.61276e+07 2.61275e+07 2.61279e+07 2.61285e+07 2.61292e+07
|
||||
2.61301e+07 2.61309e+07 2.61318e+07 2.61327e+07 2.61336e+07 2.61345e+07 2.61352e+07 2.61357e+07 2.61359e+07 2.60957e+07 2.60964e+07 2.60972e+07
|
||||
2.60982e+07 2.60993e+07 2.61004e+07 2.61018e+07 2.61033e+07 2.61052e+07 2.61061e+07 2.61066e+07 2.61068e+07 2.61066e+07 2.61069e+07 2.61074e+07
|
||||
2.6108e+07 2.61087e+07 2.61095e+07 2.61103e+07 2.61111e+07 2.61119e+07 2.61126e+07 2.61132e+07 2.61136e+07 2.61138e+07 2.60695e+07 2.60704e+07
|
||||
2.60713e+07 2.60723e+07 2.60735e+07 2.60747e+07 2.60761e+07 2.60777e+07 2.60794e+07 2.60799e+07 2.60803e+07 2.60806e+07 2.60808e+07 2.6081e+07
|
||||
2.60814e+07 2.60819e+07 2.60825e+07 2.60831e+07 2.60838e+07 2.60844e+07 2.6085e+07 2.60856e+07 2.6086e+07 2.60863e+07 2.60864e+07 2.60433e+07
|
||||
2.60443e+07 2.60453e+07 2.60464e+07 2.60476e+07 2.60488e+07 2.60502e+07 2.60518e+07 2.60534e+07 2.60539e+07 2.60543e+07 2.60546e+07 2.60548e+07
|
||||
2.60551e+07 2.60554e+07 2.60557e+07 2.60562e+07 2.60567e+07 2.60572e+07 2.60577e+07 2.60582e+07 2.60587e+07 2.6059e+07 2.60592e+07 2.60593e+07
|
||||
2.60171e+07 2.60182e+07 2.60192e+07 2.60203e+07 2.60215e+07 2.60228e+07 2.60242e+07 2.60258e+07 2.60275e+07 2.60281e+07 2.60285e+07 2.60287e+07
|
||||
2.60289e+07 2.6029e+07 2.60292e+07 2.60295e+07 2.60298e+07 2.60302e+07 2.60307e+07 2.60311e+07 2.60315e+07 2.60319e+07 2.60321e+07 2.60323e+07
|
||||
2.60324e+07 2.59909e+07 2.5992e+07 2.59931e+07 2.59942e+07 2.59954e+07 2.59966e+07 2.5998e+07 2.59996e+07 2.60016e+07 2.60023e+07 2.60029e+07
|
||||
2.60031e+07 2.6003e+07 2.60029e+07 2.6003e+07 2.60032e+07 2.60035e+07 2.60038e+07 2.60041e+07 2.60045e+07 2.60048e+07 2.60051e+07 2.60053e+07
|
||||
2.60055e+07 2.60055e+07 2.59647e+07 2.5966e+07 2.59671e+07 2.59681e+07 2.59692e+07 2.59704e+07 2.59717e+07 2.59731e+07 2.59746e+07 2.59762e+07
|
||||
2.59768e+07 2.59771e+07 2.59766e+07 2.59765e+07 2.59766e+07 2.59768e+07 2.5977e+07 2.59773e+07 2.59776e+07 2.59779e+07 2.59782e+07 2.59784e+07
|
||||
2.59786e+07 2.59788e+07 2.59788e+07 2.59387e+07 2.59403e+07 2.59409e+07 2.59418e+07 2.59428e+07 2.5944e+07 2.59452e+07 2.59466e+07 2.59478e+07
|
||||
2.5949e+07 2.59497e+07 2.595e+07 2.59501e+07 2.59501e+07 2.59502e+07 2.59503e+07 2.59505e+07 2.59508e+07 2.59511e+07 2.59513e+07 2.59516e+07
|
||||
2.59518e+07 2.5952e+07 2.59521e+07 2.59521e+07 2.59174e+07 2.59143e+07 2.59146e+07 2.59154e+07 2.59163e+07 2.59175e+07 2.59187e+07 2.592e+07
|
||||
2.59212e+07 2.59223e+07 2.5923e+07 2.59234e+07 2.59235e+07 2.59236e+07 2.59237e+07 2.59238e+07 2.5924e+07 2.59243e+07 2.59245e+07 2.59248e+07
|
||||
2.5925e+07 2.59253e+07 2.59254e+07 2.59255e+07 2.59256e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_l" NumberOfComponents="1" format="ascii">
|
||||
1082.34 1082.34 1082.33 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33
|
||||
1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33
|
||||
1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.35 1082.33 1082.35 1082.33 1082.35 1082.34
|
||||
1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34
|
||||
1082.35 1082.35 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32
|
||||
1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.33 1082.33 1082.33
|
||||
1082.33 1082.33 1084.64 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31
|
||||
1019.15 1019.15 1019.15 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31
|
||||
1082.32 1082.32 1082.34 1086.89 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3
|
||||
1082.3 1019.14 1019.14 1019.14 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3
|
||||
1082.3 1082.3 1082.3 1082.33 1086.88 1082.28 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29
|
||||
1082.29 1082.29 1019.14 1019.14 1019.14 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29
|
||||
1082.29 1082.29 1082.29 1082.29 1082.32 1086.87 1082.27 1082.27 1082.27 1082.28 1082.28 1082.28
|
||||
1082.28 1082.28 1082.28 1019.13 1019.13 1019.13 1082.28 1082.28 1082.28 1082.28 1082.28 1082.28
|
||||
1082.28 1082.28 1082.28 1082.28 1082.28 1082.29 1084.6 1082.26 1082.26 1082.26 1082.26 1082.26
|
||||
1082.27 1082.27 1082.27 1082.27 1019.12 1019.12 1019.12 1082.27 1082.27 1082.27 1082.27 1082.27
|
||||
1082.27 1082.27 1082.27 1082.27 1082.27 1082.27 1082.27 1082.28 1082.25 1082.25 1082.25 1082.25
|
||||
1082.25 1082.25 1082.25 1082.26 1082.26 1019.11 1019.11 1019.11 1082.26 1082.26 1082.26 1082.26
|
||||
1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.24 1082.24 1082.24
|
||||
1082.24 1082.24 1082.24 1082.24 1082.24 1082.25 1019.1 1019.1 1019.1 1082.25 1082.25 1082.25
|
||||
1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.23 1082.23
|
||||
1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1019.09 1019.09 1019.09 1082.24 1082.24
|
||||
1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.22
|
||||
1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1019.08 1019.08 1019.08 1082.22
|
||||
1082.22 1082.22 1082.22 1082.22 1082.22 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23
|
||||
1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1019.07 1019.07 1019.07
|
||||
1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21
|
||||
1082.21 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1019.06 1019.06
|
||||
1019.06 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2
|
||||
1082.2 1082.2 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19
|
||||
1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19
|
||||
1082.19 1082.19 1082.19 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18
|
||||
1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18
|
||||
1082.18 1082.18 1082.18 1082.18 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_g" NumberOfComponents="1" format="ascii">
|
||||
969.119 969.142 969.022 969.024 969.15 969.031 969.155 969.036 969.16 969.041 969.164 969.045
|
||||
969.167 969.048 969.17 969.051 969.173 969.053 969.175 969.055 969.178 969.058 969.182 969.062
|
||||
969.187 969.068 969.193 969.074 969.199 969.079 969.204 969.085 969.209 969.09 969.214 969.095
|
||||
969.219 969.1 969.224 969.105 969.229 969.11 969.234 969.115 969.238 969.119 969.241 969.123
|
||||
969.242 969.125 968.905 968.909 968.913 968.917 968.922 968.926 968.929 968.932 968.934 968.934
|
||||
968.937 968.941 968.948 968.954 968.96 968.965 968.971 968.976 968.981 968.986 968.991 968.996
|
||||
969.001 969.006 969.011 968.787 968.791 968.795 968.799 968.803 968.807 968.811 968.814 968.816
|
||||
527.756 527.761 527.767 968.828 968.835 968.841 968.846 968.851 968.856 968.861 968.866 968.871
|
||||
968.876 968.882 968.888 968.897 968.669 968.673 968.677 968.681 968.685 968.689 968.693 968.697
|
||||
968.7 527.321 527.326 527.333 968.711 968.717 968.722 968.727 968.732 968.737 968.742 968.747
|
||||
968.752 968.757 968.763 968.769 968.779 968.551 968.555 968.559 968.563 968.567 968.571 968.576
|
||||
968.58 968.584 526.885 526.89 526.896 968.594 968.599 968.604 968.608 968.613 968.617 968.622
|
||||
968.627 968.632 968.637 968.642 968.648 968.657 968.432 968.436 968.44 968.444 968.449 968.453
|
||||
968.458 968.463 968.469 526.448 526.454 526.459 968.477 968.481 968.485 968.49 968.494 968.498
|
||||
968.503 968.507 968.511 968.516 968.521 968.526 968.53 968.314 968.318 968.322 968.326 968.33
|
||||
968.335 968.341 968.347 968.353 526.012 526.019 526.023 968.361 968.364 968.367 968.371 968.375
|
||||
968.379 968.383 968.387 968.391 968.395 968.399 968.402 968.404 968.195 968.199 968.202 968.207
|
||||
968.211 968.216 968.222 968.229 968.237 525.577 525.585 525.59 968.244 968.245 968.248 968.251
|
||||
968.255 968.259 968.263 968.267 968.271 968.275 968.278 968.281 968.282 968.099 968.102 968.106
|
||||
968.111 968.115 968.121 968.127 968.134 968.143 525.218 525.226 525.23 968.149 968.15 968.152
|
||||
968.155 968.158 968.162 968.166 968.169 968.173 968.176 968.179 968.181 968.181 967.98 967.984
|
||||
967.989 967.993 967.998 968.004 968.01 968.017 968.025 524.766 524.773 524.777 968.031 968.033
|
||||
968.034 968.037 968.039 968.042 968.045 968.048 968.051 968.053 968.055 968.057 968.057 967.861
|
||||
967.866 967.87 967.875 967.881 967.886 967.893 967.9 967.907 524.316 524.323 524.327 967.914
|
||||
967.915 967.916 967.918 967.92 967.922 967.924 967.927 967.929 967.931 967.933 967.934 967.934
|
||||
967.742 967.747 967.752 967.757 967.762 967.768 967.775 967.782 967.79 523.869 523.876 523.88
|
||||
967.796 967.796 967.797 967.799 967.8 967.802 967.804 967.806 967.808 967.809 967.811 967.811
|
||||
967.812 967.623 967.628 967.633 967.638 967.644 967.649 967.656 967.663 967.672 523.424 523.433
|
||||
523.437 967.678 967.678 967.678 967.679 967.68 967.682 967.683 967.685 967.687 967.688 967.689
|
||||
967.69 967.69 967.504 967.51 967.515 967.52 967.525 967.53 967.536 967.543 967.549 967.557
|
||||
967.559 967.56 967.558 967.558 967.558 967.559 967.56 967.562 967.563 967.564 967.566 967.567
|
||||
967.568 967.568 967.568 967.386 967.394 967.396 967.4 967.405 967.41 967.416 967.422 967.428
|
||||
967.433 967.436 967.438 967.438 967.438 967.438 967.439 967.44 967.441 967.442 967.444 967.445
|
||||
967.446 967.447 967.447 967.447 967.289 967.275 967.276 967.28 967.284 967.29 967.295 967.301
|
||||
967.307 967.311 967.315 967.317 967.317 967.318 967.318 967.319 967.32 967.321 967.322 967.323
|
||||
967.324 967.325 967.326 967.326 967.327
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="porosity" NumberOfComponents="1" format="ascii">
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.989566 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.994947 0.984181 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.994943 0.984181 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.994948 0.984181 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.994984 0.989565 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.00500002 0.00501691 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.00500004 0.00501663 0.010434 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.00500016 0.0050528 0.0158191 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.00500018 0.00505676 0.0158192 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.00500015 0.00505211 0.0158193 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.00500004 0.00501599 0.0104349 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.00500004 0.00501886 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327814 0.00327822 0.00327782 0.00327782 0.00327825 0.00327784 0.00327827 0.00327786 0.00327828 0.00327788 0.0032783 0.00327789
|
||||
0.00327831 0.0032779 0.00327832 0.00327791 0.00327833 0.00327792 0.00327834 0.00327793 0.00327835 0.00327794 0.00327836 0.00327795
|
||||
0.00327838 0.00327797 0.0032784 0.00327799 0.00327842 0.00327801 0.00327843 0.00327803 0.00327845 0.00327805 0.00327847 0.00327806
|
||||
0.00327849 0.00327808 0.00327851 0.0032781 0.00327852 0.00327811 0.00327854 0.00327813 0.00327855 0.00327815 0.00327856 0.00327816
|
||||
0.00327857 0.00327811 0.00327742 0.00327743 0.00327744 0.00327746 0.00327747 0.00327749 0.0032775 0.00327751 0.00327751 0.00327752
|
||||
0.00327752 0.00327754 0.00327756 0.00327758 0.0032776 0.00327762 0.00327764 0.00327766 0.00327767 0.00327769 0.00327771 0.00327772
|
||||
0.00327774 0.0032777 0.00325988 0.00327701 0.00327703 0.00327704 0.00327706 0.00327707 0.00327708 0.0032771 0.00327711 0.00327711
|
||||
0.029767 0.0297671 0.0297672 0.00327715 0.00327718 0.0032772 0.00327722 0.00327723 0.00327725 0.00327727 0.00327728 0.0032773
|
||||
0.00327732 0.00327734 0.00327719 0.00324175 0.00327661 0.00327662 0.00327664 0.00327665 0.00327667 0.00327668 0.00327669 0.00327671
|
||||
0.00327672 0.0297612 0.0297613 0.0297614 0.00327675 0.00327677 0.00327679 0.00327681 0.00327683 0.00327684 0.00327686 0.00327688
|
||||
0.00327689 0.00327691 0.00327693 0.00327677 0.00324135 0.00327621 0.00327622 0.00327623 0.00327625 0.00327626 0.00327628 0.00327629
|
||||
0.00327631 0.00327632 0.0297554 0.0297555 0.0297556 0.00327635 0.00327637 0.00327639 0.0032764 0.00327642 0.00327644 0.00327645
|
||||
0.00327647 0.00327648 0.0032765 0.00327652 0.00327637 0.00324094 0.0032758 0.00327582 0.00327583 0.00327584 0.00327586 0.00327587
|
||||
0.00327589 0.00327591 0.00327593 0.0297496 0.0297497 0.0297497 0.00327596 0.00327597 0.00327598 0.003276 0.00327601 0.00327603
|
||||
0.00327604 0.00327606 0.00327607 0.00327609 0.0032761 0.00327607 0.00325824 0.0032754 0.00327541 0.00327542 0.00327544 0.00327545
|
||||
0.00327547 0.00327549 0.00327551 0.00327553 0.0297438 0.0297439 0.0297439 0.00327556 0.00327557 0.00327558 0.00327559 0.0032756
|
||||
0.00327562 0.00327563 0.00327565 0.00327566 0.00327568 0.00327569 0.0032757 0.00327564 0.00327499 0.003275 0.00327501 0.00327503
|
||||
0.00327504 0.00327506 0.00327508 0.0032751 0.00327513 0.029738 0.0297381 0.0297381 0.00327516 0.00327516 0.00327517 0.00327518
|
||||
0.00327519 0.00327521 0.00327522 0.00327524 0.00327525 0.00327526 0.00327527 0.00327528 0.00327529 0.00327396 0.00327397 0.00327398
|
||||
0.003274 0.00327402 0.00327403 0.00327405 0.00327408 0.00327411 0.0297264 0.0297265 0.0297265 0.00327413 0.00327413 0.00327414
|
||||
0.00327415 0.00327416 0.00327417 0.00327419 0.0032742 0.00327421 0.00327422 0.00327423 0.00327424 0.00327424 0.00327355 0.00327357
|
||||
0.00327358 0.0032736 0.00327362 0.00327363 0.00327366 0.00327368 0.00327371 0.0297204 0.0297205 0.0297205 0.00327373 0.00327373
|
||||
0.00327374 0.00327375 0.00327376 0.00327377 0.00327378 0.00327379 0.00327379 0.0032738 0.00327381 0.00327381 0.00327382 0.00327315
|
||||
0.00327316 0.00327318 0.0032732 0.00327321 0.00327323 0.00327326 0.00327328 0.00327331 0.0297144 0.0297145 0.0297145 0.00327333
|
||||
0.00327333 0.00327334 0.00327334 0.00327335 0.00327336 0.00327336 0.00327337 0.00327338 0.00327339 0.00327339 0.0032734 0.0032734
|
||||
0.00327274 0.00327276 0.00327277 0.00327279 0.00327281 0.00327283 0.00327285 0.00327288 0.0032729 0.0297084 0.0297085 0.0297086
|
||||
0.00327292 0.00327293 0.00327293 0.00327293 0.00327294 0.00327295 0.00327295 0.00327296 0.00327297 0.00327297 0.00327298 0.00327298
|
||||
0.00327298 0.00327233 0.00327235 0.00327237 0.00327239 0.0032724 0.00327242 0.00327245 0.00327247 0.0032725 0.0297025 0.0297026
|
||||
0.0297027 0.00327252 0.00327252 0.00327252 0.00327253 0.00327253 0.00327254 0.00327254 0.00327255 0.00327255 0.00327256 0.00327256
|
||||
0.00327256 0.00327256 0.00327193 0.00327195 0.00327196 0.00327198 0.003272 0.00327202 0.00327204 0.00327206 0.00327208 0.00327211
|
||||
0.00327212 0.00327212 0.00327211 0.00327211 0.00327211 0.00327212 0.00327212 0.00327212 0.00327213 0.00327213 0.00327214 0.00327214
|
||||
0.00327214 0.00327215 0.00327215 0.00327152 0.00327155 0.00327156 0.00327157 0.00327159 0.0032716 0.00327162 0.00327164 0.00327166
|
||||
0.00327168 0.00327169 0.0032717 0.0032717 0.0032717 0.0032717 0.0032717 0.00327171 0.00327171 0.00327171 0.00327172 0.00327172
|
||||
0.00327173 0.00327173 0.00327173 0.00327173 0.00327119 0.00327114 0.00327115 0.00327116 0.00327117 0.00327119 0.00327121 0.00327123
|
||||
0.00327125 0.00327127 0.00327128 0.00327128 0.00327129 0.00327129 0.00327129 0.00327129 0.00327129 0.0032713 0.0032713 0.00327131
|
||||
0.00327131 0.00327131 0.00327132 0.00327132 0.00327132
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259408 0.259405 0.259424 0.259423 0.259403 0.259422 0.259402 0.259422 0.259402 0.259421 0.259401 0.25942
|
||||
0.2594 0.25942 0.2594 0.259419 0.2594 0.259419 0.259399 0.259418 0.259399 0.259418 0.259398 0.259417
|
||||
0.259397 0.259416 0.259396 0.259416 0.259395 0.259415 0.259395 0.259414 0.259394 0.259413 0.259393 0.259412
|
||||
0.259392 0.259411 0.259391 0.25941 0.259391 0.25941 0.25939 0.259409 0.259389 0.259408 0.259389 0.259409
|
||||
0.25939 0.260285 0.259443 0.259442 0.259441 0.259441 0.25944 0.259439 0.259439 0.259438 0.259438 0.259438
|
||||
0.259438 0.259437 0.259436 0.259435 0.259434 0.259433 0.259432 0.259431 0.25943 0.25943 0.259429 0.259428
|
||||
0.259429 0.260289 0.541372 0.259462 0.259461 0.25946 0.25946 0.259459 0.259458 0.259458 0.259457 0.259457
|
||||
0.301432 0.30143 0.301429 0.259455 0.259454 0.259453 0.259452 0.259451 0.25945 0.25945 0.259449 0.259448
|
||||
0.259447 0.259455 0.262185 0.820832 0.25948 0.25948 0.259479 0.259479 0.259478 0.259477 0.259477 0.259476
|
||||
0.259476 0.301553 0.301552 0.30155 0.259474 0.259473 0.259472 0.259471 0.25947 0.25947 0.259469 0.259468
|
||||
0.259467 0.259466 0.259475 0.26241 0.820898 0.259499 0.259499 0.259498 0.259497 0.259497 0.259496 0.259495
|
||||
0.259495 0.259494 0.301676 0.301674 0.301672 0.259492 0.259492 0.259491 0.25949 0.259489 0.259489 0.259488
|
||||
0.259487 0.259486 0.259486 0.259493 0.262188 0.820965 0.259518 0.259518 0.259517 0.259516 0.259516 0.259515
|
||||
0.259514 0.259513 0.259512 0.301798 0.301796 0.301795 0.259511 0.25951 0.25951 0.259509 0.259508 0.259508
|
||||
0.259507 0.259506 0.259506 0.259505 0.259506 0.260333 0.541577 0.259537 0.259536 0.259536 0.259535 0.259534
|
||||
0.259534 0.259533 0.259532 0.259531 0.30192 0.301918 0.301916 0.259529 0.259529 0.259528 0.259528 0.259527
|
||||
0.259527 0.259526 0.259525 0.259525 0.259524 0.259523 0.259525 0.260502 0.259556 0.259555 0.259555 0.259554
|
||||
0.259553 0.259553 0.259552 0.25955 0.259549 0.302041 0.302039 0.302038 0.259548 0.259548 0.259547 0.259547
|
||||
0.259546 0.259546 0.259545 0.259544 0.259544 0.259543 0.259542 0.259542 0.259543 0.259525 0.259525 0.259524
|
||||
0.259524 0.259523 0.259522 0.259521 0.25952 0.259518 0.302109 0.302107 0.302106 0.259517 0.259517 0.259517
|
||||
0.259516 0.259516 0.259515 0.259515 0.259514 0.259514 0.259513 0.259513 0.259512 0.259512 0.259545 0.259544
|
||||
0.259543 0.259543 0.259542 0.259541 0.25954 0.259539 0.259537 0.302236 0.302234 0.302233 0.259536 0.259536
|
||||
0.259536 0.259536 0.259535 0.259535 0.259534 0.259534 0.259533 0.259533 0.259533 0.259532 0.259532 0.259564
|
||||
0.259563 0.259562 0.259561 0.259561 0.25956 0.259559 0.259558 0.259556 0.302362 0.30236 0.302359 0.259555
|
||||
0.259555 0.259555 0.259555 0.259554 0.259554 0.259554 0.259553 0.259553 0.259553 0.259552 0.259552 0.259552
|
||||
0.259583 0.259582 0.259581 0.25958 0.25958 0.259579 0.259578 0.259576 0.259575 0.302488 0.302486 0.302485
|
||||
0.259574 0.259574 0.259574 0.259574 0.259573 0.259573 0.259573 0.259573 0.259572 0.259572 0.259572 0.259572
|
||||
0.259572 0.259602 0.259601 0.2596 0.259599 0.259598 0.259598 0.259597 0.259595 0.259594 0.302613 0.30261
|
||||
0.302609 0.259593 0.259593 0.259593 0.259593 0.259593 0.259592 0.259592 0.259592 0.259592 0.259591 0.259591
|
||||
0.259591 0.259591 0.259621 0.25962 0.259619 0.259618 0.259617 0.259617 0.259616 0.259615 0.259614 0.259612
|
||||
0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259611 0.259611 0.259611 0.259611
|
||||
0.259611 0.259611 0.25961 0.259639 0.259638 0.259638 0.259637 0.259636 0.259636 0.259635 0.259634 0.259633
|
||||
0.259632 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.25963 0.25963 0.25963
|
||||
0.25963 0.25963 0.25963 0.25963 0.259655 0.259657 0.259657 0.259657 0.259656 0.259655 0.259654 0.259653
|
||||
0.259652 0.259651 0.259651 0.259651 0.259651 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965
|
||||
0.259649 0.259649 0.259649 0.259649 0.259649
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="temperature" NumberOfComponents="1" format="ascii">
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15
|
||||
393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15
|
||||
</DataArray>
|
||||
</PointData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
456
tests/referencesolutions/co2injection_ncp_ecfv-heuristix.vtu
Normal file
456
tests/referencesolutions/co2injection_ncp_ecfv-heuristix.vtu
Normal file
@ -0,0 +1,456 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<CellData Scalars="moleFrac_l^Brine">
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994982
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994978 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994975 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994975 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994979 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994979
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500005 0.00501847
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00502174 0.0104171
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500007 0.00502478 0.0104172
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500007 0.00502455 0.0104172
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500005 0.00502095 0.0104173
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00502098
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500003
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327804 0.00327805 0.00327807 0.00327808 0.00327809 0.0032781 0.00327811 0.00327811 0.00327811 0.00327812 0.00327813 0.00327814
|
||||
0.00327816 0.00327818 0.00327821 0.00327822 0.00327824 0.00327826 0.00327828 0.00327829 0.00327831 0.00327833 0.00327834 0.00327835
|
||||
0.00327763 0.00327765 0.00327766 0.00327768 0.00327769 0.0032777 0.0032777 0.00327771 0.0032777 0.00327771 0.00327772 0.00327773
|
||||
0.00327776 0.00327778 0.0032778 0.00327782 0.00327784 0.00327785 0.00327787 0.00327789 0.00327791 0.00327792 0.00327794 0.00327789
|
||||
0.00327723 0.00327724 0.00327726 0.00327727 0.00327728 0.00327729 0.0032773 0.0032773 0.0297698 0.0297699 0.0297699 0.0297701
|
||||
0.00327735 0.00327737 0.00327739 0.00327741 0.00327743 0.00327745 0.00327747 0.00327748 0.0032775 0.00327752 0.00327746 0.00325972
|
||||
0.00327683 0.00327684 0.00327685 0.00327687 0.00327688 0.00327689 0.0032769 0.00327691 0.029764 0.0297641 0.0297642 0.0297643
|
||||
0.00327695 0.00327697 0.00327699 0.00327701 0.00327702 0.00327704 0.00327706 0.00327707 0.00327709 0.00327711 0.00327705 0.00325932
|
||||
0.00327642 0.00327644 0.00327645 0.00327646 0.00327648 0.00327649 0.0032765 0.00327652 0.0297583 0.0297583 0.0297584 0.0297585
|
||||
0.00327655 0.00327657 0.00327659 0.0032766 0.00327662 0.00327663 0.00327665 0.00327667 0.00327668 0.0032767 0.00327664 0.00325891
|
||||
0.00327602 0.00327603 0.00327604 0.00327606 0.00327607 0.00327609 0.0032761 0.00327612 0.0297524 0.0297525 0.0297526 0.0297527
|
||||
0.00327615 0.00327617 0.00327618 0.0032762 0.00327621 0.00327623 0.00327624 0.00327626 0.00327627 0.00327629 0.00327624 0.00325849
|
||||
0.00327561 0.00327562 0.00327564 0.00327565 0.00327567 0.00327569 0.00327571 0.00327573 0.0297466 0.0297467 0.0297468 0.0297468
|
||||
0.00327576 0.00327577 0.00327578 0.00327579 0.00327581 0.00327582 0.00327583 0.00327585 0.00327586 0.00327587 0.00327589 0.00327583
|
||||
0.0032752 0.00327522 0.00327523 0.00327525 0.00327527 0.00327528 0.00327531 0.00327533 0.0297408 0.0297409 0.029741 0.029741
|
||||
0.00327536 0.00327537 0.00327537 0.00327539 0.0032754 0.00327541 0.00327542 0.00327543 0.00327545 0.00327546 0.00327547 0.00327547
|
||||
0.0032748 0.00327481 0.00327483 0.00327484 0.00327486 0.00327488 0.0032749 0.00327493 0.029735 0.0297351 0.0297352 0.0297352
|
||||
0.00327496 0.00327496 0.00327497 0.00327498 0.00327499 0.003275 0.00327501 0.00327502 0.00327504 0.00327505 0.00327505 0.00327506
|
||||
0.00327377 0.00327378 0.00327379 0.00327381 0.00327383 0.00327385 0.00327388 0.00327391 0.0297234 0.0297235 0.0297236 0.0297236
|
||||
0.00327393 0.00327393 0.00327394 0.00327395 0.00327396 0.00327397 0.00327398 0.00327399 0.003274 0.003274 0.00327401 0.00327401
|
||||
0.00327336 0.00327338 0.00327339 0.00327341 0.00327343 0.00327346 0.00327348 0.00327351 0.0297174 0.0297175 0.0297176 0.0297177
|
||||
0.00327353 0.00327354 0.00327354 0.00327354 0.00327355 0.00327356 0.00327357 0.00327357 0.00327358 0.00327359 0.00327359 0.0032736
|
||||
0.00327296 0.00327297 0.00327299 0.00327301 0.00327303 0.00327305 0.00327308 0.00327311 0.0297115 0.0297116 0.0297117 0.0297117
|
||||
0.00327313 0.00327313 0.00327314 0.00327314 0.00327314 0.00327315 0.00327316 0.00327316 0.00327317 0.00327317 0.00327318 0.00327318
|
||||
0.00327255 0.00327257 0.00327259 0.00327261 0.00327263 0.00327265 0.00327268 0.00327271 0.0297056 0.0297057 0.0297057 0.0297058
|
||||
0.00327273 0.00327273 0.00327273 0.00327273 0.00327274 0.00327274 0.00327274 0.00327275 0.00327275 0.00327276 0.00327276 0.00327276
|
||||
0.00327214 0.00327216 0.00327218 0.0032722 0.00327222 0.00327224 0.00327227 0.0032723 0.0296996 0.0296998 0.0296999 0.0296999
|
||||
0.00327233 0.00327233 0.00327232 0.00327232 0.00327233 0.00327233 0.00327233 0.00327234 0.00327234 0.00327234 0.00327234 0.00327235
|
||||
0.00327173 0.00327175 0.00327177 0.00327179 0.00327181 0.00327183 0.00327186 0.00327189 0.00327191 0.00327192 0.00327193 0.00327193
|
||||
0.00327192 0.00327192 0.00327191 0.00327191 0.00327192 0.00327192 0.00327192 0.00327192 0.00327193 0.00327193 0.00327193 0.00327193
|
||||
0.00327132 0.00327134 0.00327136 0.00327138 0.0032714 0.00327142 0.00327145 0.00327147 0.00327149 0.0032715 0.00327151 0.00327151
|
||||
0.00327151 0.0032715 0.0032715 0.0032715 0.0032715 0.0032715 0.00327151 0.00327151 0.00327151 0.00327151 0.00327152 0.00327152
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259413 0.259412 0.259412 0.259411 0.259411 0.25941 0.25941 0.25941 0.25941 0.259409 0.259409 0.259408
|
||||
0.259407 0.259406 0.259405 0.259404 0.259403 0.259403 0.259402 0.259401 0.2594 0.2594 0.259399 0.2594
|
||||
0.259432 0.259432 0.259431 0.25943 0.25943 0.259429 0.259429 0.259429 0.259429 0.259429 0.259428 0.259428
|
||||
0.259427 0.259426 0.259425 0.259424 0.259423 0.259422 0.259421 0.25942 0.25942 0.259419 0.259421 0.260376
|
||||
0.259451 0.259451 0.25945 0.25945 0.259449 0.259448 0.259448 0.259448 0.301373 0.301372 0.30137 0.301367
|
||||
0.259446 0.259445 0.259444 0.259443 0.259442 0.259441 0.25944 0.25944 0.259439 0.259441 0.260565 0.540515
|
||||
0.25947 0.25947 0.259469 0.259469 0.259468 0.259467 0.259467 0.259467 0.301494 0.301493 0.301491 0.301489
|
||||
0.259465 0.259464 0.259463 0.259462 0.259461 0.25946 0.25946 0.259459 0.259458 0.259461 0.260742 0.540557
|
||||
0.259489 0.259489 0.259488 0.259487 0.259487 0.259486 0.259486 0.259485 0.301616 0.301615 0.301613 0.301611
|
||||
0.259483 0.259482 0.259482 0.259481 0.25948 0.259479 0.259479 0.259478 0.259477 0.25948 0.260749 0.5406
|
||||
0.259508 0.259508 0.259507 0.259506 0.259506 0.259505 0.259504 0.259503 0.301738 0.301736 0.301735 0.301733
|
||||
0.259502 0.259501 0.2595 0.2595 0.259499 0.259498 0.259498 0.259497 0.259496 0.259498 0.260582 0.540644
|
||||
0.259527 0.259526 0.259526 0.259525 0.259524 0.259523 0.259523 0.259522 0.30186 0.301858 0.301857 0.301855
|
||||
0.25952 0.25952 0.259519 0.259519 0.259518 0.259517 0.259517 0.259516 0.259515 0.259515 0.259517 0.260603
|
||||
0.259546 0.259545 0.259544 0.259544 0.259543 0.259542 0.259541 0.25954 0.301982 0.30198 0.301978 0.301977
|
||||
0.259539 0.259538 0.259538 0.259537 0.259537 0.259536 0.259536 0.259535 0.259535 0.259534 0.259534 0.259535
|
||||
0.259565 0.259564 0.259564 0.259563 0.259562 0.259561 0.25956 0.259559 0.302104 0.302102 0.3021 0.3021
|
||||
0.259557 0.259557 0.259557 0.259557 0.259556 0.259555 0.259555 0.259554 0.259554 0.259553 0.259553 0.259553
|
||||
0.259535 0.259534 0.259533 0.259532 0.259532 0.259531 0.259529 0.259528 0.302172 0.302169 0.302167 0.302167
|
||||
0.259527 0.259527 0.259526 0.259526 0.259526 0.259525 0.259525 0.259524 0.259524 0.259523 0.259523 0.259523
|
||||
0.259554 0.259553 0.259552 0.259551 0.25955 0.259549 0.259548 0.259547 0.302298 0.302296 0.302294 0.302293
|
||||
0.259546 0.259546 0.259545 0.259545 0.259545 0.259544 0.259544 0.259544 0.259543 0.259543 0.259543 0.259543
|
||||
0.259573 0.259572 0.259571 0.25957 0.259569 0.259568 0.259567 0.259566 0.302424 0.302421 0.30242 0.302419
|
||||
0.259564 0.259564 0.259564 0.259564 0.259564 0.259564 0.259563 0.259563 0.259563 0.259563 0.259562 0.259562
|
||||
0.259592 0.259591 0.25959 0.259589 0.259588 0.259587 0.259586 0.259584 0.302549 0.302546 0.302545 0.302544
|
||||
0.259583 0.259583 0.259583 0.259583 0.259583 0.259583 0.259583 0.259582 0.259582 0.259582 0.259582 0.259582
|
||||
0.259611 0.25961 0.259609 0.259608 0.259607 0.259606 0.259605 0.259603 0.302673 0.30267 0.302668 0.302668
|
||||
0.259602 0.259602 0.259602 0.259602 0.259602 0.259602 0.259602 0.259602 0.259601 0.259601 0.259601 0.259601
|
||||
0.25963 0.259629 0.259628 0.259627 0.259626 0.259625 0.259624 0.259623 0.259621 0.259621 0.25962 0.25962
|
||||
0.259621 0.259621 0.259621 0.259621 0.259621 0.259621 0.259621 0.259621 0.259621 0.259621 0.25962 0.25962
|
||||
0.259649 0.259648 0.259647 0.259646 0.259645 0.259644 0.259643 0.259642 0.259641 0.25964 0.25964 0.25964
|
||||
0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964
|
||||
</DataArray>
|
||||
</CellData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
@ -1,852 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="pressure_l">
|
||||
<DataArray type="Float32" Name="pressure_l" NumberOfComponents="1" format="ascii">
|
||||
2.63165e+07 2.63215e+07 2.62952e+07 2.62956e+07 2.63233e+07 2.62969e+07 2.63245e+07 2.62981e+07 2.63255e+07 2.6299e+07 2.63264e+07 2.62999e+07
|
||||
2.63271e+07 2.63006e+07 2.63277e+07 2.63012e+07 2.63282e+07 2.63017e+07 2.63288e+07 2.63021e+07 2.63294e+07 2.63028e+07 2.63303e+07 2.63037e+07
|
||||
2.63314e+07 2.63048e+07 2.63327e+07 2.63061e+07 2.63339e+07 2.63074e+07 2.63352e+07 2.63086e+07 2.63364e+07 2.63098e+07 2.63375e+07 2.6311e+07
|
||||
2.63387e+07 2.63121e+07 2.63398e+07 2.63132e+07 2.63408e+07 2.63143e+07 2.63419e+07 2.63154e+07 2.63428e+07 2.63164e+07 2.63435e+07 2.63172e+07
|
||||
2.63438e+07 2.63176e+07 2.62692e+07 2.62699e+07 2.62708e+07 2.62718e+07 2.62727e+07 2.62735e+07 2.62742e+07 2.62748e+07 2.62752e+07 2.62753e+07
|
||||
2.62758e+07 2.62767e+07 2.62782e+07 2.62796e+07 2.62809e+07 2.62822e+07 2.62833e+07 2.62845e+07 2.62856e+07 2.62867e+07 2.62878e+07 2.62889e+07
|
||||
2.62901e+07 2.62912e+07 2.62924e+07 2.6243e+07 2.62438e+07 2.62446e+07 2.62455e+07 2.62464e+07 2.62473e+07 2.6248e+07 2.62487e+07 2.62491e+07
|
||||
2.6249e+07 2.62492e+07 2.62496e+07 2.62517e+07 2.62532e+07 2.62545e+07 2.62557e+07 2.62569e+07 2.6258e+07 2.62591e+07 2.62602e+07 2.62613e+07
|
||||
2.62625e+07 2.62637e+07 2.62652e+07 2.62671e+07 2.62168e+07 2.62176e+07 2.62185e+07 2.62193e+07 2.62202e+07 2.62211e+07 2.62219e+07 2.62227e+07
|
||||
2.62233e+07 2.62235e+07 2.62238e+07 2.62242e+07 2.62256e+07 2.6227e+07 2.62282e+07 2.62293e+07 2.62304e+07 2.62315e+07 2.62326e+07 2.62337e+07
|
||||
2.62348e+07 2.6236e+07 2.62373e+07 2.62388e+07 2.62408e+07 2.61906e+07 2.61914e+07 2.61922e+07 2.61931e+07 2.6194e+07 2.61949e+07 2.61959e+07
|
||||
2.61968e+07 2.61977e+07 2.6198e+07 2.61983e+07 2.61986e+07 2.61998e+07 2.62009e+07 2.62019e+07 2.6203e+07 2.6204e+07 2.62051e+07 2.62061e+07
|
||||
2.62071e+07 2.62082e+07 2.62093e+07 2.62105e+07 2.6212e+07 2.62138e+07 2.61644e+07 2.61652e+07 2.6166e+07 2.61669e+07 2.61678e+07 2.61688e+07
|
||||
2.61698e+07 2.61709e+07 2.61721e+07 2.61724e+07 2.61728e+07 2.61731e+07 2.61739e+07 2.61748e+07 2.61757e+07 2.61767e+07 2.61776e+07 2.61786e+07
|
||||
2.61796e+07 2.61806e+07 2.61816e+07 2.61826e+07 2.61836e+07 2.61847e+07 2.61858e+07 2.61381e+07 2.61389e+07 2.61397e+07 2.61406e+07 2.61415e+07
|
||||
2.61426e+07 2.61437e+07 2.6145e+07 2.61464e+07 2.61469e+07 2.61473e+07 2.61476e+07 2.61481e+07 2.61487e+07 2.61495e+07 2.61503e+07 2.61512e+07
|
||||
2.61521e+07 2.6153e+07 2.6154e+07 2.61549e+07 2.61558e+07 2.61567e+07 2.61574e+07 2.61577e+07 2.61119e+07 2.61125e+07 2.61133e+07 2.61142e+07
|
||||
2.61152e+07 2.61162e+07 2.61175e+07 2.61189e+07 2.61207e+07 2.61215e+07 2.61219e+07 2.61222e+07 2.61221e+07 2.61225e+07 2.61231e+07 2.61239e+07
|
||||
2.61247e+07 2.61256e+07 2.61265e+07 2.61274e+07 2.61283e+07 2.61292e+07 2.61299e+07 2.61304e+07 2.61306e+07 2.60857e+07 2.60863e+07 2.60871e+07
|
||||
2.60881e+07 2.60891e+07 2.60902e+07 2.60915e+07 2.6093e+07 2.60949e+07 2.60957e+07 2.60961e+07 2.60963e+07 2.60962e+07 2.60965e+07 2.6097e+07
|
||||
2.60976e+07 2.60984e+07 2.60991e+07 2.61e+07 2.61008e+07 2.61016e+07 2.61023e+07 2.61029e+07 2.61033e+07 2.61035e+07 2.60595e+07 2.60603e+07
|
||||
2.60612e+07 2.60622e+07 2.60633e+07 2.60645e+07 2.60658e+07 2.60673e+07 2.6069e+07 2.60694e+07 2.60699e+07 2.60701e+07 2.60703e+07 2.60706e+07
|
||||
2.6071e+07 2.60715e+07 2.60721e+07 2.60727e+07 2.60734e+07 2.60741e+07 2.60747e+07 2.60753e+07 2.60757e+07 2.6076e+07 2.60761e+07 2.60333e+07
|
||||
2.60342e+07 2.60352e+07 2.60362e+07 2.60373e+07 2.60386e+07 2.60399e+07 2.60414e+07 2.6043e+07 2.60434e+07 2.60438e+07 2.6044e+07 2.60444e+07
|
||||
2.60446e+07 2.60449e+07 2.60453e+07 2.60458e+07 2.60463e+07 2.60469e+07 2.60474e+07 2.60479e+07 2.60483e+07 2.60487e+07 2.60489e+07 2.6049e+07
|
||||
2.60071e+07 2.60081e+07 2.60091e+07 2.60102e+07 2.60113e+07 2.60125e+07 2.60139e+07 2.60154e+07 2.6017e+07 2.60175e+07 2.6018e+07 2.60182e+07
|
||||
2.60184e+07 2.60186e+07 2.60188e+07 2.60191e+07 2.60194e+07 2.60199e+07 2.60203e+07 2.60207e+07 2.60212e+07 2.60215e+07 2.60218e+07 2.6022e+07
|
||||
2.6022e+07 2.59809e+07 2.5982e+07 2.5983e+07 2.59841e+07 2.59852e+07 2.59864e+07 2.59877e+07 2.59892e+07 2.59911e+07 2.59918e+07 2.59923e+07
|
||||
2.59925e+07 2.59924e+07 2.59924e+07 2.59925e+07 2.59928e+07 2.59931e+07 2.59934e+07 2.59938e+07 2.59941e+07 2.59945e+07 2.59948e+07 2.5995e+07
|
||||
2.59951e+07 2.59952e+07 2.59547e+07 2.59559e+07 2.59569e+07 2.59579e+07 2.59589e+07 2.59601e+07 2.59614e+07 2.59627e+07 2.59641e+07 2.59657e+07
|
||||
2.59663e+07 2.59665e+07 2.59661e+07 2.59661e+07 2.59662e+07 2.59664e+07 2.59666e+07 2.59669e+07 2.59672e+07 2.59675e+07 2.59678e+07 2.59681e+07
|
||||
2.59683e+07 2.59684e+07 2.59684e+07 2.59287e+07 2.59302e+07 2.59308e+07 2.59316e+07 2.59326e+07 2.59337e+07 2.59349e+07 2.59362e+07 2.59374e+07
|
||||
2.59385e+07 2.59392e+07 2.59395e+07 2.59396e+07 2.59396e+07 2.59397e+07 2.59399e+07 2.59401e+07 2.59404e+07 2.59407e+07 2.5941e+07 2.59412e+07
|
||||
2.59415e+07 2.59416e+07 2.59418e+07 2.59418e+07 2.59074e+07 2.59043e+07 2.59045e+07 2.59052e+07 2.59061e+07 2.59072e+07 2.59084e+07 2.59096e+07
|
||||
2.59108e+07 2.59118e+07 2.59125e+07 2.59129e+07 2.5913e+07 2.59131e+07 2.59132e+07 2.59134e+07 2.59136e+07 2.59139e+07 2.59141e+07 2.59144e+07
|
||||
2.59147e+07 2.59149e+07 2.59151e+07 2.59152e+07 2.59152e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="pressure_g" NumberOfComponents="1" format="ascii">
|
||||
2.63215e+07 2.63265e+07 2.63002e+07 2.63006e+07 2.63283e+07 2.63019e+07 2.63295e+07 2.63031e+07 2.63305e+07 2.6304e+07 2.63314e+07 2.63049e+07
|
||||
2.63321e+07 2.63056e+07 2.63327e+07 2.63062e+07 2.63332e+07 2.63067e+07 2.63338e+07 2.63071e+07 2.63344e+07 2.63078e+07 2.63353e+07 2.63087e+07
|
||||
2.63364e+07 2.63098e+07 2.63377e+07 2.63111e+07 2.63389e+07 2.63124e+07 2.63402e+07 2.63136e+07 2.63414e+07 2.63148e+07 2.63425e+07 2.6316e+07
|
||||
2.63437e+07 2.63171e+07 2.63448e+07 2.63182e+07 2.63458e+07 2.63193e+07 2.63469e+07 2.63204e+07 2.63478e+07 2.63214e+07 2.63485e+07 2.63222e+07
|
||||
2.63488e+07 2.63226e+07 2.62742e+07 2.62749e+07 2.62758e+07 2.62768e+07 2.62777e+07 2.62785e+07 2.62792e+07 2.62798e+07 2.62802e+07 2.62803e+07
|
||||
2.62808e+07 2.62817e+07 2.62832e+07 2.62846e+07 2.62859e+07 2.62872e+07 2.62883e+07 2.62895e+07 2.62906e+07 2.62917e+07 2.62928e+07 2.62939e+07
|
||||
2.62951e+07 2.62962e+07 2.62974e+07 2.6248e+07 2.62488e+07 2.62496e+07 2.62505e+07 2.62514e+07 2.62523e+07 2.6253e+07 2.62537e+07 2.62541e+07
|
||||
2.6254e+07 2.62542e+07 2.62546e+07 2.62567e+07 2.62582e+07 2.62595e+07 2.62607e+07 2.62619e+07 2.6263e+07 2.62641e+07 2.62652e+07 2.62663e+07
|
||||
2.62675e+07 2.62687e+07 2.62702e+07 2.62721e+07 2.62218e+07 2.62226e+07 2.62235e+07 2.62243e+07 2.62252e+07 2.62261e+07 2.62269e+07 2.62277e+07
|
||||
2.62283e+07 2.62285e+07 2.62288e+07 2.62292e+07 2.62306e+07 2.6232e+07 2.62332e+07 2.62343e+07 2.62354e+07 2.62365e+07 2.62376e+07 2.62387e+07
|
||||
2.62398e+07 2.6241e+07 2.62423e+07 2.62438e+07 2.62458e+07 2.61956e+07 2.61964e+07 2.61972e+07 2.61981e+07 2.6199e+07 2.61999e+07 2.62009e+07
|
||||
2.62018e+07 2.62027e+07 2.6203e+07 2.62033e+07 2.62036e+07 2.62048e+07 2.62059e+07 2.62069e+07 2.6208e+07 2.6209e+07 2.62101e+07 2.62111e+07
|
||||
2.62121e+07 2.62132e+07 2.62143e+07 2.62155e+07 2.6217e+07 2.62188e+07 2.61694e+07 2.61702e+07 2.6171e+07 2.61719e+07 2.61728e+07 2.61738e+07
|
||||
2.61748e+07 2.61759e+07 2.61771e+07 2.61774e+07 2.61778e+07 2.61781e+07 2.61789e+07 2.61798e+07 2.61807e+07 2.61817e+07 2.61826e+07 2.61836e+07
|
||||
2.61846e+07 2.61856e+07 2.61866e+07 2.61876e+07 2.61886e+07 2.61897e+07 2.61908e+07 2.61431e+07 2.61439e+07 2.61447e+07 2.61456e+07 2.61465e+07
|
||||
2.61476e+07 2.61487e+07 2.615e+07 2.61514e+07 2.61519e+07 2.61523e+07 2.61526e+07 2.61531e+07 2.61537e+07 2.61545e+07 2.61553e+07 2.61562e+07
|
||||
2.61571e+07 2.6158e+07 2.6159e+07 2.61599e+07 2.61608e+07 2.61617e+07 2.61624e+07 2.61627e+07 2.61169e+07 2.61175e+07 2.61183e+07 2.61192e+07
|
||||
2.61202e+07 2.61212e+07 2.61225e+07 2.61239e+07 2.61257e+07 2.61265e+07 2.61269e+07 2.61272e+07 2.61271e+07 2.61275e+07 2.61281e+07 2.61289e+07
|
||||
2.61297e+07 2.61306e+07 2.61315e+07 2.61324e+07 2.61333e+07 2.61342e+07 2.61349e+07 2.61354e+07 2.61356e+07 2.60957e+07 2.60963e+07 2.60971e+07
|
||||
2.60981e+07 2.60991e+07 2.61002e+07 2.61015e+07 2.6103e+07 2.61049e+07 2.61057e+07 2.61061e+07 2.61063e+07 2.61062e+07 2.61065e+07 2.6107e+07
|
||||
2.61076e+07 2.61084e+07 2.61091e+07 2.611e+07 2.61108e+07 2.61116e+07 2.61123e+07 2.61129e+07 2.61133e+07 2.61135e+07 2.60695e+07 2.60703e+07
|
||||
2.60712e+07 2.60722e+07 2.60733e+07 2.60745e+07 2.60758e+07 2.60773e+07 2.6079e+07 2.60794e+07 2.60799e+07 2.60801e+07 2.60803e+07 2.60806e+07
|
||||
2.6081e+07 2.60815e+07 2.60821e+07 2.60827e+07 2.60834e+07 2.60841e+07 2.60847e+07 2.60853e+07 2.60857e+07 2.6086e+07 2.60861e+07 2.60433e+07
|
||||
2.60442e+07 2.60452e+07 2.60462e+07 2.60473e+07 2.60486e+07 2.60499e+07 2.60514e+07 2.6053e+07 2.60534e+07 2.60538e+07 2.6054e+07 2.60544e+07
|
||||
2.60546e+07 2.60549e+07 2.60553e+07 2.60558e+07 2.60563e+07 2.60569e+07 2.60574e+07 2.60579e+07 2.60583e+07 2.60587e+07 2.60589e+07 2.6059e+07
|
||||
2.60171e+07 2.60181e+07 2.60191e+07 2.60202e+07 2.60213e+07 2.60225e+07 2.60239e+07 2.60254e+07 2.6027e+07 2.60275e+07 2.6028e+07 2.60282e+07
|
||||
2.60284e+07 2.60286e+07 2.60288e+07 2.60291e+07 2.60294e+07 2.60299e+07 2.60303e+07 2.60307e+07 2.60312e+07 2.60315e+07 2.60318e+07 2.6032e+07
|
||||
2.6032e+07 2.59909e+07 2.5992e+07 2.5993e+07 2.59941e+07 2.59952e+07 2.59964e+07 2.59977e+07 2.59992e+07 2.60011e+07 2.60018e+07 2.60023e+07
|
||||
2.60025e+07 2.60024e+07 2.60024e+07 2.60025e+07 2.60028e+07 2.60031e+07 2.60034e+07 2.60038e+07 2.60041e+07 2.60045e+07 2.60048e+07 2.6005e+07
|
||||
2.60051e+07 2.60052e+07 2.59647e+07 2.59659e+07 2.59669e+07 2.59679e+07 2.59689e+07 2.59701e+07 2.59714e+07 2.59727e+07 2.59741e+07 2.59757e+07
|
||||
2.59763e+07 2.59765e+07 2.59761e+07 2.59761e+07 2.59762e+07 2.59764e+07 2.59766e+07 2.59769e+07 2.59772e+07 2.59775e+07 2.59778e+07 2.59781e+07
|
||||
2.59783e+07 2.59784e+07 2.59784e+07 2.59387e+07 2.59402e+07 2.59408e+07 2.59416e+07 2.59426e+07 2.59437e+07 2.59449e+07 2.59462e+07 2.59474e+07
|
||||
2.59485e+07 2.59492e+07 2.59495e+07 2.59496e+07 2.59496e+07 2.59497e+07 2.59499e+07 2.59501e+07 2.59504e+07 2.59507e+07 2.5951e+07 2.59512e+07
|
||||
2.59515e+07 2.59516e+07 2.59518e+07 2.59518e+07 2.59174e+07 2.59143e+07 2.59145e+07 2.59152e+07 2.59161e+07 2.59172e+07 2.59184e+07 2.59196e+07
|
||||
2.59208e+07 2.59218e+07 2.59225e+07 2.59229e+07 2.5923e+07 2.59231e+07 2.59232e+07 2.59234e+07 2.59236e+07 2.59239e+07 2.59241e+07 2.59244e+07
|
||||
2.59247e+07 2.59249e+07 2.59251e+07 2.59252e+07 2.59252e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_l" NumberOfComponents="1" format="ascii">
|
||||
1082.34 1082.34 1082.33 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33
|
||||
1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33
|
||||
1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.35 1082.33 1082.35 1082.33 1082.35 1082.34
|
||||
1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34
|
||||
1082.35 1082.34 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.31 1082.3
|
||||
1082.3 1082.3 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.33 1082.33
|
||||
1082.33 1082.33 1084.5 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.29
|
||||
1019.39 1019.36 1019.76 1082.29 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31
|
||||
1082.31 1082.32 1082.34 1086.65 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3
|
||||
1082.25 1019.22 1019.15 1019.45 1082.28 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3
|
||||
1082.3 1082.3 1082.3 1082.33 1086.64 1082.28 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29
|
||||
1082.29 1082.22 1019.21 1019.14 1019.38 1082.27 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29
|
||||
1082.29 1082.29 1082.29 1082.29 1082.32 1086.63 1082.27 1082.27 1082.27 1082.28 1082.28 1082.28
|
||||
1082.28 1082.28 1082.2 1019.2 1019.13 1019.33 1082.25 1082.28 1082.28 1082.28 1082.28 1082.28
|
||||
1082.28 1082.28 1082.28 1082.28 1082.28 1082.29 1084.46 1082.26 1082.26 1082.26 1082.26 1082.26
|
||||
1082.26 1082.27 1082.27 1082.17 1019.19 1019.12 1019.27 1082.24 1082.27 1082.27 1082.27 1082.27
|
||||
1082.27 1082.27 1082.27 1082.27 1082.27 1082.27 1082.27 1082.28 1082.25 1082.25 1082.25 1082.25
|
||||
1082.25 1082.25 1082.25 1082.25 1082.12 1019.18 1019.11 1019.19 1082.22 1082.26 1082.26 1082.26
|
||||
1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.24 1082.24 1082.24
|
||||
1082.24 1082.24 1082.24 1082.24 1082.24 1082.21 1019.17 1019.1 1019.17 1082.22 1082.25 1082.25
|
||||
1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.23 1082.23
|
||||
1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1082.2 1019.17 1019.09 1019.17 1082.21 1082.23
|
||||
1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.22
|
||||
1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.19 1019.16 1019.08 1019.16 1082.2
|
||||
1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23
|
||||
1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.18 1019.15 1019.07 1019.15
|
||||
1082.19 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21
|
||||
1082.21 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.17 1019.19 1019.14
|
||||
1019.19 1082.18 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2
|
||||
1082.2 1082.2 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.18 1082.17
|
||||
1082.16 1082.17 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19
|
||||
1082.19 1082.19 1082.19 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18
|
||||
1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18
|
||||
1082.18 1082.18 1082.18 1082.18 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_g" NumberOfComponents="1" format="ascii">
|
||||
969.119 969.141 969.022 969.024 969.149 969.03 969.155 969.035 969.159 969.04 969.163 969.043
|
||||
969.166 969.047 969.169 969.049 969.171 969.051 969.173 969.053 969.176 969.056 969.18 969.06
|
||||
969.185 969.066 969.191 969.071 969.196 969.077 969.202 969.083 969.207 969.088 969.212 969.093
|
||||
969.217 969.098 969.222 969.103 969.227 969.108 969.232 969.113 969.236 969.117 969.239 969.121
|
||||
969.24 969.12 968.905 968.908 968.912 968.917 968.921 968.925 968.928 968.93 968.852 968.693
|
||||
968.615 968.699 968.866 968.952 968.958 968.963 968.968 968.974 968.979 968.984 968.989 968.994
|
||||
968.999 969 967.064 968.787 968.791 968.794 968.798 968.802 968.806 968.81 968.812 968.574
|
||||
528.706 528.58 530.231 968.587 968.833 968.839 968.844 968.849 968.854 968.859 968.864 968.869
|
||||
968.874 968.88 968.878 965.019 968.669 968.673 968.676 968.68 968.684 968.688 968.692 968.694
|
||||
968.04 527.628 527.322 528.559 968.389 968.714 968.72 968.725 968.73 968.735 968.74 968.744
|
||||
968.749 968.755 968.76 968.758 964.898 968.55 968.554 968.558 968.562 968.566 968.57 968.574
|
||||
968.577 967.703 527.189 526.884 527.897 968.272 968.597 968.602 968.606 968.611 968.615 968.62
|
||||
968.625 968.629 968.634 968.64 968.637 964.774 968.432 968.436 968.44 968.444 968.448 968.452
|
||||
968.457 968.46 967.432 526.752 526.448 527.286 968.155 968.479 968.483 968.487 968.492 968.496
|
||||
968.5 968.505 968.509 968.514 968.519 968.52 966.579 968.314 968.317 968.321 968.325 968.329
|
||||
968.334 968.339 968.342 967.066 526.315 526.012 526.632 968.038 968.361 968.365 968.368 968.372
|
||||
968.377 968.381 968.385 968.389 968.393 968.397 968.4 968.399 968.195 968.198 968.202 968.206
|
||||
968.21 968.215 968.221 968.223 966.402 525.881 525.578 525.916 967.811 968.243 968.246 968.249
|
||||
968.253 968.257 968.261 968.265 968.269 968.273 968.276 968.279 968.28 968.099 968.102 968.106
|
||||
968.11 968.114 968.12 968.125 968.132 967.667 525.521 525.218 525.533 967.808 968.147 968.15
|
||||
968.153 968.156 968.16 968.163 968.167 968.171 968.174 968.177 968.179 968.179 967.98 967.984
|
||||
967.988 967.992 967.997 968.003 968.009 968.015 967.596 525.068 524.764 525.092 967.707 968.03
|
||||
968.032 968.034 968.037 968.04 968.043 968.046 968.049 968.051 968.053 968.055 968.055 967.861
|
||||
967.865 967.87 967.874 967.879 967.885 967.891 967.897 967.49 524.618 524.313 524.646 967.589
|
||||
967.912 967.914 967.915 967.918 967.92 967.922 967.925 967.927 967.929 967.931 967.932 967.932
|
||||
967.742 967.747 967.751 967.756 967.761 967.767 967.773 967.779 967.362 524.171 523.866 524.193
|
||||
967.47 967.794 967.795 967.796 967.798 967.8 967.802 967.804 967.806 967.807 967.808 967.809
|
||||
967.81 967.623 967.628 967.633 967.638 967.643 967.648 967.654 967.66 967.268 523.959 523.735
|
||||
523.972 967.409 967.675 967.676 967.677 967.678 967.68 967.681 967.683 967.684 967.686 967.687
|
||||
967.687 967.688 967.504 967.51 967.514 967.519 967.523 967.529 967.534 967.54 967.466 967.225
|
||||
967.177 967.255 967.475 967.555 967.556 967.557 967.558 967.559 967.561 967.562 967.563 967.565
|
||||
967.565 967.566 967.566 967.386 967.393 967.396 967.399 967.404 967.409 967.414 967.42 967.425
|
||||
967.43 967.433 967.435 967.435 967.435 967.436 967.437 967.438 967.439 967.44 967.441 967.443
|
||||
967.444 967.444 967.445 967.445 967.289 967.275 967.276 967.279 967.283 967.288 967.294 967.299
|
||||
967.304 967.309 967.312 967.314 967.315 967.315 967.315 967.316 967.317 967.318 967.32 967.321
|
||||
967.322 967.323 967.324 967.324 967.324
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="porosity" NumberOfComponents="1" format="ascii">
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.989565 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.994947 0.984179 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.994943 0.984179 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.994948 0.984179 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.994984 0.989564 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.00500002 0.00501701 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.00500004 0.00501671 0.0104346 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.00500016 0.00505307 0.0158208 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.00500018 0.00505701 0.0158209 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.00500015 0.0050524 0.0158211 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.00500004 0.0050161 0.0104355 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.00500004 0.00501904 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327813 0.00327822 0.00327782 0.00327782 0.00327825 0.00327784 0.00327827 0.00327786 0.00327828 0.00327788 0.0032783 0.00327789
|
||||
0.00327831 0.0032779 0.00327832 0.00327791 0.00327833 0.00327792 0.00327834 0.00327793 0.00327835 0.00327794 0.00327836 0.00327796
|
||||
0.00327838 0.00327798 0.0032784 0.003278 0.00327842 0.00327802 0.00327844 0.00327804 0.00327846 0.00327806 0.00327848 0.00327807
|
||||
0.0032785 0.00327809 0.00327852 0.00327811 0.00327854 0.00327813 0.00327855 0.00327815 0.00327857 0.00327816 0.00327858 0.00327818
|
||||
0.00327858 0.00327819 0.00327742 0.00327743 0.00327744 0.00327746 0.00327747 0.00327749 0.0032775 0.00327751 0.00327948 0.0032834
|
||||
0.00328536 0.0032834 0.00327952 0.00327759 0.00327761 0.00327763 0.00327765 0.00327767 0.00327769 0.0032777 0.00327772 0.00327774
|
||||
0.00327776 0.0032778 0.00330748 0.00327702 0.00327703 0.00327704 0.00327706 0.00327707 0.00327708 0.0032771 0.00327711 0.00328301
|
||||
0.0296248 0.0296442 0.0294026 0.00328302 0.00327718 0.0032772 0.00327722 0.00327724 0.00327726 0.00327728 0.0032773 0.00327731
|
||||
0.00327733 0.00327735 0.00327742 0.00333646 0.00327662 0.00327662 0.00327664 0.00327665 0.00327667 0.00327668 0.00327669 0.00327672
|
||||
0.00329285 0.0297145 0.0297608 0.0295784 0.00328458 0.00327678 0.0032768 0.00327682 0.00327683 0.00327685 0.00327687 0.00327689
|
||||
0.00327691 0.00327693 0.00327695 0.00327702 0.00333606 0.00327621 0.00327622 0.00327623 0.00327625 0.00327626 0.00327628 0.00327629
|
||||
0.00327634 0.00329786 0.0297091 0.0297553 0.0296058 0.00328419 0.00327638 0.00327639 0.00327641 0.00327643 0.00327644 0.00327646
|
||||
0.00327648 0.0032765 0.00327652 0.00327653 0.0032766 0.00333562 0.00327581 0.00327582 0.00327583 0.00327584 0.00327586 0.00327587
|
||||
0.00327589 0.00327595 0.00330125 0.0297033 0.0297496 0.0296257 0.00328379 0.00327598 0.00327599 0.003276 0.00327602 0.00327604
|
||||
0.00327605 0.00327607 0.00327609 0.0032761 0.00327612 0.00327616 0.00330582 0.0032754 0.00327541 0.00327542 0.00327544 0.00327545
|
||||
0.00327547 0.00327549 0.00327557 0.00330698 0.0296976 0.0297438 0.0296523 0.0032834 0.00327558 0.00327558 0.0032756 0.00327561
|
||||
0.00327563 0.00327564 0.00327566 0.00327567 0.00327569 0.0032757 0.00327572 0.00327573 0.003275 0.003275 0.00327501 0.00327503
|
||||
0.00327505 0.00327506 0.00327508 0.0032752 0.00332 0.0296918 0.0297381 0.0296885 0.00328566 0.00327517 0.00327518 0.00327519
|
||||
0.0032752 0.00327522 0.00327523 0.00327525 0.00327526 0.00327528 0.00327529 0.0032753 0.0032753 0.00327396 0.00327397 0.00327398
|
||||
0.003274 0.00327402 0.00327403 0.00327406 0.00327409 0.00328568 0.0296801 0.0297265 0.0296802 0.00328239 0.00327414 0.00327415
|
||||
0.00327416 0.00327417 0.00327418 0.00327419 0.00327421 0.00327422 0.00327423 0.00327424 0.00327425 0.00327425 0.00327355 0.00327357
|
||||
0.00327358 0.0032736 0.00327362 0.00327364 0.00327366 0.00327369 0.00328412 0.029674 0.0297205 0.0296722 0.00328159 0.00327374
|
||||
0.00327374 0.00327375 0.00327376 0.00327377 0.00327378 0.00327379 0.00327381 0.00327381 0.00327382 0.00327383 0.00327383 0.00327315
|
||||
0.00327316 0.00327318 0.0032732 0.00327322 0.00327324 0.00327326 0.00327329 0.00328342 0.029668 0.0297145 0.0296655 0.00328118
|
||||
0.00327334 0.00327334 0.00327335 0.00327335 0.00327336 0.00327337 0.00327338 0.00327339 0.0032734 0.0032734 0.00327341 0.00327341
|
||||
0.00327274 0.00327276 0.00327278 0.00327279 0.00327281 0.00327283 0.00327285 0.00327289 0.00328326 0.0296621 0.0297086 0.0296606
|
||||
0.0032808 0.00327294 0.00327293 0.00327294 0.00327295 0.00327295 0.00327296 0.00327297 0.00327297 0.00327298 0.00327298 0.00327299
|
||||
0.00327299 0.00327234 0.00327235 0.00327237 0.00327239 0.00327241 0.00327243 0.00327245 0.00327248 0.00328227 0.0296214 0.0296563
|
||||
0.0296216 0.00327901 0.00327253 0.00327253 0.00327253 0.00327254 0.00327254 0.00327255 0.00327255 0.00327256 0.00327256 0.00327257
|
||||
0.00327257 0.00327257 0.00327193 0.00327195 0.00327196 0.00327198 0.003272 0.00327202 0.00327204 0.00327206 0.00327404 0.0032801
|
||||
0.00328135 0.00327948 0.00327408 0.00327212 0.00327212 0.00327212 0.00327212 0.00327213 0.00327213 0.00327214 0.00327214 0.00327215
|
||||
0.00327215 0.00327215 0.00327216 0.00327152 0.00327155 0.00327156 0.00327157 0.00327159 0.00327161 0.00327163 0.00327165 0.00327167
|
||||
0.00327169 0.0032717 0.00327171 0.0032717 0.0032717 0.00327171 0.00327171 0.00327171 0.00327172 0.00327172 0.00327173 0.00327173
|
||||
0.00327173 0.00327174 0.00327174 0.00327174 0.0032712 0.00327114 0.00327115 0.00327116 0.00327118 0.00327119 0.00327121 0.00327123
|
||||
0.00327125 0.00327127 0.00327128 0.00327129 0.00327129 0.00327129 0.00327129 0.0032713 0.0032713 0.0032713 0.00327131 0.00327131
|
||||
0.00327132 0.00327132 0.00327132 0.00327132 0.00327133
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259408 0.259405 0.259424 0.259423 0.259403 0.259423 0.259402 0.259422 0.259402 0.259421 0.259401 0.25942
|
||||
0.259401 0.25942 0.2594 0.259419 0.2594 0.259419 0.259399 0.259419 0.259399 0.259418 0.259398 0.259418
|
||||
0.259398 0.259417 0.259397 0.259416 0.259396 0.259415 0.259395 0.259414 0.259394 0.259413 0.259393 0.259412
|
||||
0.259393 0.259412 0.259392 0.259411 0.259391 0.25941 0.25939 0.259409 0.25939 0.259409 0.259389 0.25941
|
||||
0.25939 0.260291 0.259443 0.259442 0.259441 0.259441 0.25944 0.25944 0.259439 0.259439 0.259466 0.259522
|
||||
0.25955 0.259521 0.259464 0.259435 0.259434 0.259433 0.259433 0.259432 0.259431 0.25943 0.259429 0.259429
|
||||
0.25943 0.260295 0.542825 0.259462 0.259461 0.25946 0.25946 0.259459 0.259459 0.259458 0.259458 0.259542
|
||||
0.301834 0.301778 0.302455 0.259539 0.259454 0.259453 0.259453 0.259452 0.259451 0.25945 0.259449 0.259449
|
||||
0.259448 0.259455 0.262203 0.825231 0.259481 0.25948 0.259479 0.259479 0.259478 0.259477 0.259477 0.259477
|
||||
0.259707 0.301687 0.301555 0.302068 0.259586 0.259473 0.259472 0.259472 0.259471 0.25947 0.259469 0.259469
|
||||
0.259468 0.259467 0.259475 0.262427 0.825299 0.259499 0.259499 0.259498 0.259498 0.259497 0.259496 0.259496
|
||||
0.259495 0.259803 0.301807 0.301676 0.302096 0.259605 0.259492 0.259491 0.259491 0.25949 0.259489 0.259488
|
||||
0.259488 0.259487 0.259486 0.259493 0.262207 0.825368 0.259518 0.259518 0.259517 0.259516 0.259516 0.259515
|
||||
0.259514 0.259514 0.259876 0.301929 0.301798 0.302145 0.259624 0.259511 0.25951 0.25951 0.259509 0.259508
|
||||
0.259507 0.259507 0.259506 0.259505 0.259506 0.26034 0.54304 0.259537 0.259536 0.259536 0.259535 0.259534
|
||||
0.259534 0.259533 0.259533 0.259982 0.302051 0.301919 0.302176 0.259642 0.25953 0.259529 0.259528 0.259528
|
||||
0.259527 0.259526 0.259526 0.259525 0.259524 0.259524 0.259526 0.260513 0.259556 0.259555 0.259555 0.259554
|
||||
0.259554 0.259553 0.259552 0.259552 0.260193 0.302173 0.302041 0.302179 0.259699 0.259548 0.259548 0.259547
|
||||
0.259547 0.259546 0.259545 0.259545 0.259544 0.259543 0.259543 0.259543 0.259544 0.259525 0.259525 0.259524
|
||||
0.259524 0.259523 0.259522 0.259521 0.25952 0.259685 0.302241 0.302108 0.302238 0.259636 0.259518 0.259517
|
||||
0.259517 0.259516 0.259516 0.259515 0.259515 0.259514 0.259513 0.259513 0.259513 0.259513 0.259545 0.259544
|
||||
0.259543 0.259543 0.259542 0.259541 0.25954 0.259539 0.259687 0.302368 0.302236 0.302371 0.25965 0.259537
|
||||
0.259536 0.259536 0.259536 0.259535 0.259535 0.259534 0.259534 0.259533 0.259533 0.259533 0.259533 0.259564
|
||||
0.259563 0.259562 0.259562 0.259561 0.25956 0.259559 0.259558 0.259702 0.302495 0.302362 0.302499 0.259669
|
||||
0.259556 0.259555 0.259555 0.259555 0.259554 0.259554 0.259554 0.259553 0.259553 0.259553 0.259553 0.259553
|
||||
0.259583 0.259582 0.259581 0.259581 0.25958 0.259579 0.259578 0.259577 0.259725 0.30262 0.302488 0.302622
|
||||
0.259688 0.259575 0.259574 0.259574 0.259574 0.259574 0.259573 0.259573 0.259573 0.259573 0.259572 0.259572
|
||||
0.259572 0.259602 0.259601 0.2596 0.259599 0.259599 0.259598 0.259597 0.259596 0.259735 0.302843 0.302743
|
||||
0.302839 0.259687 0.259594 0.259593 0.259593 0.259593 0.259593 0.259593 0.259592 0.259592 0.259592 0.259592
|
||||
0.259592 0.259592 0.259621 0.25962 0.259619 0.259618 0.259618 0.259617 0.259616 0.259615 0.259642 0.259728
|
||||
0.259745 0.259718 0.259641 0.259613 0.259613 0.259612 0.259612 0.259612 0.259612 0.259612 0.259611 0.259611
|
||||
0.259611 0.259611 0.259611 0.259639 0.259638 0.259638 0.259637 0.259637 0.259636 0.259635 0.259634 0.259633
|
||||
0.259632 0.259632 0.259632 0.259632 0.259632 0.259632 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631
|
||||
0.25963 0.25963 0.25963 0.25963 0.259655 0.259657 0.259657 0.259657 0.259656 0.259655 0.259654 0.259654
|
||||
0.259653 0.259652 0.259651 0.259651 0.259651 0.259651 0.259651 0.259651 0.259651 0.25965 0.25965 0.25965
|
||||
0.25965 0.25965 0.25965 0.25965 0.259649
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="temperature" NumberOfComponents="1" format="ascii">
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.151 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.171 293.212
|
||||
293.233 293.212 293.171 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.151 293.654 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.212
|
||||
392.89 392.925 392.48 293.212 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.153 294.152 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.321 393.065 393.149 392.815 293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.153 294.152 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.378 393.066 393.15 392.876 293.233 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.152 294.152 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.151 293.418 393.066 393.15 392.923 293.233 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.151 293.654 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.151 293.482 393.066 393.15 392.983 293.233 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.151 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.151 293.623 393.066 393.15 393.059 293.261 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.273 393.066 393.15 393.066 293.238 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.26 393.066 393.15 393.062 293.233 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.257 393.066 393.15 393.061 293.233
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.26 393.066 393.15 393.062
|
||||
293.233 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.254 393.002 393.066
|
||||
393.002 293.219 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.171 293.235
|
||||
293.248 293.228 293.171 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15
|
||||
</DataArray>
|
||||
</PointData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
456
tests/referencesolutions/co2injection_ncp_ni_ecfv-heuristix.vtu
Normal file
456
tests/referencesolutions/co2injection_ncp_ni_ecfv-heuristix.vtu
Normal file
@ -0,0 +1,456 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<CellData Scalars="moleFrac_l^Brine">
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994978 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994975 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994975 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994979 0.989583
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994979
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00501886
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00502222 0.010417
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500008 0.00502532 0.0104171
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500007 0.00502509 0.0104172
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00502143 0.0104172
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500006 0.00502148
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327804 0.00327805 0.00327807 0.00327808 0.00327809 0.0032781 0.00327811 0.00327811 0.00327812 0.00327812 0.00327813 0.00327815
|
||||
0.00327817 0.00327819 0.00327821 0.00327823 0.00327825 0.00327827 0.00327829 0.00327831 0.00327832 0.00327834 0.00327835 0.00327836
|
||||
0.00327763 0.00327765 0.00327766 0.00327768 0.00327769 0.0032777 0.0032777 0.00327772 0.00328554 0.00328555 0.00328556 0.00328554
|
||||
0.00327777 0.00327778 0.0032778 0.00327783 0.00327784 0.00327786 0.00327788 0.0032779 0.00327792 0.00327794 0.00327795 0.00327799
|
||||
0.00327723 0.00327724 0.00327726 0.00327727 0.00327728 0.00327729 0.00327731 0.00328515 0.0296086 0.0296719 0.0296564 0.0293907
|
||||
0.00328516 0.00327738 0.0032774 0.00327742 0.00327744 0.00327746 0.00327748 0.00327749 0.00327751 0.00327753 0.00327758 0.00330726
|
||||
0.00327683 0.00327684 0.00327685 0.00327687 0.00327688 0.00327689 0.00327691 0.00329 0.0297171 0.0297639 0.0297637 0.0295788
|
||||
0.00328478 0.00327698 0.00327699 0.00327701 0.00327703 0.00327705 0.00327707 0.00327709 0.0032771 0.00327712 0.00327717 0.00330688
|
||||
0.00327642 0.00327644 0.00327645 0.00327646 0.00327648 0.00327649 0.00327653 0.0032952 0.0297119 0.0297583 0.0297582 0.0296027
|
||||
0.00328438 0.00327658 0.00327659 0.00327661 0.00327663 0.00327664 0.00327666 0.00327668 0.0032767 0.00327672 0.00327676 0.00330646
|
||||
0.00327602 0.00327603 0.00327604 0.00327606 0.00327607 0.00327609 0.00327614 0.00329846 0.0297062 0.0297526 0.0297525 0.02962
|
||||
0.00328399 0.00327618 0.00327619 0.0032762 0.00327622 0.00327624 0.00327625 0.00327627 0.00327628 0.0032763 0.00327635 0.00330601
|
||||
0.00327561 0.00327562 0.00327564 0.00327565 0.00327567 0.00327569 0.00327575 0.0033018 0.0297004 0.0297468 0.0297467 0.0296374
|
||||
0.00328359 0.00327578 0.00327578 0.0032758 0.00327581 0.00327583 0.00327584 0.00327586 0.00327587 0.00327589 0.0032759 0.00327594
|
||||
0.0032752 0.00327522 0.00327523 0.00327525 0.00327527 0.00327529 0.00327537 0.00330719 0.0296946 0.029741 0.029741 0.0296605
|
||||
0.00328321 0.00327537 0.00327538 0.00327539 0.0032754 0.00327542 0.00327543 0.00327544 0.00327546 0.00327547 0.00327548 0.00327549
|
||||
0.0032748 0.00327481 0.00327483 0.00327484 0.00327486 0.00327488 0.00327501 0.00332147 0.0296889 0.0297352 0.0297353 0.0296889
|
||||
0.00328864 0.00327497 0.00327497 0.00327498 0.003275 0.00327501 0.00327502 0.00327503 0.00327505 0.00327506 0.00327507 0.00327507
|
||||
0.00327377 0.00327378 0.00327379 0.00327381 0.00327383 0.00327385 0.00327389 0.0032857 0.0296771 0.0297236 0.0297237 0.0296773
|
||||
0.00328265 0.00327394 0.00327394 0.00327395 0.00327396 0.00327397 0.00327398 0.00327399 0.00327401 0.00327401 0.00327402 0.00327403
|
||||
0.00327336 0.00327338 0.00327339 0.00327341 0.00327343 0.00327346 0.00327349 0.00328409 0.0296711 0.0297176 0.0297177 0.0296707
|
||||
0.00328141 0.00327354 0.00327354 0.00327355 0.00327356 0.00327356 0.00327357 0.00327358 0.00327359 0.0032736 0.0032736 0.00327361
|
||||
0.00327296 0.00327297 0.00327299 0.00327301 0.00327303 0.00327306 0.00327309 0.0032835 0.0296651 0.0297117 0.0297117 0.0296644
|
||||
0.00328101 0.00327314 0.00327314 0.00327314 0.00327315 0.00327316 0.00327316 0.00327317 0.00327318 0.00327318 0.00327318 0.00327319
|
||||
0.00327255 0.00327257 0.00327259 0.00327261 0.00327263 0.00327265 0.00327269 0.00328341 0.0296592 0.0297057 0.0297058 0.0296593
|
||||
0.00328065 0.00327274 0.00327274 0.00327274 0.00327274 0.00327275 0.00327275 0.00327276 0.00327276 0.00327277 0.00327277 0.00327277
|
||||
0.00327214 0.00327216 0.00327218 0.0032722 0.00327222 0.00327225 0.00327228 0.0032844 0.029607 0.0296534 0.0296535 0.0296072
|
||||
0.00328135 0.00327234 0.00327233 0.00327233 0.00327233 0.00327234 0.00327234 0.00327234 0.00327235 0.00327235 0.00327235 0.00327235
|
||||
0.00327173 0.00327175 0.00327177 0.00327179 0.00327181 0.00327184 0.00327186 0.0032719 0.0032816 0.00328096 0.00328083 0.00328101
|
||||
0.00327194 0.00327192 0.00327192 0.00327192 0.00327192 0.00327192 0.00327193 0.00327193 0.00327193 0.00327194 0.00327194 0.00327194
|
||||
0.00327132 0.00327134 0.00327136 0.00327138 0.0032714 0.00327142 0.00327145 0.00327147 0.0032715 0.00327151 0.00327152 0.00327152
|
||||
0.00327151 0.00327151 0.00327151 0.00327151 0.00327151 0.00327151 0.00327151 0.00327152 0.00327152 0.00327152 0.00327152 0.00327152
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259413 0.259413 0.259412 0.259411 0.259411 0.259411 0.25941 0.25941 0.25941 0.25941 0.259409 0.259409
|
||||
0.259408 0.259407 0.259406 0.259405 0.259404 0.259403 0.259402 0.259402 0.259401 0.2594 0.2594 0.2594
|
||||
0.259432 0.259432 0.259431 0.259431 0.25943 0.25943 0.259429 0.259429 0.259541 0.259541 0.259541 0.25954
|
||||
0.259427 0.259426 0.259425 0.259424 0.259423 0.259422 0.259422 0.259421 0.25942 0.259419 0.259421 0.260398
|
||||
0.259452 0.259451 0.25945 0.25945 0.259449 0.259449 0.259449 0.25956 0.301829 0.30165 0.301692 0.302435
|
||||
0.259558 0.259445 0.259444 0.259443 0.259442 0.259442 0.259441 0.25944 0.259439 0.259442 0.260592 0.541934
|
||||
0.25947 0.25947 0.259469 0.259469 0.259468 0.259468 0.259467 0.259654 0.301628 0.301495 0.301495 0.302014
|
||||
0.259577 0.259464 0.259463 0.259462 0.259462 0.259461 0.25946 0.259459 0.259458 0.259462 0.260772 0.541978
|
||||
0.259489 0.259489 0.259488 0.259488 0.259487 0.259486 0.259486 0.259753 0.301748 0.301616 0.301616 0.302052
|
||||
0.259596 0.259483 0.259482 0.259481 0.259481 0.25948 0.259479 0.259478 0.259478 0.259481 0.260779 0.542021
|
||||
0.259508 0.259508 0.259507 0.259506 0.259506 0.259505 0.259505 0.259824 0.30187 0.301738 0.301737 0.302109
|
||||
0.259614 0.259502 0.259501 0.2595 0.2595 0.259499 0.259498 0.259497 0.259497 0.259499 0.260608 0.542065
|
||||
0.259527 0.259526 0.259526 0.259525 0.259524 0.259524 0.259524 0.259896 0.301992 0.30186 0.301859 0.302165
|
||||
0.259633 0.25952 0.25952 0.259519 0.259518 0.259518 0.259517 0.259517 0.259516 0.259515 0.259518 0.26063
|
||||
0.259546 0.259545 0.259545 0.259544 0.259543 0.259542 0.259542 0.259998 0.302113 0.301981 0.30198 0.302206
|
||||
0.259652 0.259539 0.259538 0.259538 0.259537 0.259537 0.259536 0.259536 0.259535 0.259534 0.259534 0.259536
|
||||
0.259565 0.259565 0.259564 0.259563 0.259562 0.259562 0.259562 0.260227 0.302236 0.302104 0.302102 0.302232
|
||||
0.259754 0.259558 0.259557 0.259557 0.259557 0.259556 0.259555 0.259555 0.259554 0.259554 0.259553 0.259553
|
||||
0.259535 0.259534 0.259533 0.259533 0.259532 0.259531 0.25953 0.259698 0.302304 0.302171 0.302169 0.302299
|
||||
0.259652 0.259527 0.259527 0.259527 0.259526 0.259526 0.259525 0.259525 0.259524 0.259524 0.259524 0.259523
|
||||
0.259554 0.259553 0.259552 0.259551 0.259551 0.25955 0.259549 0.259699 0.30243 0.302297 0.302296 0.302428
|
||||
0.259659 0.259546 0.259546 0.259546 0.259545 0.259545 0.259545 0.259544 0.259544 0.259544 0.259543 0.259543
|
||||
0.259573 0.259572 0.259571 0.25957 0.259569 0.259568 0.259567 0.259716 0.302556 0.302423 0.302422 0.302554
|
||||
0.259678 0.259565 0.259565 0.259565 0.259564 0.259564 0.259564 0.259564 0.259563 0.259563 0.259563 0.259563
|
||||
0.259592 0.259591 0.25959 0.259589 0.259588 0.259587 0.259586 0.259739 0.302681 0.302548 0.302547 0.302677
|
||||
0.259698 0.259584 0.259584 0.259584 0.259584 0.259583 0.259583 0.259583 0.259583 0.259583 0.259582 0.259582
|
||||
0.259611 0.25961 0.259609 0.259608 0.259607 0.259606 0.259605 0.259778 0.302936 0.302803 0.302801 0.302931
|
||||
0.259732 0.259603 0.259603 0.259603 0.259603 0.259602 0.259602 0.259602 0.259602 0.259602 0.259602 0.259602
|
||||
0.25963 0.259629 0.259628 0.259627 0.259626 0.259625 0.259624 0.259623 0.259761 0.259751 0.259749 0.259752
|
||||
0.259622 0.259622 0.259622 0.259622 0.259622 0.259622 0.259621 0.259621 0.259621 0.259621 0.259621 0.259621
|
||||
0.259649 0.259648 0.259647 0.259646 0.259645 0.259644 0.259643 0.259642 0.259641 0.259641 0.25964 0.25964
|
||||
0.259641 0.259641 0.259641 0.259641 0.259641 0.259641 0.25964 0.25964 0.25964 0.25964 0.25964 0.25964
|
||||
</DataArray>
|
||||
</CellData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
472
tests/referencesolutions/co2injection_ncp_ni_vcfv-heuristix.vtu
Normal file
472
tests/referencesolutions/co2injection_ncp_ni_vcfv-heuristix.vtu
Normal file
@ -0,0 +1,472 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="moleFrac_l^Brine">
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.989565 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.994947 0.984179 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.994943 0.984179 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.994948 0.984179 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.994984 0.989564 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.00500002 0.00501701 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.00500004 0.00501671 0.0104346 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.00500016 0.00505307 0.0158208 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.00500018 0.00505701 0.0158209 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.00500015 0.0050524 0.0158211 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.00500004 0.0050161 0.0104355 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.00500004 0.00501904 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327816 0.00327823 0.00327782 0.00327783 0.00327825 0.00327785 0.00327827 0.00327787 0.00327829 0.00327788 0.0032783 0.0032779
|
||||
0.00327832 0.00327791 0.00327833 0.00327792 0.00327833 0.00327793 0.00327834 0.00327794 0.00327835 0.00327795 0.00327837 0.00327796
|
||||
0.00327839 0.00327798 0.00327841 0.003278 0.00327843 0.00327802 0.00327845 0.00327804 0.00327847 0.00327806 0.00327849 0.00327808
|
||||
0.0032785 0.0032781 0.00327852 0.00327812 0.00327854 0.00327813 0.00327856 0.00327815 0.00327857 0.00327817 0.00327858 0.00327819
|
||||
0.00327859 0.0032782 0.00327742 0.00327743 0.00327745 0.00327746 0.00327748 0.00327749 0.0032775 0.00327752 0.00327948 0.0032834
|
||||
0.00328536 0.00328341 0.00327952 0.00327759 0.00327761 0.00327763 0.00327765 0.00327767 0.00327769 0.00327771 0.00327773 0.00327774
|
||||
0.00327776 0.0032778 0.00330749 0.00327702 0.00327703 0.00327705 0.00327706 0.00327708 0.00327709 0.0032771 0.00327712 0.00328301
|
||||
0.0296245 0.0296442 0.0294027 0.00328302 0.00327719 0.00327721 0.00327723 0.00327725 0.00327726 0.00327728 0.0032773 0.00327732
|
||||
0.00327734 0.00327736 0.00327742 0.00333647 0.00327662 0.00327663 0.00327664 0.00327666 0.00327667 0.00327669 0.0032767 0.00327673
|
||||
0.00329281 0.0297146 0.0297609 0.0295785 0.00328458 0.00327679 0.0032768 0.00327682 0.00327684 0.00327686 0.00327688 0.00327689
|
||||
0.00327691 0.00327693 0.00327695 0.00327702 0.00333606 0.00327621 0.00327622 0.00327624 0.00327625 0.00327627 0.00327628 0.0032763
|
||||
0.00327634 0.00329786 0.0297092 0.0297554 0.0296059 0.00328419 0.00327638 0.0032764 0.00327642 0.00327643 0.00327645 0.00327647
|
||||
0.00327648 0.0032765 0.00327652 0.00327654 0.0032766 0.00333562 0.00327581 0.00327582 0.00327583 0.00327585 0.00327586 0.00327588
|
||||
0.0032759 0.00327596 0.00330127 0.0297034 0.0297496 0.0296258 0.0032838 0.00327598 0.00327599 0.00327601 0.00327602 0.00327604
|
||||
0.00327606 0.00327607 0.00327609 0.00327611 0.00327612 0.00327617 0.00330582 0.0032754 0.00327541 0.00327543 0.00327544 0.00327546
|
||||
0.00327547 0.00327549 0.00327558 0.00330701 0.0296976 0.0297439 0.0296524 0.00328341 0.00327558 0.00327559 0.0032756 0.00327562
|
||||
0.00327563 0.00327565 0.00327566 0.00327568 0.00327569 0.00327571 0.00327573 0.00327574 0.003275 0.00327501 0.00327502 0.00327503
|
||||
0.00327505 0.00327507 0.00327509 0.00327521 0.00332004 0.0296918 0.0297382 0.0296885 0.00328567 0.00327518 0.00327518 0.00327519
|
||||
0.00327521 0.00327522 0.00327524 0.00327525 0.00327527 0.00327528 0.00327529 0.0032753 0.00327531 0.00327396 0.00327397 0.00327399
|
||||
0.003274 0.00327402 0.00327404 0.00327406 0.0032741 0.00328569 0.0296801 0.0297266 0.0296803 0.00328239 0.00327415 0.00327415
|
||||
0.00327416 0.00327417 0.00327419 0.0032742 0.00327421 0.00327423 0.00327424 0.00327425 0.00327425 0.00327426 0.00327356 0.00327357
|
||||
0.00327359 0.0032736 0.00327362 0.00327364 0.00327366 0.00327369 0.00328413 0.0296741 0.0297206 0.0296723 0.0032816 0.00327375
|
||||
0.00327375 0.00327376 0.00327377 0.00327378 0.00327379 0.0032738 0.00327381 0.00327382 0.00327383 0.00327383 0.00327383 0.00327315
|
||||
0.00327317 0.00327318 0.0032732 0.00327322 0.00327324 0.00327326 0.00327329 0.00328343 0.0296681 0.0297146 0.0296656 0.00328119
|
||||
0.00327334 0.00327335 0.00327335 0.00327336 0.00327337 0.00327338 0.00327339 0.00327339 0.0032734 0.00327341 0.00327341 0.00327341
|
||||
0.00327275 0.00327276 0.00327278 0.0032728 0.00327282 0.00327284 0.00327286 0.00327289 0.00328327 0.0296621 0.0297086 0.0296606
|
||||
0.0032808 0.00327294 0.00327294 0.00327294 0.00327295 0.00327296 0.00327296 0.00327297 0.00327298 0.00327298 0.00327299 0.00327299
|
||||
0.00327299 0.00327234 0.00327236 0.00327237 0.00327239 0.00327241 0.00327243 0.00327245 0.00327248 0.00328229 0.0296215 0.0296563
|
||||
0.0296216 0.00327901 0.00327253 0.00327253 0.00327254 0.00327254 0.00327255 0.00327255 0.00327256 0.00327256 0.00327257 0.00327257
|
||||
0.00327258 0.00327258 0.00327193 0.00327195 0.00327197 0.00327198 0.003272 0.00327202 0.00327204 0.00327207 0.00327405 0.00328011
|
||||
0.00328136 0.00327949 0.00327408 0.00327212 0.00327212 0.00327213 0.00327213 0.00327213 0.00327214 0.00327214 0.00327215 0.00327215
|
||||
0.00327216 0.00327216 0.00327216 0.00327153 0.00327155 0.00327156 0.00327157 0.00327159 0.00327161 0.00327163 0.00327165 0.00327167
|
||||
0.00327169 0.00327171 0.00327171 0.00327171 0.00327171 0.00327171 0.00327171 0.00327172 0.00327172 0.00327173 0.00327173 0.00327174
|
||||
0.00327174 0.00327174 0.00327174 0.00327174 0.00327118 0.00327115 0.00327115 0.00327116 0.00327118 0.0032712 0.00327122 0.00327124
|
||||
0.00327126 0.00327127 0.00327128 0.00327129 0.00327129 0.0032713 0.0032713 0.0032713 0.0032713 0.00327131 0.00327131 0.00327132
|
||||
0.00327132 0.00327133 0.00327133 0.00327133 0.00327133
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259407 0.259404 0.259424 0.259423 0.259403 0.259422 0.259402 0.259421 0.259401 0.259421 0.259401 0.25942
|
||||
0.2594 0.25942 0.2594 0.259419 0.2594 0.259419 0.259399 0.259419 0.259399 0.259418 0.259398 0.259418
|
||||
0.259397 0.259417 0.259397 0.259416 0.259396 0.259415 0.259395 0.259414 0.259394 0.259413 0.259393 0.259412
|
||||
0.259392 0.259411 0.259392 0.259411 0.259391 0.25941 0.25939 0.259409 0.25939 0.259408 0.259389 0.25941
|
||||
0.25939 0.260291 0.259443 0.259442 0.259441 0.259441 0.25944 0.259439 0.259439 0.259438 0.259466 0.259522
|
||||
0.25955 0.259521 0.259464 0.259435 0.259434 0.259433 0.259432 0.259432 0.259431 0.25943 0.259429 0.259428
|
||||
0.25943 0.260295 0.542824 0.259461 0.259461 0.25946 0.25946 0.259459 0.259458 0.259458 0.259457 0.259541
|
||||
0.301834 0.301777 0.302453 0.259539 0.259454 0.259453 0.259452 0.259452 0.259451 0.25945 0.259449 0.259448
|
||||
0.259448 0.259455 0.262202 0.82523 0.25948 0.25948 0.259479 0.259479 0.259478 0.259477 0.259477 0.259476
|
||||
0.259706 0.301685 0.301554 0.302066 0.259586 0.259473 0.259472 0.259471 0.259471 0.25947 0.259469 0.259468
|
||||
0.259468 0.259467 0.259475 0.262426 0.825299 0.259499 0.259499 0.259498 0.259497 0.259497 0.259496 0.259495
|
||||
0.259495 0.259803 0.301806 0.301675 0.302094 0.259605 0.259492 0.259491 0.25949 0.25949 0.259489 0.259488
|
||||
0.259487 0.259487 0.259486 0.259493 0.262206 0.825367 0.259518 0.259517 0.259517 0.259516 0.259516 0.259515
|
||||
0.259514 0.259514 0.259876 0.301928 0.301797 0.302144 0.259623 0.259511 0.25951 0.259509 0.259509 0.259508
|
||||
0.259507 0.259507 0.259506 0.259505 0.259506 0.26034 0.54304 0.259537 0.259536 0.259536 0.259535 0.259534
|
||||
0.259534 0.259533 0.259533 0.259983 0.30205 0.301918 0.302175 0.259642 0.259529 0.259529 0.259528 0.259528
|
||||
0.259527 0.259526 0.259526 0.259525 0.259524 0.259524 0.259525 0.260513 0.259556 0.259555 0.259555 0.259554
|
||||
0.259553 0.259553 0.259552 0.259552 0.260193 0.302172 0.302039 0.302178 0.259699 0.259548 0.259548 0.259547
|
||||
0.259546 0.259546 0.259545 0.259544 0.259544 0.259543 0.259543 0.259542 0.259543 0.259525 0.259525 0.259524
|
||||
0.259524 0.259523 0.259522 0.259521 0.25952 0.259685 0.30224 0.302107 0.302236 0.259636 0.259518 0.259517
|
||||
0.259517 0.259516 0.259516 0.259515 0.259514 0.259514 0.259513 0.259513 0.259513 0.259512 0.259544 0.259544
|
||||
0.259543 0.259542 0.259542 0.259541 0.25954 0.259539 0.259687 0.302367 0.302235 0.30237 0.25965 0.259537
|
||||
0.259536 0.259536 0.259535 0.259535 0.259534 0.259534 0.259534 0.259533 0.259533 0.259533 0.259532 0.259564
|
||||
0.259563 0.259562 0.259561 0.259561 0.25956 0.259559 0.259558 0.259702 0.302493 0.302361 0.302498 0.259669
|
||||
0.259555 0.259555 0.259555 0.259555 0.259554 0.259554 0.259553 0.259553 0.259553 0.259553 0.259552 0.259552
|
||||
0.259583 0.259582 0.259581 0.25958 0.25958 0.259579 0.259578 0.259577 0.259725 0.302619 0.302487 0.302621
|
||||
0.259688 0.259574 0.259574 0.259574 0.259574 0.259573 0.259573 0.259573 0.259573 0.259572 0.259572 0.259572
|
||||
0.259572 0.259602 0.259601 0.2596 0.259599 0.259599 0.259598 0.259597 0.259596 0.259735 0.302842 0.302741
|
||||
0.302838 0.259687 0.259593 0.259593 0.259593 0.259593 0.259593 0.259592 0.259592 0.259592 0.259592 0.259592
|
||||
0.259591 0.259591 0.25962 0.25962 0.259619 0.259618 0.259617 0.259617 0.259616 0.259615 0.259642 0.259728
|
||||
0.259745 0.259718 0.259641 0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259611 0.259611 0.259611
|
||||
0.259611 0.259611 0.259611 0.259639 0.259638 0.259638 0.259637 0.259636 0.259636 0.259635 0.259634 0.259633
|
||||
0.259632 0.259632 0.259632 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.25963
|
||||
0.25963 0.25963 0.25963 0.25963 0.259656 0.259657 0.259657 0.259657 0.259656 0.259655 0.259654 0.259653
|
||||
0.259653 0.259652 0.259651 0.259651 0.259651 0.259651 0.259651 0.259651 0.25965 0.25965 0.25965 0.25965
|
||||
0.25965 0.25965 0.259649 0.259649 0.259649
|
||||
</DataArray>
|
||||
</PointData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
472
tests/referencesolutions/co2injection_ncp_vcfv-heuristix.vtu
Normal file
472
tests/referencesolutions/co2injection_ncp_vcfv-heuristix.vtu
Normal file
@ -0,0 +1,472 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="moleFrac_l^Brine">
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.989566 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.994947 0.984181 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.994943 0.984181 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.994948 0.984181 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.994984 0.989565 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.00500002 0.00501691 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.00500004 0.00501663 0.010434 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.00500016 0.0050528 0.0158191 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.00500018 0.00505676 0.0158192 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.00500015 0.00505211 0.0158193 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.00500004 0.00501599 0.0104349 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.00500004 0.00501887 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327817 0.00327823 0.00327782 0.00327783 0.00327825 0.00327785 0.00327827 0.00327787 0.00327829 0.00327788 0.0032783 0.0032779
|
||||
0.00327831 0.00327791 0.00327832 0.00327792 0.00327833 0.00327793 0.00327834 0.00327793 0.00327835 0.00327794 0.00327837 0.00327796
|
||||
0.00327838 0.00327797 0.0032784 0.00327799 0.00327842 0.00327801 0.00327844 0.00327803 0.00327846 0.00327805 0.00327848 0.00327807
|
||||
0.00327849 0.00327809 0.00327851 0.0032781 0.00327853 0.00327812 0.00327854 0.00327813 0.00327856 0.00327815 0.00327857 0.00327816
|
||||
0.00327857 0.00327811 0.00327742 0.00327743 0.00327745 0.00327746 0.00327748 0.00327749 0.0032775 0.00327751 0.00327752 0.00327752
|
||||
0.00327753 0.00327754 0.00327757 0.00327759 0.00327761 0.00327763 0.00327764 0.00327766 0.00327768 0.0032777 0.00327771 0.00327773
|
||||
0.00327775 0.00327771 0.00325988 0.00327702 0.00327703 0.00327705 0.00327706 0.00327707 0.00327709 0.0032771 0.00327711 0.00327712
|
||||
0.0297671 0.0297671 0.0297672 0.00327716 0.00327718 0.0032772 0.00327722 0.00327724 0.00327725 0.00327727 0.00327729 0.00327731
|
||||
0.00327732 0.00327734 0.00327719 0.00324176 0.00327662 0.00327663 0.00327664 0.00327666 0.00327667 0.00327668 0.0032767 0.00327671
|
||||
0.00327672 0.0297613 0.0297614 0.0297614 0.00327676 0.00327678 0.0032768 0.00327681 0.00327683 0.00327685 0.00327686 0.00327688
|
||||
0.0032769 0.00327692 0.00327693 0.00327677 0.00324136 0.00327621 0.00327622 0.00327624 0.00327625 0.00327627 0.00327628 0.0032763
|
||||
0.00327631 0.00327633 0.0297555 0.0297556 0.0297556 0.00327636 0.00327638 0.00327639 0.00327641 0.00327642 0.00327644 0.00327646
|
||||
0.00327647 0.00327649 0.00327651 0.00327652 0.00327637 0.00324095 0.00327581 0.00327582 0.00327583 0.00327585 0.00327586 0.00327588
|
||||
0.0032759 0.00327591 0.00327593 0.0297497 0.0297497 0.0297498 0.00327596 0.00327597 0.00327599 0.003276 0.00327602 0.00327603
|
||||
0.00327605 0.00327606 0.00327608 0.00327609 0.00327611 0.00327607 0.00325825 0.0032754 0.00327541 0.00327543 0.00327544 0.00327546
|
||||
0.00327547 0.00327549 0.00327551 0.00327554 0.0297438 0.0297439 0.029744 0.00327556 0.00327557 0.00327558 0.00327559 0.00327561
|
||||
0.00327562 0.00327564 0.00327565 0.00327567 0.00327568 0.00327569 0.0032757 0.00327565 0.00327499 0.00327501 0.00327502 0.00327503
|
||||
0.00327505 0.00327507 0.00327509 0.00327511 0.00327514 0.029738 0.0297381 0.0297382 0.00327516 0.00327517 0.00327517 0.00327519
|
||||
0.0032752 0.00327521 0.00327523 0.00327524 0.00327525 0.00327527 0.00327528 0.00327529 0.00327529 0.00327396 0.00327397 0.00327399
|
||||
0.003274 0.00327402 0.00327404 0.00327406 0.00327408 0.00327411 0.0297264 0.0297265 0.0297266 0.00327413 0.00327414 0.00327414
|
||||
0.00327415 0.00327417 0.00327418 0.00327419 0.0032742 0.00327421 0.00327423 0.00327424 0.00327424 0.00327424 0.00327356 0.00327357
|
||||
0.00327359 0.0032736 0.00327362 0.00327364 0.00327366 0.00327368 0.00327371 0.0297204 0.0297205 0.0297206 0.00327373 0.00327374
|
||||
0.00327374 0.00327375 0.00327376 0.00327377 0.00327378 0.00327379 0.0032738 0.00327381 0.00327381 0.00327382 0.00327382 0.00327315
|
||||
0.00327317 0.00327318 0.0032732 0.00327322 0.00327324 0.00327326 0.00327328 0.00327331 0.0297145 0.0297145 0.0297146 0.00327333
|
||||
0.00327334 0.00327334 0.00327335 0.00327335 0.00327336 0.00327337 0.00327338 0.00327338 0.00327339 0.0032734 0.0032734 0.0032734
|
||||
0.00327275 0.00327276 0.00327278 0.0032728 0.00327281 0.00327283 0.00327286 0.00327288 0.00327291 0.0297085 0.0297086 0.0297087
|
||||
0.00327293 0.00327293 0.00327293 0.00327294 0.00327294 0.00327295 0.00327296 0.00327296 0.00327297 0.00327298 0.00327298 0.00327298
|
||||
0.00327298 0.00327234 0.00327236 0.00327237 0.00327239 0.00327241 0.00327243 0.00327245 0.00327247 0.0032725 0.0297026 0.0297027
|
||||
0.0297027 0.00327253 0.00327252 0.00327253 0.00327253 0.00327253 0.00327254 0.00327255 0.00327255 0.00327256 0.00327256 0.00327256
|
||||
0.00327257 0.00327257 0.00327193 0.00327195 0.00327197 0.00327198 0.003272 0.00327202 0.00327204 0.00327206 0.00327208 0.00327211
|
||||
0.00327212 0.00327212 0.00327212 0.00327212 0.00327212 0.00327212 0.00327212 0.00327213 0.00327213 0.00327214 0.00327214 0.00327215
|
||||
0.00327215 0.00327215 0.00327215 0.00327153 0.00327155 0.00327156 0.00327157 0.00327159 0.00327161 0.00327163 0.00327165 0.00327167
|
||||
0.00327169 0.0032717 0.0032717 0.0032717 0.0032717 0.00327171 0.00327171 0.00327171 0.00327172 0.00327172 0.00327172 0.00327173
|
||||
0.00327173 0.00327173 0.00327174 0.00327174 0.00327118 0.00327114 0.00327115 0.00327116 0.00327118 0.0032712 0.00327122 0.00327124
|
||||
0.00327125 0.00327127 0.00327128 0.00327129 0.00327129 0.00327129 0.00327129 0.00327129 0.0032713 0.0032713 0.00327131 0.00327131
|
||||
0.00327131 0.00327132 0.00327132 0.00327132 0.00327132
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259407 0.259404 0.259424 0.259423 0.259403 0.259422 0.259402 0.259421 0.259401 0.259421 0.259401 0.25942
|
||||
0.2594 0.259419 0.2594 0.259419 0.259399 0.259419 0.259399 0.259418 0.259398 0.259418 0.259398 0.259417
|
||||
0.259397 0.259416 0.259396 0.259415 0.259395 0.259414 0.259394 0.259413 0.259394 0.259413 0.259393 0.259412
|
||||
0.259392 0.259411 0.259391 0.25941 0.25939 0.259409 0.25939 0.259409 0.259389 0.259408 0.259389 0.259409
|
||||
0.259389 0.260285 0.259442 0.259442 0.259441 0.25944 0.25944 0.259439 0.259439 0.259438 0.259438 0.259438
|
||||
0.259437 0.259437 0.259436 0.259435 0.259434 0.259433 0.259432 0.259431 0.25943 0.259429 0.259429 0.259428
|
||||
0.259429 0.260289 0.541371 0.259461 0.259461 0.25946 0.259459 0.259459 0.259458 0.259458 0.259457 0.259457
|
||||
0.30143 0.301429 0.301427 0.259455 0.259454 0.259453 0.259452 0.259451 0.25945 0.259449 0.259449 0.259448
|
||||
0.259447 0.259454 0.262185 0.820831 0.25948 0.25948 0.259479 0.259478 0.259478 0.259477 0.259476 0.259476
|
||||
0.259475 0.301552 0.301551 0.301549 0.259474 0.259473 0.259472 0.259471 0.25947 0.259469 0.259469 0.259468
|
||||
0.259467 0.259466 0.259475 0.26241 0.820897 0.259499 0.259499 0.259498 0.259497 0.259497 0.259496 0.259495
|
||||
0.259494 0.259494 0.301674 0.301673 0.301671 0.259492 0.259491 0.259491 0.25949 0.259489 0.259488 0.259488
|
||||
0.259487 0.259486 0.259485 0.259492 0.262188 0.820964 0.259518 0.259517 0.259517 0.259516 0.259515 0.259515
|
||||
0.259514 0.259513 0.259512 0.301796 0.301795 0.301793 0.259511 0.25951 0.25951 0.259509 0.259508 0.259507
|
||||
0.259507 0.259506 0.259505 0.259505 0.259506 0.260333 0.541577 0.259537 0.259536 0.259535 0.259535 0.259534
|
||||
0.259533 0.259532 0.259531 0.25953 0.301918 0.301916 0.301915 0.259529 0.259529 0.259528 0.259528 0.259527
|
||||
0.259526 0.259526 0.259525 0.259524 0.259524 0.259523 0.259525 0.260502 0.259556 0.259555 0.259555 0.259554
|
||||
0.259553 0.259552 0.259551 0.25955 0.259549 0.30204 0.302038 0.302036 0.259548 0.259548 0.259547 0.259547
|
||||
0.259546 0.259545 0.259545 0.259544 0.259543 0.259543 0.259542 0.259542 0.259543 0.259525 0.259525 0.259524
|
||||
0.259523 0.259523 0.259522 0.259521 0.25952 0.259518 0.302108 0.302105 0.302104 0.259517 0.259517 0.259517
|
||||
0.259516 0.259516 0.259515 0.259515 0.259514 0.259513 0.259513 0.259512 0.259512 0.259512 0.259544 0.259544
|
||||
0.259543 0.259542 0.259542 0.259541 0.25954 0.259538 0.259537 0.302235 0.302233 0.302232 0.259536 0.259536
|
||||
0.259536 0.259535 0.259535 0.259534 0.259534 0.259533 0.259533 0.259533 0.259532 0.259532 0.259532 0.259564
|
||||
0.259563 0.259562 0.259561 0.25956 0.259559 0.259558 0.259557 0.259556 0.302361 0.302359 0.302358 0.259555
|
||||
0.259555 0.259555 0.259554 0.259554 0.259554 0.259553 0.259553 0.259553 0.259552 0.259552 0.259552 0.259552
|
||||
0.259583 0.259582 0.259581 0.25958 0.259579 0.259578 0.259577 0.259576 0.259575 0.302487 0.302484 0.302483
|
||||
0.259574 0.259574 0.259574 0.259574 0.259573 0.259573 0.259573 0.259572 0.259572 0.259572 0.259572 0.259571
|
||||
0.259571 0.259601 0.259601 0.2596 0.259599 0.259598 0.259597 0.259596 0.259595 0.259594 0.302611 0.302609
|
||||
0.302608 0.259593 0.259593 0.259593 0.259593 0.259592 0.259592 0.259592 0.259592 0.259591 0.259591 0.259591
|
||||
0.259591 0.259591 0.25962 0.259619 0.259619 0.259618 0.259617 0.259616 0.259615 0.259614 0.259613 0.259612
|
||||
0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259611 0.259611 0.259611 0.259611 0.259611
|
||||
0.25961 0.25961 0.25961 0.259639 0.259638 0.259638 0.259637 0.259636 0.259635 0.259634 0.259633 0.259633
|
||||
0.259632 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.25963 0.25963 0.25963 0.25963
|
||||
0.25963 0.25963 0.259629 0.259629 0.259656 0.259657 0.259657 0.259656 0.259656 0.259655 0.259654 0.259653
|
||||
0.259652 0.259651 0.259651 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965 0.259649
|
||||
0.259649 0.259649 0.259649 0.259649 0.259649
|
||||
</DataArray>
|
||||
</PointData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
@ -1,852 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<PointData Scalars="pressure_l">
|
||||
<DataArray type="Float32" Name="pressure_l" NumberOfComponents="1" format="ascii">
|
||||
2.63166e+07 2.63216e+07 2.62952e+07 2.62956e+07 2.63234e+07 2.6297e+07 2.63246e+07 2.62982e+07 2.63257e+07 2.62992e+07 2.63266e+07 2.63001e+07
|
||||
2.63273e+07 2.63008e+07 2.6328e+07 2.63015e+07 2.63285e+07 2.6302e+07 2.63291e+07 2.63025e+07 2.63298e+07 2.63031e+07 2.63307e+07 2.6304e+07
|
||||
2.63318e+07 2.63052e+07 2.6333e+07 2.63065e+07 2.63343e+07 2.63078e+07 2.63355e+07 2.6309e+07 2.63367e+07 2.63102e+07 2.63379e+07 2.63113e+07
|
||||
2.6339e+07 2.63124e+07 2.63401e+07 2.63136e+07 2.63412e+07 2.63146e+07 2.63422e+07 2.63157e+07 2.63431e+07 2.63167e+07 2.63438e+07 2.63175e+07
|
||||
2.63441e+07 2.63178e+07 2.62692e+07 2.62699e+07 2.62709e+07 2.62719e+07 2.62729e+07 2.62737e+07 2.62745e+07 2.62751e+07 2.62756e+07 2.62757e+07
|
||||
2.62761e+07 2.6277e+07 2.62786e+07 2.628e+07 2.62813e+07 2.62825e+07 2.62837e+07 2.62848e+07 2.62859e+07 2.6287e+07 2.62881e+07 2.62892e+07
|
||||
2.62904e+07 2.62915e+07 2.62926e+07 2.6243e+07 2.62438e+07 2.62447e+07 2.62457e+07 2.62466e+07 2.62475e+07 2.62483e+07 2.6249e+07 2.62494e+07
|
||||
2.62493e+07 2.62496e+07 2.625e+07 2.62521e+07 2.62536e+07 2.62549e+07 2.62561e+07 2.62572e+07 2.62583e+07 2.62594e+07 2.62605e+07 2.62616e+07
|
||||
2.62628e+07 2.6264e+07 2.62655e+07 2.62674e+07 2.62168e+07 2.62177e+07 2.62185e+07 2.62195e+07 2.62204e+07 2.62213e+07 2.62222e+07 2.6223e+07
|
||||
2.62237e+07 2.62239e+07 2.62242e+07 2.62246e+07 2.6226e+07 2.62274e+07 2.62286e+07 2.62297e+07 2.62308e+07 2.62319e+07 2.62329e+07 2.6234e+07
|
||||
2.62351e+07 2.62363e+07 2.62375e+07 2.62391e+07 2.62411e+07 2.61906e+07 2.61914e+07 2.61923e+07 2.61932e+07 2.61942e+07 2.61952e+07 2.61961e+07
|
||||
2.61971e+07 2.61981e+07 2.61984e+07 2.61987e+07 2.6199e+07 2.62002e+07 2.62013e+07 2.62023e+07 2.62034e+07 2.62044e+07 2.62054e+07 2.62064e+07
|
||||
2.62075e+07 2.62085e+07 2.62096e+07 2.62108e+07 2.62122e+07 2.62141e+07 2.61644e+07 2.61652e+07 2.61661e+07 2.6167e+07 2.6168e+07 2.6169e+07
|
||||
2.61701e+07 2.61712e+07 2.61724e+07 2.61728e+07 2.61732e+07 2.61735e+07 2.61743e+07 2.61752e+07 2.61761e+07 2.6177e+07 2.6178e+07 2.61789e+07
|
||||
2.61799e+07 2.61809e+07 2.61819e+07 2.61829e+07 2.61839e+07 2.6185e+07 2.61861e+07 2.61381e+07 2.61389e+07 2.61398e+07 2.61407e+07 2.61417e+07
|
||||
2.61428e+07 2.6144e+07 2.61453e+07 2.61468e+07 2.61473e+07 2.61477e+07 2.6148e+07 2.61485e+07 2.61491e+07 2.61498e+07 2.61507e+07 2.61515e+07
|
||||
2.61524e+07 2.61534e+07 2.61543e+07 2.61552e+07 2.61562e+07 2.6157e+07 2.61577e+07 2.6158e+07 2.61119e+07 2.61126e+07 2.61134e+07 2.61143e+07
|
||||
2.61153e+07 2.61165e+07 2.61177e+07 2.61192e+07 2.61211e+07 2.61219e+07 2.61223e+07 2.61226e+07 2.61225e+07 2.61229e+07 2.61235e+07 2.61242e+07
|
||||
2.61251e+07 2.61259e+07 2.61268e+07 2.61277e+07 2.61286e+07 2.61295e+07 2.61302e+07 2.61307e+07 2.61309e+07 2.60857e+07 2.60864e+07 2.60872e+07
|
||||
2.60882e+07 2.60893e+07 2.60904e+07 2.60918e+07 2.60933e+07 2.60952e+07 2.60961e+07 2.60966e+07 2.60968e+07 2.60966e+07 2.60969e+07 2.60974e+07
|
||||
2.6098e+07 2.60987e+07 2.60995e+07 2.61003e+07 2.61011e+07 2.61019e+07 2.61026e+07 2.61032e+07 2.61036e+07 2.61038e+07 2.60595e+07 2.60604e+07
|
||||
2.60613e+07 2.60623e+07 2.60635e+07 2.60647e+07 2.60661e+07 2.60677e+07 2.60694e+07 2.60699e+07 2.60703e+07 2.60706e+07 2.60708e+07 2.6071e+07
|
||||
2.60714e+07 2.60719e+07 2.60725e+07 2.60731e+07 2.60738e+07 2.60744e+07 2.6075e+07 2.60756e+07 2.6076e+07 2.60763e+07 2.60764e+07 2.60333e+07
|
||||
2.60343e+07 2.60353e+07 2.60364e+07 2.60376e+07 2.60388e+07 2.60402e+07 2.60418e+07 2.60434e+07 2.60439e+07 2.60443e+07 2.60446e+07 2.60448e+07
|
||||
2.60451e+07 2.60454e+07 2.60457e+07 2.60462e+07 2.60467e+07 2.60472e+07 2.60477e+07 2.60482e+07 2.60487e+07 2.6049e+07 2.60492e+07 2.60493e+07
|
||||
2.60071e+07 2.60082e+07 2.60092e+07 2.60103e+07 2.60115e+07 2.60128e+07 2.60142e+07 2.60158e+07 2.60175e+07 2.60181e+07 2.60185e+07 2.60187e+07
|
||||
2.60189e+07 2.6019e+07 2.60192e+07 2.60195e+07 2.60198e+07 2.60202e+07 2.60207e+07 2.60211e+07 2.60215e+07 2.60219e+07 2.60221e+07 2.60223e+07
|
||||
2.60224e+07 2.59809e+07 2.5982e+07 2.59831e+07 2.59842e+07 2.59854e+07 2.59866e+07 2.5988e+07 2.59896e+07 2.59916e+07 2.59923e+07 2.59929e+07
|
||||
2.59931e+07 2.5993e+07 2.59929e+07 2.5993e+07 2.59932e+07 2.59935e+07 2.59938e+07 2.59941e+07 2.59945e+07 2.59948e+07 2.59951e+07 2.59953e+07
|
||||
2.59955e+07 2.59955e+07 2.59547e+07 2.5956e+07 2.59571e+07 2.59581e+07 2.59592e+07 2.59604e+07 2.59617e+07 2.59631e+07 2.59646e+07 2.59662e+07
|
||||
2.59668e+07 2.59671e+07 2.59666e+07 2.59665e+07 2.59666e+07 2.59668e+07 2.5967e+07 2.59673e+07 2.59676e+07 2.59679e+07 2.59682e+07 2.59684e+07
|
||||
2.59686e+07 2.59688e+07 2.59688e+07 2.59287e+07 2.59303e+07 2.59309e+07 2.59318e+07 2.59328e+07 2.5934e+07 2.59352e+07 2.59366e+07 2.59378e+07
|
||||
2.5939e+07 2.59397e+07 2.594e+07 2.59401e+07 2.59401e+07 2.59402e+07 2.59403e+07 2.59405e+07 2.59408e+07 2.59411e+07 2.59413e+07 2.59416e+07
|
||||
2.59418e+07 2.5942e+07 2.59421e+07 2.59421e+07 2.59074e+07 2.59043e+07 2.59046e+07 2.59054e+07 2.59063e+07 2.59075e+07 2.59087e+07 2.591e+07
|
||||
2.59112e+07 2.59123e+07 2.5913e+07 2.59134e+07 2.59135e+07 2.59136e+07 2.59137e+07 2.59138e+07 2.5914e+07 2.59143e+07 2.59145e+07 2.59148e+07
|
||||
2.5915e+07 2.59153e+07 2.59154e+07 2.59155e+07 2.59156e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="pressure_g" NumberOfComponents="1" format="ascii">
|
||||
2.63216e+07 2.63266e+07 2.63002e+07 2.63006e+07 2.63284e+07 2.6302e+07 2.63296e+07 2.63032e+07 2.63307e+07 2.63042e+07 2.63316e+07 2.63051e+07
|
||||
2.63323e+07 2.63058e+07 2.6333e+07 2.63065e+07 2.63335e+07 2.6307e+07 2.63341e+07 2.63075e+07 2.63348e+07 2.63081e+07 2.63357e+07 2.6309e+07
|
||||
2.63368e+07 2.63102e+07 2.6338e+07 2.63115e+07 2.63393e+07 2.63128e+07 2.63405e+07 2.6314e+07 2.63417e+07 2.63152e+07 2.63429e+07 2.63163e+07
|
||||
2.6344e+07 2.63174e+07 2.63451e+07 2.63186e+07 2.63462e+07 2.63196e+07 2.63472e+07 2.63207e+07 2.63481e+07 2.63217e+07 2.63488e+07 2.63225e+07
|
||||
2.63491e+07 2.63228e+07 2.62742e+07 2.62749e+07 2.62759e+07 2.62769e+07 2.62779e+07 2.62787e+07 2.62795e+07 2.62801e+07 2.62806e+07 2.62807e+07
|
||||
2.62811e+07 2.6282e+07 2.62836e+07 2.6285e+07 2.62863e+07 2.62875e+07 2.62887e+07 2.62898e+07 2.62909e+07 2.6292e+07 2.62931e+07 2.62942e+07
|
||||
2.62954e+07 2.62965e+07 2.62976e+07 2.6248e+07 2.62488e+07 2.62497e+07 2.62507e+07 2.62516e+07 2.62525e+07 2.62533e+07 2.6254e+07 2.62544e+07
|
||||
2.62543e+07 2.62546e+07 2.6255e+07 2.62571e+07 2.62586e+07 2.62599e+07 2.62611e+07 2.62622e+07 2.62633e+07 2.62644e+07 2.62655e+07 2.62666e+07
|
||||
2.62678e+07 2.6269e+07 2.62705e+07 2.62724e+07 2.62218e+07 2.62227e+07 2.62235e+07 2.62245e+07 2.62254e+07 2.62263e+07 2.62272e+07 2.6228e+07
|
||||
2.62287e+07 2.62289e+07 2.62292e+07 2.62296e+07 2.6231e+07 2.62324e+07 2.62336e+07 2.62347e+07 2.62358e+07 2.62369e+07 2.62379e+07 2.6239e+07
|
||||
2.62401e+07 2.62413e+07 2.62425e+07 2.62441e+07 2.62461e+07 2.61956e+07 2.61964e+07 2.61973e+07 2.61982e+07 2.61992e+07 2.62002e+07 2.62011e+07
|
||||
2.62021e+07 2.62031e+07 2.62034e+07 2.62037e+07 2.6204e+07 2.62052e+07 2.62063e+07 2.62073e+07 2.62084e+07 2.62094e+07 2.62104e+07 2.62114e+07
|
||||
2.62125e+07 2.62135e+07 2.62146e+07 2.62158e+07 2.62172e+07 2.62191e+07 2.61694e+07 2.61702e+07 2.61711e+07 2.6172e+07 2.6173e+07 2.6174e+07
|
||||
2.61751e+07 2.61762e+07 2.61774e+07 2.61778e+07 2.61782e+07 2.61785e+07 2.61793e+07 2.61802e+07 2.61811e+07 2.6182e+07 2.6183e+07 2.61839e+07
|
||||
2.61849e+07 2.61859e+07 2.61869e+07 2.61879e+07 2.61889e+07 2.619e+07 2.61911e+07 2.61431e+07 2.61439e+07 2.61448e+07 2.61457e+07 2.61467e+07
|
||||
2.61478e+07 2.6149e+07 2.61503e+07 2.61518e+07 2.61523e+07 2.61527e+07 2.6153e+07 2.61535e+07 2.61541e+07 2.61548e+07 2.61557e+07 2.61565e+07
|
||||
2.61574e+07 2.61584e+07 2.61593e+07 2.61602e+07 2.61612e+07 2.6162e+07 2.61627e+07 2.6163e+07 2.61169e+07 2.61176e+07 2.61184e+07 2.61193e+07
|
||||
2.61203e+07 2.61215e+07 2.61227e+07 2.61242e+07 2.61261e+07 2.61269e+07 2.61273e+07 2.61276e+07 2.61275e+07 2.61279e+07 2.61285e+07 2.61292e+07
|
||||
2.61301e+07 2.61309e+07 2.61318e+07 2.61327e+07 2.61336e+07 2.61345e+07 2.61352e+07 2.61357e+07 2.61359e+07 2.60957e+07 2.60964e+07 2.60972e+07
|
||||
2.60982e+07 2.60993e+07 2.61004e+07 2.61018e+07 2.61033e+07 2.61052e+07 2.61061e+07 2.61066e+07 2.61068e+07 2.61066e+07 2.61069e+07 2.61074e+07
|
||||
2.6108e+07 2.61087e+07 2.61095e+07 2.61103e+07 2.61111e+07 2.61119e+07 2.61126e+07 2.61132e+07 2.61136e+07 2.61138e+07 2.60695e+07 2.60704e+07
|
||||
2.60713e+07 2.60723e+07 2.60735e+07 2.60747e+07 2.60761e+07 2.60777e+07 2.60794e+07 2.60799e+07 2.60803e+07 2.60806e+07 2.60808e+07 2.6081e+07
|
||||
2.60814e+07 2.60819e+07 2.60825e+07 2.60831e+07 2.60838e+07 2.60844e+07 2.6085e+07 2.60856e+07 2.6086e+07 2.60863e+07 2.60864e+07 2.60433e+07
|
||||
2.60443e+07 2.60453e+07 2.60464e+07 2.60476e+07 2.60488e+07 2.60502e+07 2.60518e+07 2.60534e+07 2.60539e+07 2.60543e+07 2.60546e+07 2.60548e+07
|
||||
2.60551e+07 2.60554e+07 2.60557e+07 2.60562e+07 2.60567e+07 2.60572e+07 2.60577e+07 2.60582e+07 2.60587e+07 2.6059e+07 2.60592e+07 2.60593e+07
|
||||
2.60171e+07 2.60182e+07 2.60192e+07 2.60203e+07 2.60215e+07 2.60228e+07 2.60242e+07 2.60258e+07 2.60275e+07 2.60281e+07 2.60285e+07 2.60287e+07
|
||||
2.60289e+07 2.6029e+07 2.60292e+07 2.60295e+07 2.60298e+07 2.60302e+07 2.60307e+07 2.60311e+07 2.60315e+07 2.60319e+07 2.60321e+07 2.60323e+07
|
||||
2.60324e+07 2.59909e+07 2.5992e+07 2.59931e+07 2.59942e+07 2.59954e+07 2.59966e+07 2.5998e+07 2.59996e+07 2.60016e+07 2.60023e+07 2.60029e+07
|
||||
2.60031e+07 2.6003e+07 2.60029e+07 2.6003e+07 2.60032e+07 2.60035e+07 2.60038e+07 2.60041e+07 2.60045e+07 2.60048e+07 2.60051e+07 2.60053e+07
|
||||
2.60055e+07 2.60055e+07 2.59647e+07 2.5966e+07 2.59671e+07 2.59681e+07 2.59692e+07 2.59704e+07 2.59717e+07 2.59731e+07 2.59746e+07 2.59762e+07
|
||||
2.59768e+07 2.59771e+07 2.59766e+07 2.59765e+07 2.59766e+07 2.59768e+07 2.5977e+07 2.59773e+07 2.59776e+07 2.59779e+07 2.59782e+07 2.59784e+07
|
||||
2.59786e+07 2.59788e+07 2.59788e+07 2.59387e+07 2.59403e+07 2.59409e+07 2.59418e+07 2.59428e+07 2.5944e+07 2.59452e+07 2.59466e+07 2.59478e+07
|
||||
2.5949e+07 2.59497e+07 2.595e+07 2.59501e+07 2.59501e+07 2.59502e+07 2.59503e+07 2.59505e+07 2.59508e+07 2.59511e+07 2.59513e+07 2.59516e+07
|
||||
2.59518e+07 2.5952e+07 2.59521e+07 2.59521e+07 2.59174e+07 2.59143e+07 2.59146e+07 2.59154e+07 2.59163e+07 2.59175e+07 2.59187e+07 2.592e+07
|
||||
2.59212e+07 2.59223e+07 2.5923e+07 2.59234e+07 2.59235e+07 2.59236e+07 2.59237e+07 2.59238e+07 2.5924e+07 2.59243e+07 2.59245e+07 2.59248e+07
|
||||
2.5925e+07 2.59253e+07 2.59254e+07 2.59255e+07 2.59256e+07
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_l" NumberOfComponents="1" format="ascii">
|
||||
1082.34 1082.34 1082.33 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33
|
||||
1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.34 1082.33
|
||||
1082.34 1082.33 1082.34 1082.33 1082.34 1082.33 1082.35 1082.33 1082.35 1082.33 1082.35 1082.34
|
||||
1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34 1082.35 1082.34
|
||||
1082.35 1082.35 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32
|
||||
1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.32 1082.33 1082.33 1082.33
|
||||
1082.33 1082.33 1084.64 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31
|
||||
1019.15 1019.15 1019.15 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31 1082.31
|
||||
1082.32 1082.32 1082.34 1086.89 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3
|
||||
1082.3 1019.14 1019.14 1019.14 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3 1082.3
|
||||
1082.3 1082.3 1082.3 1082.33 1086.88 1082.28 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29
|
||||
1082.29 1082.29 1019.14 1019.14 1019.14 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29 1082.29
|
||||
1082.29 1082.29 1082.29 1082.29 1082.32 1086.87 1082.27 1082.27 1082.27 1082.28 1082.28 1082.28
|
||||
1082.28 1082.28 1082.28 1019.13 1019.13 1019.13 1082.28 1082.28 1082.28 1082.28 1082.28 1082.28
|
||||
1082.28 1082.28 1082.28 1082.28 1082.28 1082.29 1084.6 1082.26 1082.26 1082.26 1082.26 1082.26
|
||||
1082.27 1082.27 1082.27 1082.27 1019.12 1019.12 1019.12 1082.27 1082.27 1082.27 1082.27 1082.27
|
||||
1082.27 1082.27 1082.27 1082.27 1082.27 1082.27 1082.27 1082.28 1082.25 1082.25 1082.25 1082.25
|
||||
1082.25 1082.25 1082.25 1082.26 1082.26 1019.11 1019.11 1019.11 1082.26 1082.26 1082.26 1082.26
|
||||
1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.26 1082.24 1082.24 1082.24
|
||||
1082.24 1082.24 1082.24 1082.24 1082.24 1082.25 1019.1 1019.1 1019.1 1082.25 1082.25 1082.25
|
||||
1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.25 1082.23 1082.23
|
||||
1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1019.09 1019.09 1019.09 1082.24 1082.24
|
||||
1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.24 1082.22
|
||||
1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1082.22 1019.08 1019.08 1019.08 1082.22
|
||||
1082.22 1082.22 1082.22 1082.22 1082.22 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23 1082.23
|
||||
1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1019.07 1019.07 1019.07
|
||||
1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21 1082.21
|
||||
1082.21 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1019.06 1019.06
|
||||
1019.06 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2 1082.2
|
||||
1082.2 1082.2 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19
|
||||
1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19 1082.19
|
||||
1082.19 1082.19 1082.19 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18
|
||||
1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18 1082.18
|
||||
1082.18 1082.18 1082.18 1082.18 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
1082.17 1082.17 1082.17 1082.17 1082.17
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="density_g" NumberOfComponents="1" format="ascii">
|
||||
969.119 969.142 969.022 969.024 969.15 969.031 969.155 969.036 969.16 969.041 969.164 969.045
|
||||
969.167 969.048 969.17 969.051 969.173 969.053 969.175 969.055 969.178 969.058 969.182 969.062
|
||||
969.187 969.068 969.193 969.074 969.199 969.079 969.204 969.085 969.209 969.09 969.214 969.095
|
||||
969.219 969.1 969.224 969.105 969.229 969.11 969.234 969.115 969.238 969.119 969.241 969.123
|
||||
969.242 969.125 968.905 968.909 968.913 968.917 968.922 968.926 968.929 968.932 968.934 968.934
|
||||
968.937 968.941 968.948 968.954 968.96 968.965 968.971 968.976 968.981 968.986 968.991 968.996
|
||||
969.001 969.006 969.011 968.787 968.791 968.795 968.799 968.803 968.807 968.811 968.814 968.816
|
||||
527.756 527.761 527.767 968.828 968.835 968.841 968.846 968.851 968.856 968.861 968.866 968.871
|
||||
968.876 968.882 968.888 968.897 968.669 968.673 968.677 968.681 968.685 968.689 968.693 968.697
|
||||
968.7 527.321 527.326 527.333 968.711 968.717 968.722 968.727 968.732 968.737 968.742 968.747
|
||||
968.752 968.757 968.763 968.769 968.779 968.551 968.555 968.559 968.563 968.567 968.571 968.576
|
||||
968.58 968.584 526.885 526.89 526.896 968.594 968.599 968.604 968.608 968.613 968.617 968.622
|
||||
968.627 968.632 968.637 968.642 968.648 968.657 968.432 968.436 968.44 968.444 968.449 968.453
|
||||
968.458 968.463 968.469 526.448 526.454 526.459 968.477 968.481 968.485 968.49 968.494 968.498
|
||||
968.503 968.507 968.511 968.516 968.521 968.526 968.53 968.314 968.318 968.322 968.326 968.33
|
||||
968.335 968.341 968.347 968.353 526.012 526.019 526.023 968.361 968.364 968.367 968.371 968.375
|
||||
968.379 968.383 968.387 968.391 968.395 968.399 968.402 968.404 968.195 968.199 968.202 968.207
|
||||
968.211 968.216 968.222 968.229 968.237 525.577 525.585 525.59 968.244 968.245 968.248 968.251
|
||||
968.255 968.259 968.263 968.267 968.271 968.275 968.278 968.281 968.282 968.099 968.102 968.106
|
||||
968.111 968.115 968.121 968.127 968.134 968.143 525.218 525.226 525.23 968.149 968.15 968.152
|
||||
968.155 968.158 968.162 968.166 968.169 968.173 968.176 968.179 968.181 968.181 967.98 967.984
|
||||
967.989 967.993 967.998 968.004 968.01 968.017 968.025 524.766 524.773 524.777 968.031 968.033
|
||||
968.034 968.037 968.039 968.042 968.045 968.048 968.051 968.053 968.055 968.057 968.057 967.861
|
||||
967.866 967.87 967.875 967.881 967.886 967.893 967.9 967.907 524.316 524.323 524.327 967.914
|
||||
967.915 967.916 967.918 967.92 967.922 967.924 967.927 967.929 967.931 967.933 967.934 967.934
|
||||
967.742 967.747 967.752 967.757 967.762 967.768 967.775 967.782 967.79 523.869 523.876 523.88
|
||||
967.796 967.796 967.797 967.799 967.8 967.802 967.804 967.806 967.808 967.809 967.811 967.811
|
||||
967.812 967.623 967.628 967.633 967.638 967.644 967.649 967.656 967.663 967.672 523.424 523.433
|
||||
523.437 967.678 967.678 967.678 967.679 967.68 967.682 967.683 967.685 967.687 967.688 967.689
|
||||
967.69 967.69 967.504 967.51 967.515 967.52 967.525 967.53 967.536 967.543 967.549 967.557
|
||||
967.559 967.56 967.558 967.558 967.558 967.559 967.56 967.562 967.563 967.564 967.566 967.567
|
||||
967.568 967.568 967.568 967.386 967.394 967.396 967.4 967.405 967.41 967.416 967.422 967.428
|
||||
967.433 967.436 967.438 967.438 967.438 967.438 967.439 967.44 967.441 967.442 967.444 967.445
|
||||
967.446 967.447 967.447 967.447 967.289 967.275 967.276 967.28 967.284 967.29 967.295 967.301
|
||||
967.307 967.311 967.315 967.317 967.317 967.318 967.318 967.319 967.32 967.321 967.322 967.323
|
||||
967.324 967.325 967.326 967.326 967.327
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="saturation_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_l" NumberOfComponents="1" format="ascii">
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="relativePerm_g" NumberOfComponents="1" format="ascii">
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="porosity" NumberOfComponents="1" format="ascii">
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3
|
||||
0.3 0.3 0.3 0.3 0.3
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.994983 0.989566 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.994947 0.984181 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.994943 0.984181 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.994948 0.984181 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.994984 0.989565 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.994981 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500004
|
||||
0.00500002 0.00501691 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.00500004 0.00501663 0.010434 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.00500016 0.0050528 0.0158191 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.00500018 0.00505676 0.0158192 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.00500015 0.00505211 0.0158193 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.00500004 0.00501599 0.0104349 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.00500004 0.00501886 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.00500002 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327814 0.00327822 0.00327782 0.00327782 0.00327825 0.00327784 0.00327827 0.00327786 0.00327828 0.00327788 0.0032783 0.00327789
|
||||
0.00327831 0.0032779 0.00327832 0.00327791 0.00327833 0.00327792 0.00327834 0.00327793 0.00327835 0.00327794 0.00327836 0.00327795
|
||||
0.00327838 0.00327797 0.0032784 0.00327799 0.00327842 0.00327801 0.00327843 0.00327803 0.00327845 0.00327805 0.00327847 0.00327806
|
||||
0.00327849 0.00327808 0.00327851 0.0032781 0.00327852 0.00327811 0.00327854 0.00327813 0.00327855 0.00327815 0.00327856 0.00327816
|
||||
0.00327857 0.00327811 0.00327742 0.00327743 0.00327744 0.00327746 0.00327747 0.00327749 0.0032775 0.00327751 0.00327751 0.00327752
|
||||
0.00327752 0.00327754 0.00327756 0.00327758 0.0032776 0.00327762 0.00327764 0.00327766 0.00327767 0.00327769 0.00327771 0.00327772
|
||||
0.00327774 0.0032777 0.00325988 0.00327701 0.00327703 0.00327704 0.00327706 0.00327707 0.00327708 0.0032771 0.00327711 0.00327711
|
||||
0.029767 0.0297671 0.0297672 0.00327715 0.00327718 0.0032772 0.00327722 0.00327723 0.00327725 0.00327727 0.00327728 0.0032773
|
||||
0.00327732 0.00327734 0.00327719 0.00324175 0.00327661 0.00327662 0.00327664 0.00327665 0.00327667 0.00327668 0.00327669 0.00327671
|
||||
0.00327672 0.0297612 0.0297613 0.0297614 0.00327675 0.00327677 0.00327679 0.00327681 0.00327683 0.00327684 0.00327686 0.00327688
|
||||
0.00327689 0.00327691 0.00327693 0.00327677 0.00324135 0.00327621 0.00327622 0.00327623 0.00327625 0.00327626 0.00327628 0.00327629
|
||||
0.00327631 0.00327632 0.0297554 0.0297555 0.0297556 0.00327635 0.00327637 0.00327639 0.0032764 0.00327642 0.00327644 0.00327645
|
||||
0.00327647 0.00327648 0.0032765 0.00327652 0.00327637 0.00324094 0.0032758 0.00327582 0.00327583 0.00327584 0.00327586 0.00327587
|
||||
0.00327589 0.00327591 0.00327593 0.0297496 0.0297497 0.0297497 0.00327596 0.00327597 0.00327598 0.003276 0.00327601 0.00327603
|
||||
0.00327604 0.00327606 0.00327607 0.00327609 0.0032761 0.00327607 0.00325824 0.0032754 0.00327541 0.00327542 0.00327544 0.00327545
|
||||
0.00327547 0.00327549 0.00327551 0.00327553 0.0297438 0.0297439 0.0297439 0.00327556 0.00327557 0.00327558 0.00327559 0.0032756
|
||||
0.00327562 0.00327563 0.00327565 0.00327566 0.00327568 0.00327569 0.0032757 0.00327564 0.00327499 0.003275 0.00327501 0.00327503
|
||||
0.00327504 0.00327506 0.00327508 0.0032751 0.00327513 0.029738 0.0297381 0.0297381 0.00327516 0.00327516 0.00327517 0.00327518
|
||||
0.00327519 0.00327521 0.00327522 0.00327524 0.00327525 0.00327526 0.00327527 0.00327528 0.00327529 0.00327396 0.00327397 0.00327398
|
||||
0.003274 0.00327402 0.00327403 0.00327405 0.00327408 0.00327411 0.0297264 0.0297265 0.0297265 0.00327413 0.00327413 0.00327414
|
||||
0.00327415 0.00327416 0.00327417 0.00327419 0.0032742 0.00327421 0.00327422 0.00327423 0.00327424 0.00327424 0.00327355 0.00327357
|
||||
0.00327358 0.0032736 0.00327362 0.00327363 0.00327366 0.00327368 0.00327371 0.0297204 0.0297205 0.0297205 0.00327373 0.00327373
|
||||
0.00327374 0.00327375 0.00327376 0.00327377 0.00327378 0.00327379 0.00327379 0.0032738 0.00327381 0.00327381 0.00327382 0.00327315
|
||||
0.00327316 0.00327318 0.0032732 0.00327321 0.00327323 0.00327326 0.00327328 0.00327331 0.0297144 0.0297145 0.0297145 0.00327333
|
||||
0.00327333 0.00327334 0.00327334 0.00327335 0.00327336 0.00327336 0.00327337 0.00327338 0.00327339 0.00327339 0.0032734 0.0032734
|
||||
0.00327274 0.00327276 0.00327277 0.00327279 0.00327281 0.00327283 0.00327285 0.00327288 0.0032729 0.0297084 0.0297085 0.0297086
|
||||
0.00327292 0.00327293 0.00327293 0.00327293 0.00327294 0.00327295 0.00327295 0.00327296 0.00327297 0.00327297 0.00327298 0.00327298
|
||||
0.00327298 0.00327233 0.00327235 0.00327237 0.00327239 0.0032724 0.00327242 0.00327245 0.00327247 0.0032725 0.0297025 0.0297026
|
||||
0.0297027 0.00327252 0.00327252 0.00327252 0.00327253 0.00327253 0.00327254 0.00327254 0.00327255 0.00327255 0.00327256 0.00327256
|
||||
0.00327256 0.00327256 0.00327193 0.00327195 0.00327196 0.00327198 0.003272 0.00327202 0.00327204 0.00327206 0.00327208 0.00327211
|
||||
0.00327212 0.00327212 0.00327211 0.00327211 0.00327211 0.00327212 0.00327212 0.00327212 0.00327213 0.00327213 0.00327214 0.00327214
|
||||
0.00327214 0.00327215 0.00327215 0.00327152 0.00327155 0.00327156 0.00327157 0.00327159 0.0032716 0.00327162 0.00327164 0.00327166
|
||||
0.00327168 0.00327169 0.0032717 0.0032717 0.0032717 0.0032717 0.0032717 0.00327171 0.00327171 0.00327171 0.00327172 0.00327172
|
||||
0.00327173 0.00327173 0.00327173 0.00327173 0.00327119 0.00327114 0.00327115 0.00327116 0.00327117 0.00327119 0.00327121 0.00327123
|
||||
0.00327125 0.00327127 0.00327128 0.00327128 0.00327129 0.00327129 0.00327129 0.00327129 0.00327129 0.0032713 0.0032713 0.00327131
|
||||
0.00327131 0.00327131 0.00327132 0.00327132 0.00327132
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259408 0.259405 0.259424 0.259423 0.259403 0.259422 0.259402 0.259422 0.259402 0.259421 0.259401 0.25942
|
||||
0.2594 0.25942 0.2594 0.259419 0.2594 0.259419 0.259399 0.259418 0.259399 0.259418 0.259398 0.259417
|
||||
0.259397 0.259416 0.259396 0.259416 0.259395 0.259415 0.259395 0.259414 0.259394 0.259413 0.259393 0.259412
|
||||
0.259392 0.259411 0.259391 0.25941 0.259391 0.25941 0.25939 0.259409 0.259389 0.259408 0.259389 0.259409
|
||||
0.25939 0.260285 0.259443 0.259442 0.259441 0.259441 0.25944 0.259439 0.259439 0.259438 0.259438 0.259438
|
||||
0.259438 0.259437 0.259436 0.259435 0.259434 0.259433 0.259432 0.259431 0.25943 0.25943 0.259429 0.259428
|
||||
0.259429 0.260289 0.541372 0.259462 0.259461 0.25946 0.25946 0.259459 0.259458 0.259458 0.259457 0.259457
|
||||
0.301432 0.30143 0.301429 0.259455 0.259454 0.259453 0.259452 0.259451 0.25945 0.25945 0.259449 0.259448
|
||||
0.259447 0.259455 0.262185 0.820832 0.25948 0.25948 0.259479 0.259479 0.259478 0.259477 0.259477 0.259476
|
||||
0.259476 0.301553 0.301552 0.30155 0.259474 0.259473 0.259472 0.259471 0.25947 0.25947 0.259469 0.259468
|
||||
0.259467 0.259466 0.259475 0.26241 0.820898 0.259499 0.259499 0.259498 0.259497 0.259497 0.259496 0.259495
|
||||
0.259495 0.259494 0.301676 0.301674 0.301672 0.259492 0.259492 0.259491 0.25949 0.259489 0.259489 0.259488
|
||||
0.259487 0.259486 0.259486 0.259493 0.262188 0.820965 0.259518 0.259518 0.259517 0.259516 0.259516 0.259515
|
||||
0.259514 0.259513 0.259512 0.301798 0.301796 0.301795 0.259511 0.25951 0.25951 0.259509 0.259508 0.259508
|
||||
0.259507 0.259506 0.259506 0.259505 0.259506 0.260333 0.541577 0.259537 0.259536 0.259536 0.259535 0.259534
|
||||
0.259534 0.259533 0.259532 0.259531 0.30192 0.301918 0.301916 0.259529 0.259529 0.259528 0.259528 0.259527
|
||||
0.259527 0.259526 0.259525 0.259525 0.259524 0.259523 0.259525 0.260502 0.259556 0.259555 0.259555 0.259554
|
||||
0.259553 0.259553 0.259552 0.25955 0.259549 0.302041 0.302039 0.302038 0.259548 0.259548 0.259547 0.259547
|
||||
0.259546 0.259546 0.259545 0.259544 0.259544 0.259543 0.259542 0.259542 0.259543 0.259525 0.259525 0.259524
|
||||
0.259524 0.259523 0.259522 0.259521 0.25952 0.259518 0.302109 0.302107 0.302106 0.259517 0.259517 0.259517
|
||||
0.259516 0.259516 0.259515 0.259515 0.259514 0.259514 0.259513 0.259513 0.259512 0.259512 0.259545 0.259544
|
||||
0.259543 0.259543 0.259542 0.259541 0.25954 0.259539 0.259537 0.302236 0.302234 0.302233 0.259536 0.259536
|
||||
0.259536 0.259536 0.259535 0.259535 0.259534 0.259534 0.259533 0.259533 0.259533 0.259532 0.259532 0.259564
|
||||
0.259563 0.259562 0.259561 0.259561 0.25956 0.259559 0.259558 0.259556 0.302362 0.30236 0.302359 0.259555
|
||||
0.259555 0.259555 0.259555 0.259554 0.259554 0.259554 0.259553 0.259553 0.259553 0.259552 0.259552 0.259552
|
||||
0.259583 0.259582 0.259581 0.25958 0.25958 0.259579 0.259578 0.259576 0.259575 0.302488 0.302486 0.302485
|
||||
0.259574 0.259574 0.259574 0.259574 0.259573 0.259573 0.259573 0.259573 0.259572 0.259572 0.259572 0.259572
|
||||
0.259572 0.259602 0.259601 0.2596 0.259599 0.259598 0.259598 0.259597 0.259595 0.259594 0.302613 0.30261
|
||||
0.302609 0.259593 0.259593 0.259593 0.259593 0.259593 0.259592 0.259592 0.259592 0.259592 0.259591 0.259591
|
||||
0.259591 0.259591 0.259621 0.25962 0.259619 0.259618 0.259617 0.259617 0.259616 0.259615 0.259614 0.259612
|
||||
0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259612 0.259611 0.259611 0.259611 0.259611
|
||||
0.259611 0.259611 0.25961 0.259639 0.259638 0.259638 0.259637 0.259636 0.259636 0.259635 0.259634 0.259633
|
||||
0.259632 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.259631 0.25963 0.25963 0.25963
|
||||
0.25963 0.25963 0.25963 0.25963 0.259655 0.259657 0.259657 0.259657 0.259656 0.259655 0.259654 0.259653
|
||||
0.259652 0.259651 0.259651 0.259651 0.259651 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965 0.25965
|
||||
0.259649 0.259649 0.259649 0.259649 0.259649
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="temperature" NumberOfComponents="1" format="ascii">
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15 393.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 393.15 393.15
|
||||
393.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15 293.15
|
||||
293.15 293.15 293.15 293.15 293.15
|
||||
</DataArray>
|
||||
</PointData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
456
tests/referencesolutions/co2injection_pvs_ecfv-heuristix.vtu
Normal file
456
tests/referencesolutions/co2injection_pvs_ecfv-heuristix.vtu
Normal file
@ -0,0 +1,456 @@
|
||||
<?xml version="1.0"?>
|
||||
<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian">
|
||||
<UnstructuredGrid>
|
||||
<Piece NumberOfCells="384" NumberOfPoints="425">
|
||||
<CellData Scalars="moleFrac_l^Brine">
|
||||
<DataArray type="Float32" Name="moleFrac_l^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995 0.995
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_l^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005 0.005
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^Brine" NumberOfComponents="1" format="ascii">
|
||||
0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802
|
||||
0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802 0.00327802
|
||||
0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762
|
||||
0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762 0.00327762
|
||||
0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.0297685 0.0297685 0.0297685 0.0297685
|
||||
0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.00327721 0.00327721
|
||||
0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.0297626 0.0297626 0.0297626 0.0297626
|
||||
0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.00327681 0.00327681
|
||||
0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.0297566 0.0297566 0.0297566 0.0297566
|
||||
0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.00327641 0.00327641
|
||||
0.003276 0.003276 0.003276 0.003276 0.003276 0.003276 0.003276 0.003276 0.0297506 0.0297506 0.0297506 0.0297506
|
||||
0.003276 0.003276 0.003276 0.003276 0.003276 0.003276 0.003276 0.003276 0.003276 0.003276 0.003276 0.003276
|
||||
0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0297446 0.0297446 0.0297446 0.0297446
|
||||
0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0032756 0.0032756
|
||||
0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.0297387 0.0297387 0.0297387 0.0297387
|
||||
0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.00327519 0.00327519
|
||||
0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.0297327 0.0297327 0.0297327 0.0297327
|
||||
0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.00327479 0.00327479
|
||||
0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.0297209 0.0297209 0.0297209 0.0297209
|
||||
0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.00327375 0.00327375
|
||||
0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.0297149 0.0297149 0.0297149 0.0297149
|
||||
0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.00327335 0.00327335
|
||||
0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.0297089 0.0297089 0.0297089 0.0297089
|
||||
0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.00327294 0.00327294
|
||||
0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.0297028 0.0297028 0.0297028 0.0297028
|
||||
0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.00327253 0.00327253
|
||||
0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.0296968 0.0296968 0.0296968 0.0296968
|
||||
0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.00327213 0.00327213
|
||||
0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172
|
||||
0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172 0.00327172
|
||||
0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131
|
||||
0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131 0.00327131
|
||||
</DataArray>
|
||||
<DataArray type="Float32" Name="moleFrac_g^CO2" NumberOfComponents="1" format="ascii">
|
||||
0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414
|
||||
0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414 0.259414
|
||||
0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433
|
||||
0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433 0.259433
|
||||
0.259452 0.259452 0.259452 0.259452 0.259452 0.259452 0.259452 0.259452 0.3014 0.3014 0.3014 0.3014
|
||||
0.259452 0.259452 0.259452 0.259452 0.259452 0.259452 0.259452 0.259452 0.259452 0.259452 0.259452 0.259452
|
||||
0.259471 0.259471 0.259471 0.259471 0.259471 0.259471 0.259471 0.259471 0.301525 0.301525 0.301525 0.301525
|
||||
0.259471 0.259471 0.259471 0.259471 0.259471 0.259471 0.259471 0.259471 0.259471 0.259471 0.259471 0.259471
|
||||
0.25949 0.25949 0.25949 0.25949 0.25949 0.25949 0.25949 0.25949 0.301651 0.301651 0.301651 0.301651
|
||||
0.25949 0.25949 0.25949 0.25949 0.25949 0.25949 0.25949 0.25949 0.25949 0.25949 0.25949 0.25949
|
||||
0.259509 0.259509 0.259509 0.259509 0.259509 0.259509 0.259509 0.259509 0.301776 0.301776 0.301776 0.301776
|
||||
0.259509 0.259509 0.259509 0.259509 0.259509 0.259509 0.259509 0.259509 0.259509 0.259509 0.259509 0.259509
|
||||
0.259528 0.259528 0.259528 0.259528 0.259528 0.259528 0.259528 0.259528 0.301901 0.301901 0.301901 0.301901
|
||||
0.259528 0.259528 0.259528 0.259528 0.259528 0.259528 0.259528 0.259528 0.259528 0.259528 0.259528 0.259528
|
||||
0.259546 0.259546 0.259546 0.259546 0.259546 0.259546 0.259546 0.259546 0.302027 0.302027 0.302027 0.302027
|
||||
0.259546 0.259546 0.259546 0.259546 0.259546 0.259546 0.259546 0.259546 0.259546 0.259546 0.259546 0.259546
|
||||
0.259566 0.259566 0.259566 0.259566 0.259566 0.259566 0.259566 0.259566 0.302154 0.302154 0.302154 0.302154
|
||||
0.259566 0.259566 0.259566 0.259566 0.259566 0.259566 0.259566 0.259566 0.259566 0.259566 0.259566 0.259566
|
||||
0.259535 0.259535 0.259535 0.259535 0.259535 0.259535 0.259535 0.259535 0.302224 0.302224 0.302224 0.302224
|
||||
0.259535 0.259535 0.259535 0.259535 0.259535 0.259535 0.259535 0.259535 0.259535 0.259535 0.259535 0.259535
|
||||
0.259554 0.259554 0.259554 0.259554 0.259554 0.259554 0.259554 0.259554 0.302351 0.302351 0.302351 0.302351
|
||||
0.259554 0.259554 0.259554 0.259554 0.259554 0.259554 0.259554 0.259554 0.259554 0.259554 0.259554 0.259554
|
||||
0.259573 0.259573 0.259573 0.259573 0.259573 0.259573 0.259573 0.259573 0.302479 0.302479 0.302479 0.302479
|
||||
0.259573 0.259573 0.259573 0.259573 0.259573 0.259573 0.259573 0.259573 0.259573 0.259573 0.259573 0.259573
|
||||
0.259592 0.259592 0.259592 0.259592 0.259592 0.259592 0.259592 0.259592 0.302606 0.302606 0.302606 0.302606
|
||||
0.259592 0.259592 0.259592 0.259592 0.259592 0.259592 0.259592 0.259592 0.259592 0.259592 0.259592 0.259592
|
||||
0.259611 0.259611 0.259611 0.259611 0.259611 0.259611 0.259611 0.259611 0.302733 0.302733 0.302733 0.302733
|
||||
0.259611 0.259611 0.259611 0.259611 0.259611 0.259611 0.259611 0.259611 0.259611 0.259611 0.259611 0.259611
|
||||
0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963
|
||||
0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963 0.25963
|
||||
0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649
|
||||
0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649 0.259649
|
||||
</DataArray>
|
||||
</CellData>
|
||||
<Points>
|
||||
<DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii">
|
||||
0 0 0 2.5 0 0 0 2.5 0 2.5 2.5 0
|
||||
5 0 0 5 2.5 0 7.5 0 0 7.5 2.5 0
|
||||
10 0 0 10 2.5 0 12.5 0 0 12.5 2.5 0
|
||||
15 0 0 15 2.5 0 17.5 0 0 17.5 2.5 0
|
||||
20 0 0 20 2.5 0 22.5 0 0 22.5 2.5 0
|
||||
25 0 0 25 2.5 0 27.5 0 0 27.5 2.5 0
|
||||
30 0 0 30 2.5 0 32.5 0 0 32.5 2.5 0
|
||||
35 0 0 35 2.5 0 37.5 0 0 37.5 2.5 0
|
||||
40 0 0 40 2.5 0 42.5 0 0 42.5 2.5 0
|
||||
45 0 0 45 2.5 0 47.5 0 0 47.5 2.5 0
|
||||
50 0 0 50 2.5 0 52.5 0 0 52.5 2.5 0
|
||||
55 0 0 55 2.5 0 57.5 0 0 57.5 2.5 0
|
||||
60 0 0 60 2.5 0 0 5 0 2.5 5 0
|
||||
5 5 0 7.5 5 0 10 5 0 12.5 5 0
|
||||
15 5 0 17.5 5 0 20 5 0 22.5 5 0
|
||||
25 5 0 27.5 5 0 30 5 0 32.5 5 0
|
||||
35 5 0 37.5 5 0 40 5 0 42.5 5 0
|
||||
45 5 0 47.5 5 0 50 5 0 52.5 5 0
|
||||
55 5 0 57.5 5 0 60 5 0 0 7.5 0
|
||||
2.5 7.5 0 5 7.5 0 7.5 7.5 0 10 7.5 0
|
||||
12.5 7.5 0 15 7.5 0 17.5 7.5 0 20 7.5 0
|
||||
22.5 7.5 0 25 7.5 0 27.5 7.5 0 30 7.5 0
|
||||
32.5 7.5 0 35 7.5 0 37.5 7.5 0 40 7.5 0
|
||||
42.5 7.5 0 45 7.5 0 47.5 7.5 0 50 7.5 0
|
||||
52.5 7.5 0 55 7.5 0 57.5 7.5 0 60 7.5 0
|
||||
0 10 0 2.5 10 0 5 10 0 7.5 10 0
|
||||
10 10 0 12.5 10 0 15 10 0 17.5 10 0
|
||||
20 10 0 22.5 10 0 25 10 0 27.5 10 0
|
||||
30 10 0 32.5 10 0 35 10 0 37.5 10 0
|
||||
40 10 0 42.5 10 0 45 10 0 47.5 10 0
|
||||
50 10 0 52.5 10 0 55 10 0 57.5 10 0
|
||||
60 10 0 0 12.5 0 2.5 12.5 0 5 12.5 0
|
||||
7.5 12.5 0 10 12.5 0 12.5 12.5 0 15 12.5 0
|
||||
17.5 12.5 0 20 12.5 0 22.5 12.5 0 25 12.5 0
|
||||
27.5 12.5 0 30 12.5 0 32.5 12.5 0 35 12.5 0
|
||||
37.5 12.5 0 40 12.5 0 42.5 12.5 0 45 12.5 0
|
||||
47.5 12.5 0 50 12.5 0 52.5 12.5 0 55 12.5 0
|
||||
57.5 12.5 0 60 12.5 0 0 15 0 2.5 15 0
|
||||
5 15 0 7.5 15 0 10 15 0 12.5 15 0
|
||||
15 15 0 17.5 15 0 20 15 0 22.5 15 0
|
||||
25 15 0 27.5 15 0 30 15 0 32.5 15 0
|
||||
35 15 0 37.5 15 0 40 15 0 42.5 15 0
|
||||
45 15 0 47.5 15 0 50 15 0 52.5 15 0
|
||||
55 15 0 57.5 15 0 60 15 0 0 17.5 0
|
||||
2.5 17.5 0 5 17.5 0 7.5 17.5 0 10 17.5 0
|
||||
12.5 17.5 0 15 17.5 0 17.5 17.5 0 20 17.5 0
|
||||
22.5 17.5 0 25 17.5 0 27.5 17.5 0 30 17.5 0
|
||||
32.5 17.5 0 35 17.5 0 37.5 17.5 0 40 17.5 0
|
||||
42.5 17.5 0 45 17.5 0 47.5 17.5 0 50 17.5 0
|
||||
52.5 17.5 0 55 17.5 0 57.5 17.5 0 60 17.5 0
|
||||
0 20 0 2.5 20 0 5 20 0 7.5 20 0
|
||||
10 20 0 12.5 20 0 15 20 0 17.5 20 0
|
||||
20 20 0 22.5 20 0 25 20 0 27.5 20 0
|
||||
30 20 0 32.5 20 0 35 20 0 37.5 20 0
|
||||
40 20 0 42.5 20 0 45 20 0 47.5 20 0
|
||||
50 20 0 52.5 20 0 55 20 0 57.5 20 0
|
||||
60 20 0 0 22.5 0 2.5 22.5 0 5 22.5 0
|
||||
7.5 22.5 0 10 22.5 0 12.5 22.5 0 15 22.5 0
|
||||
17.5 22.5 0 20 22.5 0 22.5 22.5 0 25 22.5 0
|
||||
27.5 22.5 0 30 22.5 0 32.5 22.5 0 35 22.5 0
|
||||
37.5 22.5 0 40 22.5 0 42.5 22.5 0 45 22.5 0
|
||||
47.5 22.5 0 50 22.5 0 52.5 22.5 0 55 22.5 0
|
||||
57.5 22.5 0 60 22.5 0 0 25 0 2.5 25 0
|
||||
5 25 0 7.5 25 0 10 25 0 12.5 25 0
|
||||
15 25 0 17.5 25 0 20 25 0 22.5 25 0
|
||||
25 25 0 27.5 25 0 30 25 0 32.5 25 0
|
||||
35 25 0 37.5 25 0 40 25 0 42.5 25 0
|
||||
45 25 0 47.5 25 0 50 25 0 52.5 25 0
|
||||
55 25 0 57.5 25 0 60 25 0 0 27.5 0
|
||||
2.5 27.5 0 5 27.5 0 7.5 27.5 0 10 27.5 0
|
||||
12.5 27.5 0 15 27.5 0 17.5 27.5 0 20 27.5 0
|
||||
22.5 27.5 0 25 27.5 0 27.5 27.5 0 30 27.5 0
|
||||
32.5 27.5 0 35 27.5 0 37.5 27.5 0 40 27.5 0
|
||||
42.5 27.5 0 45 27.5 0 47.5 27.5 0 50 27.5 0
|
||||
52.5 27.5 0 55 27.5 0 57.5 27.5 0 60 27.5 0
|
||||
0 30 0 2.5 30 0 5 30 0 7.5 30 0
|
||||
10 30 0 12.5 30 0 15 30 0 17.5 30 0
|
||||
20 30 0 22.5 30 0 25 30 0 27.5 30 0
|
||||
30 30 0 32.5 30 0 35 30 0 37.5 30 0
|
||||
40 30 0 42.5 30 0 45 30 0 47.5 30 0
|
||||
50 30 0 52.5 30 0 55 30 0 57.5 30 0
|
||||
60 30 0 0 32.5 0 2.5 32.5 0 5 32.5 0
|
||||
7.5 32.5 0 10 32.5 0 12.5 32.5 0 15 32.5 0
|
||||
17.5 32.5 0 20 32.5 0 22.5 32.5 0 25 32.5 0
|
||||
27.5 32.5 0 30 32.5 0 32.5 32.5 0 35 32.5 0
|
||||
37.5 32.5 0 40 32.5 0 42.5 32.5 0 45 32.5 0
|
||||
47.5 32.5 0 50 32.5 0 52.5 32.5 0 55 32.5 0
|
||||
57.5 32.5 0 60 32.5 0 0 35 0 2.5 35 0
|
||||
5 35 0 7.5 35 0 10 35 0 12.5 35 0
|
||||
15 35 0 17.5 35 0 20 35 0 22.5 35 0
|
||||
25 35 0 27.5 35 0 30 35 0 32.5 35 0
|
||||
35 35 0 37.5 35 0 40 35 0 42.5 35 0
|
||||
45 35 0 47.5 35 0 50 35 0 52.5 35 0
|
||||
55 35 0 57.5 35 0 60 35 0 0 37.5 0
|
||||
2.5 37.5 0 5 37.5 0 7.5 37.5 0 10 37.5 0
|
||||
12.5 37.5 0 15 37.5 0 17.5 37.5 0 20 37.5 0
|
||||
22.5 37.5 0 25 37.5 0 27.5 37.5 0 30 37.5 0
|
||||
32.5 37.5 0 35 37.5 0 37.5 37.5 0 40 37.5 0
|
||||
42.5 37.5 0 45 37.5 0 47.5 37.5 0 50 37.5 0
|
||||
52.5 37.5 0 55 37.5 0 57.5 37.5 0 60 37.5 0
|
||||
0 40 0 2.5 40 0 5 40 0 7.5 40 0
|
||||
10 40 0 12.5 40 0 15 40 0 17.5 40 0
|
||||
20 40 0 22.5 40 0 25 40 0 27.5 40 0
|
||||
30 40 0 32.5 40 0 35 40 0 37.5 40 0
|
||||
40 40 0 42.5 40 0 45 40 0 47.5 40 0
|
||||
50 40 0 52.5 40 0 55 40 0 57.5 40 0
|
||||
60 40 0
|
||||
</DataArray>
|
||||
</Points>
|
||||
<Cells>
|
||||
<DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii">
|
||||
0 1 3 2 1 4 5 3 4 6 7 5
|
||||
6 8 9 7 8 10 11 9 10 12 13 11
|
||||
12 14 15 13 14 16 17 15 16 18 19 17
|
||||
18 20 21 19 20 22 23 21 22 24 25 23
|
||||
24 26 27 25 26 28 29 27 28 30 31 29
|
||||
30 32 33 31 32 34 35 33 34 36 37 35
|
||||
36 38 39 37 38 40 41 39 40 42 43 41
|
||||
42 44 45 43 44 46 47 45 46 48 49 47
|
||||
2 3 51 50 3 5 52 51 5 7 53 52
|
||||
7 9 54 53 9 11 55 54 11 13 56 55
|
||||
13 15 57 56 15 17 58 57 17 19 59 58
|
||||
19 21 60 59 21 23 61 60 23 25 62 61
|
||||
25 27 63 62 27 29 64 63 29 31 65 64
|
||||
31 33 66 65 33 35 67 66 35 37 68 67
|
||||
37 39 69 68 39 41 70 69 41 43 71 70
|
||||
43 45 72 71 45 47 73 72 47 49 74 73
|
||||
50 51 76 75 51 52 77 76 52 53 78 77
|
||||
53 54 79 78 54 55 80 79 55 56 81 80
|
||||
56 57 82 81 57 58 83 82 58 59 84 83
|
||||
59 60 85 84 60 61 86 85 61 62 87 86
|
||||
62 63 88 87 63 64 89 88 64 65 90 89
|
||||
65 66 91 90 66 67 92 91 67 68 93 92
|
||||
68 69 94 93 69 70 95 94 70 71 96 95
|
||||
71 72 97 96 72 73 98 97 73 74 99 98
|
||||
75 76 101 100 76 77 102 101 77 78 103 102
|
||||
78 79 104 103 79 80 105 104 80 81 106 105
|
||||
81 82 107 106 82 83 108 107 83 84 109 108
|
||||
84 85 110 109 85 86 111 110 86 87 112 111
|
||||
87 88 113 112 88 89 114 113 89 90 115 114
|
||||
90 91 116 115 91 92 117 116 92 93 118 117
|
||||
93 94 119 118 94 95 120 119 95 96 121 120
|
||||
96 97 122 121 97 98 123 122 98 99 124 123
|
||||
100 101 126 125 101 102 127 126 102 103 128 127
|
||||
103 104 129 128 104 105 130 129 105 106 131 130
|
||||
106 107 132 131 107 108 133 132 108 109 134 133
|
||||
109 110 135 134 110 111 136 135 111 112 137 136
|
||||
112 113 138 137 113 114 139 138 114 115 140 139
|
||||
115 116 141 140 116 117 142 141 117 118 143 142
|
||||
118 119 144 143 119 120 145 144 120 121 146 145
|
||||
121 122 147 146 122 123 148 147 123 124 149 148
|
||||
125 126 151 150 126 127 152 151 127 128 153 152
|
||||
128 129 154 153 129 130 155 154 130 131 156 155
|
||||
131 132 157 156 132 133 158 157 133 134 159 158
|
||||
134 135 160 159 135 136 161 160 136 137 162 161
|
||||
137 138 163 162 138 139 164 163 139 140 165 164
|
||||
140 141 166 165 141 142 167 166 142 143 168 167
|
||||
143 144 169 168 144 145 170 169 145 146 171 170
|
||||
146 147 172 171 147 148 173 172 148 149 174 173
|
||||
150 151 176 175 151 152 177 176 152 153 178 177
|
||||
153 154 179 178 154 155 180 179 155 156 181 180
|
||||
156 157 182 181 157 158 183 182 158 159 184 183
|
||||
159 160 185 184 160 161 186 185 161 162 187 186
|
||||
162 163 188 187 163 164 189 188 164 165 190 189
|
||||
165 166 191 190 166 167 192 191 167 168 193 192
|
||||
168 169 194 193 169 170 195 194 170 171 196 195
|
||||
171 172 197 196 172 173 198 197 173 174 199 198
|
||||
175 176 201 200 176 177 202 201 177 178 203 202
|
||||
178 179 204 203 179 180 205 204 180 181 206 205
|
||||
181 182 207 206 182 183 208 207 183 184 209 208
|
||||
184 185 210 209 185 186 211 210 186 187 212 211
|
||||
187 188 213 212 188 189 214 213 189 190 215 214
|
||||
190 191 216 215 191 192 217 216 192 193 218 217
|
||||
193 194 219 218 194 195 220 219 195 196 221 220
|
||||
196 197 222 221 197 198 223 222 198 199 224 223
|
||||
200 201 226 225 201 202 227 226 202 203 228 227
|
||||
203 204 229 228 204 205 230 229 205 206 231 230
|
||||
206 207 232 231 207 208 233 232 208 209 234 233
|
||||
209 210 235 234 210 211 236 235 211 212 237 236
|
||||
212 213 238 237 213 214 239 238 214 215 240 239
|
||||
215 216 241 240 216 217 242 241 217 218 243 242
|
||||
218 219 244 243 219 220 245 244 220 221 246 245
|
||||
221 222 247 246 222 223 248 247 223 224 249 248
|
||||
225 226 251 250 226 227 252 251 227 228 253 252
|
||||
228 229 254 253 229 230 255 254 230 231 256 255
|
||||
231 232 257 256 232 233 258 257 233 234 259 258
|
||||
234 235 260 259 235 236 261 260 236 237 262 261
|
||||
237 238 263 262 238 239 264 263 239 240 265 264
|
||||
240 241 266 265 241 242 267 266 242 243 268 267
|
||||
243 244 269 268 244 245 270 269 245 246 271 270
|
||||
246 247 272 271 247 248 273 272 248 249 274 273
|
||||
250 251 276 275 251 252 277 276 252 253 278 277
|
||||
253 254 279 278 254 255 280 279 255 256 281 280
|
||||
256 257 282 281 257 258 283 282 258 259 284 283
|
||||
259 260 285 284 260 261 286 285 261 262 287 286
|
||||
262 263 288 287 263 264 289 288 264 265 290 289
|
||||
265 266 291 290 266 267 292 291 267 268 293 292
|
||||
268 269 294 293 269 270 295 294 270 271 296 295
|
||||
271 272 297 296 272 273 298 297 273 274 299 298
|
||||
275 276 301 300 276 277 302 301 277 278 303 302
|
||||
278 279 304 303 279 280 305 304 280 281 306 305
|
||||
281 282 307 306 282 283 308 307 283 284 309 308
|
||||
284 285 310 309 285 286 311 310 286 287 312 311
|
||||
287 288 313 312 288 289 314 313 289 290 315 314
|
||||
290 291 316 315 291 292 317 316 292 293 318 317
|
||||
293 294 319 318 294 295 320 319 295 296 321 320
|
||||
296 297 322 321 297 298 323 322 298 299 324 323
|
||||
300 301 326 325 301 302 327 326 302 303 328 327
|
||||
303 304 329 328 304 305 330 329 305 306 331 330
|
||||
306 307 332 331 307 308 333 332 308 309 334 333
|
||||
309 310 335 334 310 311 336 335 311 312 337 336
|
||||
312 313 338 337 313 314 339 338 314 315 340 339
|
||||
315 316 341 340 316 317 342 341 317 318 343 342
|
||||
318 319 344 343 319 320 345 344 320 321 346 345
|
||||
321 322 347 346 322 323 348 347 323 324 349 348
|
||||
325 326 351 350 326 327 352 351 327 328 353 352
|
||||
328 329 354 353 329 330 355 354 330 331 356 355
|
||||
331 332 357 356 332 333 358 357 333 334 359 358
|
||||
334 335 360 359 335 336 361 360 336 337 362 361
|
||||
337 338 363 362 338 339 364 363 339 340 365 364
|
||||
340 341 366 365 341 342 367 366 342 343 368 367
|
||||
343 344 369 368 344 345 370 369 345 346 371 370
|
||||
346 347 372 371 347 348 373 372 348 349 374 373
|
||||
350 351 376 375 351 352 377 376 352 353 378 377
|
||||
353 354 379 378 354 355 380 379 355 356 381 380
|
||||
356 357 382 381 357 358 383 382 358 359 384 383
|
||||
359 360 385 384 360 361 386 385 361 362 387 386
|
||||
362 363 388 387 363 364 389 388 364 365 390 389
|
||||
365 366 391 390 366 367 392 391 367 368 393 392
|
||||
368 369 394 393 369 370 395 394 370 371 396 395
|
||||
371 372 397 396 372 373 398 397 373 374 399 398
|
||||
375 376 401 400 376 377 402 401 377 378 403 402
|
||||
378 379 404 403 379 380 405 404 380 381 406 405
|
||||
381 382 407 406 382 383 408 407 383 384 409 408
|
||||
384 385 410 409 385 386 411 410 386 387 412 411
|
||||
387 388 413 412 388 389 414 413 389 390 415 414
|
||||
390 391 416 415 391 392 417 416 392 393 418 417
|
||||
393 394 419 418 394 395 420 419 395 396 421 420
|
||||
396 397 422 421 397 398 423 422 398 399 424 423
|
||||
</DataArray>
|
||||
<DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii">
|
||||
4 8 12 16 20 24 28 32 36 40 44 48
|
||||
52 56 60 64 68 72 76 80 84 88 92 96
|
||||
100 104 108 112 116 120 124 128 132 136 140 144
|
||||
148 152 156 160 164 168 172 176 180 184 188 192
|
||||
196 200 204 208 212 216 220 224 228 232 236 240
|
||||
244 248 252 256 260 264 268 272 276 280 284 288
|
||||
292 296 300 304 308 312 316 320 324 328 332 336
|
||||
340 344 348 352 356 360 364 368 372 376 380 384
|
||||
388 392 396 400 404 408 412 416 420 424 428 432
|
||||
436 440 444 448 452 456 460 464 468 472 476 480
|
||||
484 488 492 496 500 504 508 512 516 520 524 528
|
||||
532 536 540 544 548 552 556 560 564 568 572 576
|
||||
580 584 588 592 596 600 604 608 612 616 620 624
|
||||
628 632 636 640 644 648 652 656 660 664 668 672
|
||||
676 680 684 688 692 696 700 704 708 712 716 720
|
||||
724 728 732 736 740 744 748 752 756 760 764 768
|
||||
772 776 780 784 788 792 796 800 804 808 812 816
|
||||
820 824 828 832 836 840 844 848 852 856 860 864
|
||||
868 872 876 880 884 888 892 896 900 904 908 912
|
||||
916 920 924 928 932 936 940 944 948 952 956 960
|
||||
964 968 972 976 980 984 988 992 996 1000 1004 1008
|
||||
1012 1016 1020 1024 1028 1032 1036 1040 1044 1048 1052 1056
|
||||
1060 1064 1068 1072 1076 1080 1084 1088 1092 1096 1100 1104
|
||||
1108 1112 1116 1120 1124 1128 1132 1136 1140 1144 1148 1152
|
||||
1156 1160 1164 1168 1172 1176 1180 1184 1188 1192 1196 1200
|
||||
1204 1208 1212 1216 1220 1224 1228 1232 1236 1240 1244 1248
|
||||
1252 1256 1260 1264 1268 1272 1276 1280 1284 1288 1292 1296
|
||||
1300 1304 1308 1312 1316 1320 1324 1328 1332 1336 1340 1344
|
||||
1348 1352 1356 1360 1364 1368 1372 1376 1380 1384 1388 1392
|
||||
1396 1400 1404 1408 1412 1416 1420 1424 1428 1432 1436 1440
|
||||
1444 1448 1452 1456 1460 1464 1468 1472 1476 1480 1484 1488
|
||||
1492 1496 1500 1504 1508 1512 1516 1520 1524 1528 1532 1536
|
||||
</DataArray>
|
||||
<DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii">
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
9 9 9 9 9 9 9 9 9 9 9 9
|
||||
</DataArray>
|
||||
</Cells>
|
||||
</Piece>
|
||||
</UnstructuredGrid>
|
||||
</VTKFile>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user