mirror of
https://github.com/smyalygames/FiniteVolumeGPU_HIP.git
synced 2025-05-18 06:24:11 +02:00
Recover deleted files from commit e2b1281
This commit is contained in:
parent
1d7c50241f
commit
b312923ce6
34
Jobs/job_lumi.slrum
Normal file
34
Jobs/job_lumi.slrum
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
#!/bin/bash -e
|
||||||
|
#SBATCH --job-name=lumi
|
||||||
|
#SBATCH --account=project_4650000xx
|
||||||
|
#SBATCH --time=00:10:00
|
||||||
|
#SBATCH --partition=dev-g
|
||||||
|
#SBATCH --nodes=1
|
||||||
|
#SBATCH --ntasks-per-node=2
|
||||||
|
#SBATCH --gpus=2
|
||||||
|
#SBATCH --gpus-per-node=2
|
||||||
|
#SBATCH -o %x-%j.out
|
||||||
|
#
|
||||||
|
|
||||||
|
N=$SLURM_JOB_NUM_NODES
|
||||||
|
echo "--nbr of nodes:", $N
|
||||||
|
echo "--total nbr of gpus:", $SLURM_NTASKS
|
||||||
|
|
||||||
|
Mydir=/project/project_4650000xx
|
||||||
|
Myapplication=${Mydir}/FiniteVolumeGPU_hip/mpiTesting.py
|
||||||
|
|
||||||
|
#modules
|
||||||
|
ml LUMI/23.03 partition/G
|
||||||
|
ml lumi-container-wrapper
|
||||||
|
ml cray-python/3.9.13.1
|
||||||
|
ml rocm/5.2.3
|
||||||
|
|
||||||
|
ml craype-accel-amd-gfx90a
|
||||||
|
ml cray-mpich/8.1.27
|
||||||
|
|
||||||
|
#Enable GPU-aware MPI
|
||||||
|
export MPICH_GPU_SUPPORT_ENABLED=1
|
||||||
|
|
||||||
|
export PATH="/project/project_4650000xx/FiniteVolumeGPU_hip/MyCondaEnv/bin:$PATH"
|
||||||
|
|
||||||
|
srun python ${Myapplication} -nx 1024 -ny 1024 --profile
|
674
LICENSE
Normal file
674
LICENSE
Normal file
@ -0,0 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program 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 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
45
README.md
Normal file
45
README.md
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# FiniteVolumeGPU
|
||||||
|
|
||||||
|
This is a HIP version of the [FiniteVolume code](https://github.com/babrodtk/FiniteVolumeGPU) (work in progress). It is a Python software package that implements several finite volume discretizations on Cartesian grids for the shallow water equations and the Euler equations.
|
||||||
|
|
||||||
|
## Setup
|
||||||
|
A good place to start exploring this codebase is the notebooks. Complete the following steps to run the notebooks:
|
||||||
|
|
||||||
|
1. Install conda (see e.g. Miniconda or Anaconda)
|
||||||
|
2. Change directory to the repository root and run the following commands
|
||||||
|
3. conda env create -f conda_environment.yml
|
||||||
|
4. conda activate ShallowWaterGPU
|
||||||
|
5. jupyter notebook
|
||||||
|
|
||||||
|
Make sure you are running the correct kernel ("conda:ShallowWaterGPU"). If not, change kernel using the "Kernel"-menu in the notebook.
|
||||||
|
|
||||||
|
If you do not need to run notebooks you may use the conda environment found in conda_environment_hpc.yml
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
Have a look at the conda documentation and https://towardsdatascience.com/how-to-set-up-anaconda-and-jupyter-notebook-the-right-way-de3b7623ea4a
|
||||||
|
|
||||||
|
## Setup on LUMI-G
|
||||||
|
Here is a step-by-step guide on installing packages on LUMI-G
|
||||||
|
|
||||||
|
### Step 0: load modules
|
||||||
|
```
|
||||||
|
ml LUMI/23.03
|
||||||
|
ml lumi-container-wrapper
|
||||||
|
ml cray-python/3.9.13.1
|
||||||
|
```
|
||||||
|
|
||||||
|
### Step 1: run conda-container
|
||||||
|
Installation via conda can be done as:
|
||||||
|
```
|
||||||
|
conda-containerize new --prefix MyCondaEnv conda_environment_lumi.yml
|
||||||
|
```
|
||||||
|
where the file `conda_environment_lumi.yml` contains packages to be installed.
|
||||||
|
|
||||||
|
### Step 2: Set the env. variable to search for binaries
|
||||||
|
```
|
||||||
|
export the bin path: export PATH="$PWD/MyCondaEnv/bin:$PATH"
|
||||||
|
```
|
||||||
|
### An alternative: Convert to a singularity container with cotainr
|
||||||
|
```
|
||||||
|
cotainr build my_container.sif --system=lumi-g --conda-env=conda_environment_lumi.yml
|
||||||
|
```
|
62
SYSTEMS.md
Normal file
62
SYSTEMS.md
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
$ANSIBLE_VAULT;1.1;AES256
|
||||||
|
61316265663939333638336466323036663861343233316466646432313138653633623662353937
|
||||||
|
3232313165656633346432376237383566363537366534310a303231343936663438653835373161
|
||||||
|
35616161323432653062323164623861353065333761663136313137333732313230626665386336
|
||||||
|
6166656538396463370a356166316363326133313864386536323236346634323537393639653038
|
||||||
|
66336337336132613061353964613638326233356336323962366531333932366539366339623563
|
||||||
|
36333365326463616634323939333062363263636663373635653064626138363464666233316561
|
||||||
|
63393735393233616437386537393739393433663631313864646535636262616336333631396166
|
||||||
|
38643636323530386565396338623366393232313838356536303537393338393634666632656234
|
||||||
|
65353930303762333639376638336364303439306132626531326132376264623063376464636430
|
||||||
|
32333536386134333136313139313861306364333037323363393463333664633764653937623866
|
||||||
|
34313064346261313330373132353563343761323435393930303136353865303163373937623831
|
||||||
|
64343038373162333039653161643233353764633337366434396638376530636261323362373434
|
||||||
|
38393630613065356632663533333331633039663935663732353234643131306665343339373265
|
||||||
|
64356563653838613337663132663234356462343333623139626662363764656239326637653832
|
||||||
|
35396636643937336431623531306133643137623831333936313839333738333730373136666336
|
||||||
|
35623965643664343164373630313362656663386638376237616134343631386366313336626138
|
||||||
|
62376436383837376539663438346431633138383363633862356366376537393932626262383637
|
||||||
|
31323365333139653736623233636233323162343039663035346135326638633430303134396337
|
||||||
|
36353264313835346130643736663665386364343835643166383361316631373338663731373335
|
||||||
|
30313530326662663937666330643565363565616566633333363535656539656531666266613638
|
||||||
|
30306264613438363265646332386535383238373433396337633636616532626161343236336533
|
||||||
|
36366362653137333739353737386563613136653164383437316237643533633133313735633363
|
||||||
|
64326433356266363133343339626333633063326533383632353639613163663966376465396231
|
||||||
|
36663034363534396430316463386564663465323036613636343136643262666566303533346439
|
||||||
|
63396466656639623836613130363835346435633437666463363333356231343038356434343861
|
||||||
|
66643636633739336666316566653136363862346336353862653130346335363334616430366435
|
||||||
|
30376365383262326438306266366265363030353764633630333034663037643037343132303631
|
||||||
|
39316364366234363339363130333765616432306331373566393530653963356539636437383062
|
||||||
|
34633938643563656363633864656361643539663833356638356365373061663964363530393535
|
||||||
|
37646533386235613763396638393539303062326239633238373763326561313634313265613135
|
||||||
|
64646138313562313732393732303133343234323438616165326530333234626363393735636530
|
||||||
|
62353735313231353662353533636134306530623339383730306332613636663366653566313935
|
||||||
|
32343935353566656130393533323639353863666436333839386463396337336635356663373136
|
||||||
|
61323734613239396236393266363631313465363630306565636663396235626132336339623938
|
||||||
|
62383435643661623938393662363262376566613365613465323432343534356433323330666133
|
||||||
|
30303963656635303734316539333038663962626331313366666337663165323230646564623935
|
||||||
|
61316630353739386365323339626166323562616630383538393733353864396565353039656333
|
||||||
|
30343038636231363531383061613836653038373937616163643963393231356235626531366239
|
||||||
|
62343333326434636665363931376235313535343135626261336439636663323233383565633964
|
||||||
|
65333830613131396630336337646230393038386536336365313738316335386261393838383961
|
||||||
|
64656331363738616539346663613261386639353437316231636533353031336464383432623939
|
||||||
|
65386164396231393735643563663337643563633233373338643630313739373861356166616463
|
||||||
|
35306263333963663434376263396464323135346663376334356134393066653439376263376231
|
||||||
|
30333730383163366636323533393334336331633234306536376634313735613263366537346536
|
||||||
|
62366564383861656662353738366665396639313833323038356661306135393338333466333563
|
||||||
|
32653861346166663163383036386432343833333137663462343030363762663139366534326466
|
||||||
|
66313864623438336164333430613766373430656536323964633863333931643036656563353639
|
||||||
|
30313835666366383035343031643265386263316165323537613636656533376239633964393866
|
||||||
|
61646163343032313036303738643763383364663134356634373262633361383035306231636364
|
||||||
|
39333232636538643033313438396332383962656131363365666566633239366532326336363133
|
||||||
|
38393064643030333538333562643435663434343863383834663266373337336433313663646164
|
||||||
|
36343334343965623830613736393231666361643239663062393239613233376335383362666161
|
||||||
|
66383035653330373736613234303631386163656561383138613363613539396332376162316131
|
||||||
|
61313532653531653836343731636535623066383231613635316432323331623761383833623333
|
||||||
|
39343632623961613561373261653939636363366531303839336237383166363733303538363237
|
||||||
|
36373362636263666334316163633766303334373033636539353464393536356466636664333665
|
||||||
|
32643135626366666137626464393961366165383334343063356334373534633764326162363837
|
||||||
|
38643662326266313464343464646166643235663663303761313639376537306337353863336264
|
||||||
|
66376335333738366265343636376363366365306137336665623466626261653937656461303332
|
||||||
|
32613561616662383032393562613831626666373134303032626134313262363830326530643632
|
||||||
|
61366133663564313933366430396430353762386133396436633839303766653765
|
36
conda_environment_lumi.yml
Normal file
36
conda_environment_lumi.yml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
# Assumes that conda, pip, build-essentials and cuda are installed
|
||||||
|
---
|
||||||
|
name: ShallowWaterGPU_HPC
|
||||||
|
channels:
|
||||||
|
- conda-forge
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
- python=3.9
|
||||||
|
- numpy
|
||||||
|
- mpi4py
|
||||||
|
- six
|
||||||
|
- pytools
|
||||||
|
- netcdf4
|
||||||
|
- scipy
|
||||||
|
- pip:
|
||||||
|
- hip-python
|
||||||
|
- hip-python-as-cuda
|
||||||
|
- -i https://test.pypi.org/simple/
|
||||||
|
|
||||||
|
|
||||||
|
#On LUMI-G
|
||||||
|
#module load LUMI/23.03
|
||||||
|
#module load lumi-container-wrapper
|
||||||
|
#ml cray-python/3.9.13.1
|
||||||
|
#conda-containerize new --prefix MyCondaEnv conda_environment_lumi.yml
|
||||||
|
# export the bin path: export PATH="$PWD/MyCondaEnv/bin:$PATH"
|
||||||
|
#
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Install conda environment (one-time operation):
|
||||||
|
# $ conda env create -f conda_environment_hpc.yml
|
||||||
|
# Activate environment and install the following packages using pip:
|
||||||
|
# $ conda activate ShallowWaterGPU_HPC
|
||||||
|
# - pycuda: $ pip3 install --no-deps -U pycuda
|
||||||
|
# on Windows: make sure your visual studio c++ compiler is available in PATH
|
||||||
|
# PATH should have something like C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\
|
230
mpiTesting.py
Normal file
230
mpiTesting.py
Normal file
@ -0,0 +1,230 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
"""
|
||||||
|
This python module implements MPI simulations for benchmarking
|
||||||
|
|
||||||
|
Copyright (C) 2018 SINTEF ICT
|
||||||
|
|
||||||
|
This program 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 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
import numpy as np
|
||||||
|
import gc
|
||||||
|
import time
|
||||||
|
import json
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
|
||||||
|
#GPU-aware MPI
|
||||||
|
from os import environ
|
||||||
|
if environ.get("MPICH_GPU_SUPPORT_ENABLED", False):
|
||||||
|
from ctypes import CDLL, RTLD_GLOBAL
|
||||||
|
CDLL(f"{environ.get('CRAY_MPICH_ROOTDIR')}/gtl/lib/libmpi_gtl_hsa.so", mode=RTLD_GLOBAL)
|
||||||
|
|
||||||
|
# MPI
|
||||||
|
from mpi4py import MPI
|
||||||
|
|
||||||
|
# CUDA
|
||||||
|
#import pycuda.driver as cuda
|
||||||
|
from hip import hip
|
||||||
|
|
||||||
|
# Simulator engine etc
|
||||||
|
from GPUSimulators import MPISimulator, Common, CudaContext
|
||||||
|
from GPUSimulators import EE2D_KP07_dimsplit
|
||||||
|
from GPUSimulators.helpers import InitialConditions as IC
|
||||||
|
from GPUSimulators.Simulator import BoundaryCondition as BC
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
parser = argparse.ArgumentParser(description='Strong and weak scaling experiments.')
|
||||||
|
parser.add_argument('-nx', type=int, default=128)
|
||||||
|
parser.add_argument('-ny', type=int, default=128)
|
||||||
|
parser.add_argument('--profile', action='store_true') # default: False
|
||||||
|
|
||||||
|
def hip_check(call_result):
|
||||||
|
err = call_result[0]
|
||||||
|
result = call_result[1:]
|
||||||
|
if len(result) == 1:
|
||||||
|
result = result[0]
|
||||||
|
if isinstance(err, hip.hipError_t) and err != hip.hipError_t.hipSuccess:
|
||||||
|
raise RuntimeError(str(err))
|
||||||
|
elif (
|
||||||
|
isinstance(err, hiprtc.hiprtcResult)
|
||||||
|
and err != hiprtc.hiprtcResult.HIPRTC_SUCCESS
|
||||||
|
):
|
||||||
|
raise RuntimeError(str(err))
|
||||||
|
return result
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
if(args.profile):
|
||||||
|
profiling_data = {}
|
||||||
|
# profiling: total run time
|
||||||
|
t_total_start = time.time()
|
||||||
|
t_init_start = time.time()
|
||||||
|
|
||||||
|
|
||||||
|
# Get MPI COMM to use
|
||||||
|
comm = MPI.COMM_WORLD
|
||||||
|
|
||||||
|
|
||||||
|
####
|
||||||
|
# Initialize logging
|
||||||
|
####
|
||||||
|
log_level_console = 20
|
||||||
|
log_level_file = 10
|
||||||
|
log_filename = 'mpi_' + str(comm.rank) + '.log'
|
||||||
|
logger = logging.getLogger('GPUSimulators')
|
||||||
|
logger.setLevel(min(log_level_console, log_level_file))
|
||||||
|
|
||||||
|
ch = logging.StreamHandler()
|
||||||
|
ch.setLevel(log_level_console)
|
||||||
|
logger.addHandler(ch)
|
||||||
|
logger.info("Console logger using level %s",
|
||||||
|
logging.getLevelName(log_level_console))
|
||||||
|
|
||||||
|
fh = logging.FileHandler(log_filename)
|
||||||
|
formatter = logging.Formatter(
|
||||||
|
'%(asctime)s:%(name)s:%(levelname)s: %(message)s')
|
||||||
|
fh.setFormatter(formatter)
|
||||||
|
fh.setLevel(log_level_file)
|
||||||
|
logger.addHandler(fh)
|
||||||
|
logger.info("File logger using level %s to %s",
|
||||||
|
logging.getLevelName(log_level_file), log_filename)
|
||||||
|
|
||||||
|
|
||||||
|
####
|
||||||
|
# Initialize MPI grid etc
|
||||||
|
####
|
||||||
|
logger.info("Creating MPI grid")
|
||||||
|
grid = MPISimulator.MPIGrid(MPI.COMM_WORLD)
|
||||||
|
|
||||||
|
|
||||||
|
####
|
||||||
|
# Initialize CUDA
|
||||||
|
####
|
||||||
|
#cuda.init(flags=0)
|
||||||
|
#logger.info("Initializing CUDA")
|
||||||
|
local_rank = grid.getLocalRank()
|
||||||
|
#num_cuda_devices = cuda.Device.count()
|
||||||
|
num_cuda_devices = hip_check(hip.hipGetDeviceCount())
|
||||||
|
cuda_device = local_rank % num_cuda_devices
|
||||||
|
logger.info("Process %s using CUDA device %s", str(local_rank), str(cuda_device))
|
||||||
|
cuda_context = CudaContext.CudaContext(device=cuda_device, autotuning=False)
|
||||||
|
|
||||||
|
|
||||||
|
####
|
||||||
|
# Set initial conditions
|
||||||
|
####
|
||||||
|
|
||||||
|
# DEBUGGING - setting random seed
|
||||||
|
np.random.seed(42)
|
||||||
|
|
||||||
|
logger.info("Generating initial conditions")
|
||||||
|
nx = args.nx
|
||||||
|
ny = args.ny
|
||||||
|
|
||||||
|
dt = 0.000001
|
||||||
|
|
||||||
|
gamma = 1.4
|
||||||
|
#save_times = np.linspace(0, 0.000009, 2)
|
||||||
|
#save_times = np.linspace(0, 0.000099, 11)
|
||||||
|
#save_times = np.linspace(0, 0.000099, 2)
|
||||||
|
save_times = np.linspace(0, 0.0000999, 2)
|
||||||
|
outfile = "mpi_out_" + str(MPI.COMM_WORLD.rank) + ".nc"
|
||||||
|
save_var_names = ['rho', 'rho_u', 'rho_v', 'E']
|
||||||
|
|
||||||
|
arguments = IC.genKelvinHelmholtz(nx, ny, gamma, grid=grid)
|
||||||
|
arguments['context'] = cuda_context
|
||||||
|
arguments['theta'] = 1.2
|
||||||
|
arguments['grid'] = grid
|
||||||
|
|
||||||
|
if(args.profile):
|
||||||
|
t_init_end = time.time()
|
||||||
|
t_init = t_init_end - t_init_start
|
||||||
|
profiling_data["t_init"] = t_init
|
||||||
|
|
||||||
|
####
|
||||||
|
# Run simulation
|
||||||
|
####
|
||||||
|
logger.info("Running simulation")
|
||||||
|
# Helper function to create MPI simulator
|
||||||
|
|
||||||
|
|
||||||
|
def genSim(grid, **kwargs):
|
||||||
|
local_sim = EE2D_KP07_dimsplit.EE2D_KP07_dimsplit(**kwargs)
|
||||||
|
sim = MPISimulator.MPISimulator(local_sim, grid)
|
||||||
|
return sim
|
||||||
|
|
||||||
|
|
||||||
|
outfile, sim_runner_profiling_data, sim_profiling_data = Common.runSimulation(
|
||||||
|
genSim, arguments, outfile, save_times, save_var_names, dt)
|
||||||
|
|
||||||
|
if(args.profile):
|
||||||
|
t_total_end = time.time()
|
||||||
|
t_total = t_total_end - t_total_start
|
||||||
|
profiling_data["t_total"] = t_total
|
||||||
|
print("Total run time on rank " + str(MPI.COMM_WORLD.rank) + " is " + str(t_total) + " s")
|
||||||
|
|
||||||
|
# write profiling to json file
|
||||||
|
if(args.profile and MPI.COMM_WORLD.rank == 0):
|
||||||
|
job_id = ""
|
||||||
|
if "SLURM_JOB_ID" in os.environ:
|
||||||
|
job_id = int(os.environ["SLURM_JOB_ID"])
|
||||||
|
allocated_nodes = int(os.environ["SLURM_JOB_NUM_NODES"])
|
||||||
|
allocated_gpus = int(os.environ["HIP_VISIBLE_DEVICES"].count(",") + 1)
|
||||||
|
# allocated_gpus = int(os.environ["CUDA_VISIBLE_DEVICES"].count(",") + 1)
|
||||||
|
profiling_file = "MPI_jobid_" + \
|
||||||
|
str(job_id) + "_" + str(allocated_nodes) + "_nodes_and_" + str(allocated_gpus) + "_GPUs_profiling.json"
|
||||||
|
profiling_data["outfile"] = outfile
|
||||||
|
else:
|
||||||
|
profiling_file = "MPI_" + str(MPI.COMM_WORLD.size) + "_procs_and_" + str(num_cuda_devices) + "_GPUs_profiling.json"
|
||||||
|
|
||||||
|
for stage in sim_runner_profiling_data["start"].keys():
|
||||||
|
profiling_data[stage] = sim_runner_profiling_data["end"][stage] - sim_runner_profiling_data["start"][stage]
|
||||||
|
|
||||||
|
for stage in sim_profiling_data["start"].keys():
|
||||||
|
profiling_data[stage] = sim_profiling_data["end"][stage] - sim_profiling_data["start"][stage]
|
||||||
|
|
||||||
|
profiling_data["nx"] = nx
|
||||||
|
profiling_data["ny"] = ny
|
||||||
|
profiling_data["dt"] = dt
|
||||||
|
profiling_data["n_time_steps"] = sim_profiling_data["n_time_steps"]
|
||||||
|
|
||||||
|
profiling_data["slurm_job_id"] = job_id
|
||||||
|
profiling_data["n_cuda_devices"] = str(num_cuda_devices)
|
||||||
|
profiling_data["n_processes"] = str(MPI.COMM_WORLD.size)
|
||||||
|
profiling_data["git_hash"] = Common.getGitHash()
|
||||||
|
profiling_data["git_status"] = Common.getGitStatus()
|
||||||
|
|
||||||
|
with open(profiling_file, "w") as write_file:
|
||||||
|
json.dump(profiling_data, write_file)
|
||||||
|
|
||||||
|
####
|
||||||
|
# Clean shutdown
|
||||||
|
####
|
||||||
|
sim = None
|
||||||
|
local_sim = None
|
||||||
|
cuda_context = None
|
||||||
|
arguments = None
|
||||||
|
logging.shutdown()
|
||||||
|
gc.collect()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
####
|
||||||
|
# Print completion and exit
|
||||||
|
####
|
||||||
|
print("Completed!")
|
||||||
|
exit(0)
|
1042
reference/swashes_1_nx=1024.csv
Normal file
1042
reference/swashes_1_nx=1024.csv
Normal file
File diff suppressed because it is too large
Load Diff
146
reference/swashes_1_nx=128.csv
Normal file
146
reference/swashes_1_nx=128.csv
Normal file
@ -0,0 +1,146 @@
|
|||||||
|
##############################################################################
|
||||||
|
# Generated by SWASHES version 1.03.00, 2016-01-29
|
||||||
|
##############################################################################
|
||||||
|
# Dimension: 1
|
||||||
|
# Type: 3 (=Dam break)
|
||||||
|
# Domain: 1
|
||||||
|
# Choice: 1 (=on a wet domain without friction (Stoker's solution))
|
||||||
|
##############################################################################
|
||||||
|
# PARAMETERS OF THE SOLUTION
|
||||||
|
#
|
||||||
|
# Length of the domain: 10 meters
|
||||||
|
# Space step: 0.078125 meters
|
||||||
|
# Number of cells: 128
|
||||||
|
# Position of the dam: x=5 meters
|
||||||
|
# Time value: 6 seconds
|
||||||
|
##############################################################################
|
||||||
|
#
|
||||||
|
#(i-0.5)*dx h[i] u[i] topo[i] q[i] topo[i]+h[i] Fr[i]=Froude topo[i]+hc[i]
|
||||||
|
0.0390625 0.005 0 0 0 0.005 0 0
|
||||||
|
0.117188 0.005 0 0 0 0.005 0 0
|
||||||
|
0.195312 0.005 0 0 0 0.005 0 0
|
||||||
|
0.273438 0.005 0 0 0 0.005 0 0
|
||||||
|
0.351562 0.005 0 0 0 0.005 0 0
|
||||||
|
0.429688 0.005 0 0 0 0.005 0 0
|
||||||
|
0.507812 0.005 0 0 0 0.005 0 0
|
||||||
|
0.585938 0.005 0 0 0 0.005 0 0
|
||||||
|
0.664062 0.005 0 0 0 0.005 0 0
|
||||||
|
0.742188 0.005 0 0 0 0.005 0 0
|
||||||
|
0.820312 0.005 0 0 0 0.005 0 0
|
||||||
|
0.898438 0.005 0 0 0 0.005 0 0
|
||||||
|
0.976562 0.005 0 0 0 0.005 0 0
|
||||||
|
1.05469 0.005 0 0 0 0.005 0 0
|
||||||
|
1.13281 0.005 0 0 0 0.005 0 0
|
||||||
|
1.21094 0.005 0 0 0 0.005 0 0
|
||||||
|
1.28906 0.005 0 0 0 0.005 0 0
|
||||||
|
1.36719 0.005 0 0 0 0.005 0 0
|
||||||
|
1.44531 0.005 0 0 0 0.005 0 0
|
||||||
|
1.52344 0.005 0 0 0 0.005 0 0
|
||||||
|
1.60156 0.005 0 0 0 0.005 0 0
|
||||||
|
1.67969 0.005 0 0 0 0.005 0 0
|
||||||
|
1.75781 0.005 0 0 0 0.005 0 0
|
||||||
|
1.83594 0.005 0 0 0 0.005 0 0
|
||||||
|
1.91406 0.005 0 0 0 0.005 0 0
|
||||||
|
1.99219 0.005 0 0 0 0.005 0 0
|
||||||
|
2.07031 0.005 0 0 0 0.005 0 0
|
||||||
|
2.14844 0.005 0 0 0 0.005 0 0
|
||||||
|
2.22656 0.005 0 0 0 0.005 0 0
|
||||||
|
2.30469 0.005 0 0 0 0.005 0 0
|
||||||
|
2.38281 0.005 0 0 0 0.005 0 0
|
||||||
|
2.46094 0.005 0 0 0 0.005 0 0
|
||||||
|
2.53906 0.005 0 0 0 0.005 0 0
|
||||||
|
2.61719 0.005 0 0 0 0.005 0 0
|
||||||
|
2.69531 0.005 0 0 0 0.005 0 0
|
||||||
|
2.77344 0.005 0 0 0 0.005 0 0
|
||||||
|
2.85156 0.005 0 0 0 0.005 0 0
|
||||||
|
2.92969 0.005 0 0 0 0.005 0 0
|
||||||
|
3.00781 0.005 0 0 0 0.005 0 0
|
||||||
|
3.08594 0.005 0 0 0 0.005 0 0
|
||||||
|
3.16406 0.005 0 0 0 0.005 0 0
|
||||||
|
3.24219 0.005 0 0 0 0.005 0 0
|
||||||
|
3.32031 0.005 0 0 0 0.005 0 0
|
||||||
|
3.39844 0.005 0 0 0 0.005 0 0
|
||||||
|
3.47656 0.005 0 0 0 0.005 0 0
|
||||||
|
3.55469 0.005 0 0 0 0.005 0 0
|
||||||
|
3.63281 0.005 0 0 0 0.005 0 0
|
||||||
|
3.71094 0.00490073 0.00441906 0 2.16566e-005 0.00490073 0.0201542 0.000362943
|
||||||
|
3.78906 0.00470863 0.0130996 0 6.16813e-005 0.00470863 0.0609504 0.000729255
|
||||||
|
3.86719 0.00452038 0.0217802 0 9.84546e-005 0.00452038 0.103428 0.000996019
|
||||||
|
3.94531 0.00433596 0.0304607 0 0.000132076 0.00433596 0.147694 0.00121151
|
||||||
|
4.02344 0.00415538 0.0391413 0 0.000162647 0.00415538 0.193863 0.0013919
|
||||||
|
4.10156 0.00397865 0.0478218 0 0.000190266 0.00397865 0.242061 0.00154532
|
||||||
|
4.17969 0.00380575 0.0565024 0 0.000215034 0.00380575 0.292423 0.00167667
|
||||||
|
4.25781 0.0036367 0.065183 0 0.000237051 0.0036367 0.345101 0.00178925
|
||||||
|
4.33594 0.00347148 0.0738635 0 0.000256416 0.00347148 0.400256 0.00188541
|
||||||
|
4.41406 0.00331011 0.0825441 0 0.00027323 0.00331011 0.458068 0.00196696
|
||||||
|
4.49219 0.00315257 0.0912246 0 0.000287592 0.00315257 0.518734 0.0020353
|
||||||
|
4.57031 0.00299888 0.0999052 0 0.000299604 0.00299888 0.58247 0.00209158
|
||||||
|
4.64844 0.00284903 0.108586 0 0.000309364 0.00284903 0.649516 0.00213677
|
||||||
|
4.72656 0.00270302 0.117266 0 0.000316973 0.00270302 0.720135 0.00217166
|
||||||
|
4.80469 0.00256085 0.125947 0 0.000322531 0.00256085 0.794623 0.00219697
|
||||||
|
4.88281 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.96094 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.03906 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.11719 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.19531 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.27344 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.35156 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.42969 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.50781 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.58594 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.66406 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.74219 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.82031 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.89844 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.97656 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.05469 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.13281 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.21094 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.28906 0.001 0 0 0 0.001 0 0
|
||||||
|
6.36719 0.001 0 0 0 0.001 0 0
|
||||||
|
6.44531 0.001 0 0 0 0.001 0 0
|
||||||
|
6.52344 0.001 0 0 0 0.001 0 0
|
||||||
|
6.60156 0.001 0 0 0 0.001 0 0
|
||||||
|
6.67969 0.001 0 0 0 0.001 0 0
|
||||||
|
6.75781 0.001 0 0 0 0.001 0 0
|
||||||
|
6.83594 0.001 0 0 0 0.001 0 0
|
||||||
|
6.91406 0.001 0 0 0 0.001 0 0
|
||||||
|
6.99219 0.001 0 0 0 0.001 0 0
|
||||||
|
7.07031 0.001 0 0 0 0.001 0 0
|
||||||
|
7.14844 0.001 0 0 0 0.001 0 0
|
||||||
|
7.22656 0.001 0 0 0 0.001 0 0
|
||||||
|
7.30469 0.001 0 0 0 0.001 0 0
|
||||||
|
7.38281 0.001 0 0 0 0.001 0 0
|
||||||
|
7.46094 0.001 0 0 0 0.001 0 0
|
||||||
|
7.53906 0.001 0 0 0 0.001 0 0
|
||||||
|
7.61719 0.001 0 0 0 0.001 0 0
|
||||||
|
7.69531 0.001 0 0 0 0.001 0 0
|
||||||
|
7.77344 0.001 0 0 0 0.001 0 0
|
||||||
|
7.85156 0.001 0 0 0 0.001 0 0
|
||||||
|
7.92969 0.001 0 0 0 0.001 0 0
|
||||||
|
8.00781 0.001 0 0 0 0.001 0 0
|
||||||
|
8.08594 0.001 0 0 0 0.001 0 0
|
||||||
|
8.16406 0.001 0 0 0 0.001 0 0
|
||||||
|
8.24219 0.001 0 0 0 0.001 0 0
|
||||||
|
8.32031 0.001 0 0 0 0.001 0 0
|
||||||
|
8.39844 0.001 0 0 0 0.001 0 0
|
||||||
|
8.47656 0.001 0 0 0 0.001 0 0
|
||||||
|
8.55469 0.001 0 0 0 0.001 0 0
|
||||||
|
8.63281 0.001 0 0 0 0.001 0 0
|
||||||
|
8.71094 0.001 0 0 0 0.001 0 0
|
||||||
|
8.78906 0.001 0 0 0 0.001 0 0
|
||||||
|
8.86719 0.001 0 0 0 0.001 0 0
|
||||||
|
8.94531 0.001 0 0 0 0.001 0 0
|
||||||
|
9.02344 0.001 0 0 0 0.001 0 0
|
||||||
|
9.10156 0.001 0 0 0 0.001 0 0
|
||||||
|
9.17969 0.001 0 0 0 0.001 0 0
|
||||||
|
9.25781 0.001 0 0 0 0.001 0 0
|
||||||
|
9.33594 0.001 0 0 0 0.001 0 0
|
||||||
|
9.41406 0.001 0 0 0 0.001 0 0
|
||||||
|
9.49219 0.001 0 0 0 0.001 0 0
|
||||||
|
9.57031 0.001 0 0 0 0.001 0 0
|
||||||
|
9.64844 0.001 0 0 0 0.001 0 0
|
||||||
|
9.72656 0.001 0 0 0 0.001 0 0
|
||||||
|
9.80469 0.001 0 0 0 0.001 0 0
|
||||||
|
9.88281 0.001 0 0 0 0.001 0 0
|
||||||
|
9.96094 0.001 0 0 0 0.001 0 0
|
Can't render this file because it has a wrong number of fields in line 18.
|
2066
reference/swashes_1_nx=2048.csv
Normal file
2066
reference/swashes_1_nx=2048.csv
Normal file
File diff suppressed because it is too large
Load Diff
274
reference/swashes_1_nx=256.csv
Normal file
274
reference/swashes_1_nx=256.csv
Normal file
@ -0,0 +1,274 @@
|
|||||||
|
##############################################################################
|
||||||
|
# Generated by SWASHES version 1.03.00, 2016-01-29
|
||||||
|
##############################################################################
|
||||||
|
# Dimension: 1
|
||||||
|
# Type: 3 (=Dam break)
|
||||||
|
# Domain: 1
|
||||||
|
# Choice: 1 (=on a wet domain without friction (Stoker's solution))
|
||||||
|
##############################################################################
|
||||||
|
# PARAMETERS OF THE SOLUTION
|
||||||
|
#
|
||||||
|
# Length of the domain: 10 meters
|
||||||
|
# Space step: 0.0390625 meters
|
||||||
|
# Number of cells: 256
|
||||||
|
# Position of the dam: x=5 meters
|
||||||
|
# Time value: 6 seconds
|
||||||
|
##############################################################################
|
||||||
|
#
|
||||||
|
#(i-0.5)*dx h[i] u[i] topo[i] q[i] topo[i]+h[i] Fr[i]=Froude topo[i]+hc[i]
|
||||||
|
0.0195312 0.005 0 0 0 0.005 0 0
|
||||||
|
0.0585938 0.005 0 0 0 0.005 0 0
|
||||||
|
0.0976562 0.005 0 0 0 0.005 0 0
|
||||||
|
0.136719 0.005 0 0 0 0.005 0 0
|
||||||
|
0.175781 0.005 0 0 0 0.005 0 0
|
||||||
|
0.214844 0.005 0 0 0 0.005 0 0
|
||||||
|
0.253906 0.005 0 0 0 0.005 0 0
|
||||||
|
0.292969 0.005 0 0 0 0.005 0 0
|
||||||
|
0.332031 0.005 0 0 0 0.005 0 0
|
||||||
|
0.371094 0.005 0 0 0 0.005 0 0
|
||||||
|
0.410156 0.005 0 0 0 0.005 0 0
|
||||||
|
0.449219 0.005 0 0 0 0.005 0 0
|
||||||
|
0.488281 0.005 0 0 0 0.005 0 0
|
||||||
|
0.527344 0.005 0 0 0 0.005 0 0
|
||||||
|
0.566406 0.005 0 0 0 0.005 0 0
|
||||||
|
0.605469 0.005 0 0 0 0.005 0 0
|
||||||
|
0.644531 0.005 0 0 0 0.005 0 0
|
||||||
|
0.683594 0.005 0 0 0 0.005 0 0
|
||||||
|
0.722656 0.005 0 0 0 0.005 0 0
|
||||||
|
0.761719 0.005 0 0 0 0.005 0 0
|
||||||
|
0.800781 0.005 0 0 0 0.005 0 0
|
||||||
|
0.839844 0.005 0 0 0 0.005 0 0
|
||||||
|
0.878906 0.005 0 0 0 0.005 0 0
|
||||||
|
0.917969 0.005 0 0 0 0.005 0 0
|
||||||
|
0.957031 0.005 0 0 0 0.005 0 0
|
||||||
|
0.996094 0.005 0 0 0 0.005 0 0
|
||||||
|
1.03516 0.005 0 0 0 0.005 0 0
|
||||||
|
1.07422 0.005 0 0 0 0.005 0 0
|
||||||
|
1.11328 0.005 0 0 0 0.005 0 0
|
||||||
|
1.15234 0.005 0 0 0 0.005 0 0
|
||||||
|
1.19141 0.005 0 0 0 0.005 0 0
|
||||||
|
1.23047 0.005 0 0 0 0.005 0 0
|
||||||
|
1.26953 0.005 0 0 0 0.005 0 0
|
||||||
|
1.30859 0.005 0 0 0 0.005 0 0
|
||||||
|
1.34766 0.005 0 0 0 0.005 0 0
|
||||||
|
1.38672 0.005 0 0 0 0.005 0 0
|
||||||
|
1.42578 0.005 0 0 0 0.005 0 0
|
||||||
|
1.46484 0.005 0 0 0 0.005 0 0
|
||||||
|
1.50391 0.005 0 0 0 0.005 0 0
|
||||||
|
1.54297 0.005 0 0 0 0.005 0 0
|
||||||
|
1.58203 0.005 0 0 0 0.005 0 0
|
||||||
|
1.62109 0.005 0 0 0 0.005 0 0
|
||||||
|
1.66016 0.005 0 0 0 0.005 0 0
|
||||||
|
1.69922 0.005 0 0 0 0.005 0 0
|
||||||
|
1.73828 0.005 0 0 0 0.005 0 0
|
||||||
|
1.77734 0.005 0 0 0 0.005 0 0
|
||||||
|
1.81641 0.005 0 0 0 0.005 0 0
|
||||||
|
1.85547 0.005 0 0 0 0.005 0 0
|
||||||
|
1.89453 0.005 0 0 0 0.005 0 0
|
||||||
|
1.93359 0.005 0 0 0 0.005 0 0
|
||||||
|
1.97266 0.005 0 0 0 0.005 0 0
|
||||||
|
2.01172 0.005 0 0 0 0.005 0 0
|
||||||
|
2.05078 0.005 0 0 0 0.005 0 0
|
||||||
|
2.08984 0.005 0 0 0 0.005 0 0
|
||||||
|
2.12891 0.005 0 0 0 0.005 0 0
|
||||||
|
2.16797 0.005 0 0 0 0.005 0 0
|
||||||
|
2.20703 0.005 0 0 0 0.005 0 0
|
||||||
|
2.24609 0.005 0 0 0 0.005 0 0
|
||||||
|
2.28516 0.005 0 0 0 0.005 0 0
|
||||||
|
2.32422 0.005 0 0 0 0.005 0 0
|
||||||
|
2.36328 0.005 0 0 0 0.005 0 0
|
||||||
|
2.40234 0.005 0 0 0 0.005 0 0
|
||||||
|
2.44141 0.005 0 0 0 0.005 0 0
|
||||||
|
2.48047 0.005 0 0 0 0.005 0 0
|
||||||
|
2.51953 0.005 0 0 0 0.005 0 0
|
||||||
|
2.55859 0.005 0 0 0 0.005 0 0
|
||||||
|
2.59766 0.005 0 0 0 0.005 0 0
|
||||||
|
2.63672 0.005 0 0 0 0.005 0 0
|
||||||
|
2.67578 0.005 0 0 0 0.005 0 0
|
||||||
|
2.71484 0.005 0 0 0 0.005 0 0
|
||||||
|
2.75391 0.005 0 0 0 0.005 0 0
|
||||||
|
2.79297 0.005 0 0 0 0.005 0 0
|
||||||
|
2.83203 0.005 0 0 0 0.005 0 0
|
||||||
|
2.87109 0.005 0 0 0 0.005 0 0
|
||||||
|
2.91016 0.005 0 0 0 0.005 0 0
|
||||||
|
2.94922 0.005 0 0 0 0.005 0 0
|
||||||
|
2.98828 0.005 0 0 0 0.005 0 0
|
||||||
|
3.02734 0.005 0 0 0 0.005 0 0
|
||||||
|
3.06641 0.005 0 0 0 0.005 0 0
|
||||||
|
3.10547 0.005 0 0 0 0.005 0 0
|
||||||
|
3.14453 0.005 0 0 0 0.005 0 0
|
||||||
|
3.18359 0.005 0 0 0 0.005 0 0
|
||||||
|
3.22266 0.005 0 0 0 0.005 0 0
|
||||||
|
3.26172 0.005 0 0 0 0.005 0 0
|
||||||
|
3.30078 0.005 0 0 0 0.005 0 0
|
||||||
|
3.33984 0.005 0 0 0 0.005 0 0
|
||||||
|
3.37891 0.005 0 0 0 0.005 0 0
|
||||||
|
3.41797 0.005 0 0 0 0.005 0 0
|
||||||
|
3.45703 0.005 0 0 0 0.005 0 0
|
||||||
|
3.49609 0.005 0 0 0 0.005 0 0
|
||||||
|
3.53516 0.005 0 0 0 0.005 0 0
|
||||||
|
3.57422 0.005 0 0 0 0.005 0 0
|
||||||
|
3.61328 0.005 0 0 0 0.005 0 0
|
||||||
|
3.65234 0.005 0 0 0 0.005 0 0
|
||||||
|
3.69141 0.00494936 0.00224893 0 1.11307e-005 0.00494936 0.0102062 0.000232877
|
||||||
|
3.73047 0.00485235 0.0065892 0 3.19731e-005 0.00485235 0.0302011 0.00047058
|
||||||
|
3.76953 0.0047563 0.0109295 0 5.19839e-005 0.0047563 0.0505977 0.000650663
|
||||||
|
3.80859 0.00466121 0.0152698 0 7.11755e-005 0.00466121 0.0714082 0.000802289
|
||||||
|
3.84766 0.00456708 0.01961 0 8.95606e-005 0.00456708 0.0926456 0.000935093
|
||||||
|
3.88672 0.00447391 0.0239503 0 0.000107152 0.00447391 0.114323 0.00105384
|
||||||
|
3.92578 0.0043817 0.0282906 0 0.000123961 0.0043817 0.136454 0.00116136
|
||||||
|
3.96484 0.00429045 0.0326309 0 0.000140001 0.00429045 0.159053 0.0012595
|
||||||
|
4.00391 0.00420017 0.0369711 0 0.000155285 0.00420017 0.182136 0.00134957
|
||||||
|
4.04297 0.00411084 0.0413114 0 0.000169825 0.00411084 0.205717 0.00143255
|
||||||
|
4.08203 0.00402247 0.0456517 0 0.000183633 0.00402247 0.229814 0.00150919
|
||||||
|
4.12109 0.00393506 0.049992 0 0.000196722 0.00393506 0.254443 0.00158008
|
||||||
|
4.16016 0.00384861 0.0543323 0 0.000209104 0.00384861 0.279622 0.0016457
|
||||||
|
4.19922 0.00376313 0.0586725 0 0.000220792 0.00376313 0.30537 0.00170647
|
||||||
|
4.23828 0.0036786 0.0630128 0 0.000231799 0.0036786 0.331706 0.00176272
|
||||||
|
4.27734 0.00359503 0.0673531 0 0.000242137 0.00359503 0.358651 0.00181475
|
||||||
|
4.31641 0.00351242 0.0716934 0 0.000251818 0.00351242 0.386226 0.00186281
|
||||||
|
4.35547 0.00343078 0.0760336 0 0.000260855 0.00343078 0.414453 0.00190711
|
||||||
|
4.39453 0.00335009 0.0803739 0 0.00026926 0.00335009 0.443356 0.00194786
|
||||||
|
4.43359 0.00327036 0.0847142 0 0.000277046 0.00327036 0.472959 0.00198523
|
||||||
|
4.47266 0.0031916 0.0890545 0 0.000284226 0.0031916 0.503289 0.00201939
|
||||||
|
4.51172 0.00311379 0.0933948 0 0.000290812 0.00311379 0.534371 0.00205046
|
||||||
|
4.55078 0.00303694 0.097735 0 0.000296816 0.00303694 0.566236 0.00207859
|
||||||
|
4.58984 0.00296106 0.102075 0 0.000302251 0.00296106 0.598912 0.00210389
|
||||||
|
4.62891 0.00288613 0.106416 0 0.000307129 0.00288613 0.63243 0.00212646
|
||||||
|
4.66797 0.00281217 0.110756 0 0.000311464 0.00281217 0.666825 0.00214642
|
||||||
|
4.70703 0.00273916 0.115096 0 0.000315267 0.00273916 0.70213 0.00216386
|
||||||
|
4.74609 0.00266712 0.119436 0 0.000318551 0.00266712 0.738383 0.00217886
|
||||||
|
4.78516 0.00259603 0.123777 0 0.000321328 0.00259603 0.775621 0.00219151
|
||||||
|
4.82422 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.86328 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.90234 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.94141 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.98047 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.01953 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.05859 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.09766 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.13672 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.17578 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.21484 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.25391 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.29297 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.33203 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.37109 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.41016 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.44922 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.48828 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.52734 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.56641 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.60547 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.64453 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.68359 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.72266 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.76172 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.80078 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.83984 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.87891 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.91797 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.95703 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.99609 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.03516 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.07422 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.11328 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.15234 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.19141 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.23047 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.26953 0.001 0 0 0 0.001 0 0
|
||||||
|
6.30859 0.001 0 0 0 0.001 0 0
|
||||||
|
6.34766 0.001 0 0 0 0.001 0 0
|
||||||
|
6.38672 0.001 0 0 0 0.001 0 0
|
||||||
|
6.42578 0.001 0 0 0 0.001 0 0
|
||||||
|
6.46484 0.001 0 0 0 0.001 0 0
|
||||||
|
6.50391 0.001 0 0 0 0.001 0 0
|
||||||
|
6.54297 0.001 0 0 0 0.001 0 0
|
||||||
|
6.58203 0.001 0 0 0 0.001 0 0
|
||||||
|
6.62109 0.001 0 0 0 0.001 0 0
|
||||||
|
6.66016 0.001 0 0 0 0.001 0 0
|
||||||
|
6.69922 0.001 0 0 0 0.001 0 0
|
||||||
|
6.73828 0.001 0 0 0 0.001 0 0
|
||||||
|
6.77734 0.001 0 0 0 0.001 0 0
|
||||||
|
6.81641 0.001 0 0 0 0.001 0 0
|
||||||
|
6.85547 0.001 0 0 0 0.001 0 0
|
||||||
|
6.89453 0.001 0 0 0 0.001 0 0
|
||||||
|
6.93359 0.001 0 0 0 0.001 0 0
|
||||||
|
6.97266 0.001 0 0 0 0.001 0 0
|
||||||
|
7.01172 0.001 0 0 0 0.001 0 0
|
||||||
|
7.05078 0.001 0 0 0 0.001 0 0
|
||||||
|
7.08984 0.001 0 0 0 0.001 0 0
|
||||||
|
7.12891 0.001 0 0 0 0.001 0 0
|
||||||
|
7.16797 0.001 0 0 0 0.001 0 0
|
||||||
|
7.20703 0.001 0 0 0 0.001 0 0
|
||||||
|
7.24609 0.001 0 0 0 0.001 0 0
|
||||||
|
7.28516 0.001 0 0 0 0.001 0 0
|
||||||
|
7.32422 0.001 0 0 0 0.001 0 0
|
||||||
|
7.36328 0.001 0 0 0 0.001 0 0
|
||||||
|
7.40234 0.001 0 0 0 0.001 0 0
|
||||||
|
7.44141 0.001 0 0 0 0.001 0 0
|
||||||
|
7.48047 0.001 0 0 0 0.001 0 0
|
||||||
|
7.51953 0.001 0 0 0 0.001 0 0
|
||||||
|
7.55859 0.001 0 0 0 0.001 0 0
|
||||||
|
7.59766 0.001 0 0 0 0.001 0 0
|
||||||
|
7.63672 0.001 0 0 0 0.001 0 0
|
||||||
|
7.67578 0.001 0 0 0 0.001 0 0
|
||||||
|
7.71484 0.001 0 0 0 0.001 0 0
|
||||||
|
7.75391 0.001 0 0 0 0.001 0 0
|
||||||
|
7.79297 0.001 0 0 0 0.001 0 0
|
||||||
|
7.83203 0.001 0 0 0 0.001 0 0
|
||||||
|
7.87109 0.001 0 0 0 0.001 0 0
|
||||||
|
7.91016 0.001 0 0 0 0.001 0 0
|
||||||
|
7.94922 0.001 0 0 0 0.001 0 0
|
||||||
|
7.98828 0.001 0 0 0 0.001 0 0
|
||||||
|
8.02734 0.001 0 0 0 0.001 0 0
|
||||||
|
8.06641 0.001 0 0 0 0.001 0 0
|
||||||
|
8.10547 0.001 0 0 0 0.001 0 0
|
||||||
|
8.14453 0.001 0 0 0 0.001 0 0
|
||||||
|
8.18359 0.001 0 0 0 0.001 0 0
|
||||||
|
8.22266 0.001 0 0 0 0.001 0 0
|
||||||
|
8.26172 0.001 0 0 0 0.001 0 0
|
||||||
|
8.30078 0.001 0 0 0 0.001 0 0
|
||||||
|
8.33984 0.001 0 0 0 0.001 0 0
|
||||||
|
8.37891 0.001 0 0 0 0.001 0 0
|
||||||
|
8.41797 0.001 0 0 0 0.001 0 0
|
||||||
|
8.45703 0.001 0 0 0 0.001 0 0
|
||||||
|
8.49609 0.001 0 0 0 0.001 0 0
|
||||||
|
8.53516 0.001 0 0 0 0.001 0 0
|
||||||
|
8.57422 0.001 0 0 0 0.001 0 0
|
||||||
|
8.61328 0.001 0 0 0 0.001 0 0
|
||||||
|
8.65234 0.001 0 0 0 0.001 0 0
|
||||||
|
8.69141 0.001 0 0 0 0.001 0 0
|
||||||
|
8.73047 0.001 0 0 0 0.001 0 0
|
||||||
|
8.76953 0.001 0 0 0 0.001 0 0
|
||||||
|
8.80859 0.001 0 0 0 0.001 0 0
|
||||||
|
8.84766 0.001 0 0 0 0.001 0 0
|
||||||
|
8.88672 0.001 0 0 0 0.001 0 0
|
||||||
|
8.92578 0.001 0 0 0 0.001 0 0
|
||||||
|
8.96484 0.001 0 0 0 0.001 0 0
|
||||||
|
9.00391 0.001 0 0 0 0.001 0 0
|
||||||
|
9.04297 0.001 0 0 0 0.001 0 0
|
||||||
|
9.08203 0.001 0 0 0 0.001 0 0
|
||||||
|
9.12109 0.001 0 0 0 0.001 0 0
|
||||||
|
9.16016 0.001 0 0 0 0.001 0 0
|
||||||
|
9.19922 0.001 0 0 0 0.001 0 0
|
||||||
|
9.23828 0.001 0 0 0 0.001 0 0
|
||||||
|
9.27734 0.001 0 0 0 0.001 0 0
|
||||||
|
9.31641 0.001 0 0 0 0.001 0 0
|
||||||
|
9.35547 0.001 0 0 0 0.001 0 0
|
||||||
|
9.39453 0.001 0 0 0 0.001 0 0
|
||||||
|
9.43359 0.001 0 0 0 0.001 0 0
|
||||||
|
9.47266 0.001 0 0 0 0.001 0 0
|
||||||
|
9.51172 0.001 0 0 0 0.001 0 0
|
||||||
|
9.55078 0.001 0 0 0 0.001 0 0
|
||||||
|
9.58984 0.001 0 0 0 0.001 0 0
|
||||||
|
9.62891 0.001 0 0 0 0.001 0 0
|
||||||
|
9.66797 0.001 0 0 0 0.001 0 0
|
||||||
|
9.70703 0.001 0 0 0 0.001 0 0
|
||||||
|
9.74609 0.001 0 0 0 0.001 0 0
|
||||||
|
9.78516 0.001 0 0 0 0.001 0 0
|
||||||
|
9.82422 0.001 0 0 0 0.001 0 0
|
||||||
|
9.86328 0.001 0 0 0 0.001 0 0
|
||||||
|
9.90234 0.001 0 0 0 0.001 0 0
|
||||||
|
9.94141 0.001 0 0 0 0.001 0 0
|
||||||
|
9.98047 0.001 0 0 0 0.001 0 0
|
Can't render this file because it has a wrong number of fields in line 18.
|
4114
reference/swashes_1_nx=4096.csv
Normal file
4114
reference/swashes_1_nx=4096.csv
Normal file
File diff suppressed because it is too large
Load Diff
530
reference/swashes_1_nx=512.csv
Normal file
530
reference/swashes_1_nx=512.csv
Normal file
@ -0,0 +1,530 @@
|
|||||||
|
##############################################################################
|
||||||
|
# Generated by SWASHES version 1.03.00, 2016-01-29
|
||||||
|
##############################################################################
|
||||||
|
# Dimension: 1
|
||||||
|
# Type: 3 (=Dam break)
|
||||||
|
# Domain: 1
|
||||||
|
# Choice: 1 (=on a wet domain without friction (Stoker's solution))
|
||||||
|
##############################################################################
|
||||||
|
# PARAMETERS OF THE SOLUTION
|
||||||
|
#
|
||||||
|
# Length of the domain: 10 meters
|
||||||
|
# Space step: 0.0195312 meters
|
||||||
|
# Number of cells: 512
|
||||||
|
# Position of the dam: x=5 meters
|
||||||
|
# Time value: 6 seconds
|
||||||
|
##############################################################################
|
||||||
|
#
|
||||||
|
#(i-0.5)*dx h[i] u[i] topo[i] q[i] topo[i]+h[i] Fr[i]=Froude topo[i]+hc[i]
|
||||||
|
0.00976562 0.005 0 0 0 0.005 0 0
|
||||||
|
0.0292969 0.005 0 0 0 0.005 0 0
|
||||||
|
0.0488281 0.005 0 0 0 0.005 0 0
|
||||||
|
0.0683594 0.005 0 0 0 0.005 0 0
|
||||||
|
0.0878906 0.005 0 0 0 0.005 0 0
|
||||||
|
0.107422 0.005 0 0 0 0.005 0 0
|
||||||
|
0.126953 0.005 0 0 0 0.005 0 0
|
||||||
|
0.146484 0.005 0 0 0 0.005 0 0
|
||||||
|
0.166016 0.005 0 0 0 0.005 0 0
|
||||||
|
0.185547 0.005 0 0 0 0.005 0 0
|
||||||
|
0.205078 0.005 0 0 0 0.005 0 0
|
||||||
|
0.224609 0.005 0 0 0 0.005 0 0
|
||||||
|
0.244141 0.005 0 0 0 0.005 0 0
|
||||||
|
0.263672 0.005 0 0 0 0.005 0 0
|
||||||
|
0.283203 0.005 0 0 0 0.005 0 0
|
||||||
|
0.302734 0.005 0 0 0 0.005 0 0
|
||||||
|
0.322266 0.005 0 0 0 0.005 0 0
|
||||||
|
0.341797 0.005 0 0 0 0.005 0 0
|
||||||
|
0.361328 0.005 0 0 0 0.005 0 0
|
||||||
|
0.380859 0.005 0 0 0 0.005 0 0
|
||||||
|
0.400391 0.005 0 0 0 0.005 0 0
|
||||||
|
0.419922 0.005 0 0 0 0.005 0 0
|
||||||
|
0.439453 0.005 0 0 0 0.005 0 0
|
||||||
|
0.458984 0.005 0 0 0 0.005 0 0
|
||||||
|
0.478516 0.005 0 0 0 0.005 0 0
|
||||||
|
0.498047 0.005 0 0 0 0.005 0 0
|
||||||
|
0.517578 0.005 0 0 0 0.005 0 0
|
||||||
|
0.537109 0.005 0 0 0 0.005 0 0
|
||||||
|
0.556641 0.005 0 0 0 0.005 0 0
|
||||||
|
0.576172 0.005 0 0 0 0.005 0 0
|
||||||
|
0.595703 0.005 0 0 0 0.005 0 0
|
||||||
|
0.615234 0.005 0 0 0 0.005 0 0
|
||||||
|
0.634766 0.005 0 0 0 0.005 0 0
|
||||||
|
0.654297 0.005 0 0 0 0.005 0 0
|
||||||
|
0.673828 0.005 0 0 0 0.005 0 0
|
||||||
|
0.693359 0.005 0 0 0 0.005 0 0
|
||||||
|
0.712891 0.005 0 0 0 0.005 0 0
|
||||||
|
0.732422 0.005 0 0 0 0.005 0 0
|
||||||
|
0.751953 0.005 0 0 0 0.005 0 0
|
||||||
|
0.771484 0.005 0 0 0 0.005 0 0
|
||||||
|
0.791016 0.005 0 0 0 0.005 0 0
|
||||||
|
0.810547 0.005 0 0 0 0.005 0 0
|
||||||
|
0.830078 0.005 0 0 0 0.005 0 0
|
||||||
|
0.849609 0.005 0 0 0 0.005 0 0
|
||||||
|
0.869141 0.005 0 0 0 0.005 0 0
|
||||||
|
0.888672 0.005 0 0 0 0.005 0 0
|
||||||
|
0.908203 0.005 0 0 0 0.005 0 0
|
||||||
|
0.927734 0.005 0 0 0 0.005 0 0
|
||||||
|
0.947266 0.005 0 0 0 0.005 0 0
|
||||||
|
0.966797 0.005 0 0 0 0.005 0 0
|
||||||
|
0.986328 0.005 0 0 0 0.005 0 0
|
||||||
|
1.00586 0.005 0 0 0 0.005 0 0
|
||||||
|
1.02539 0.005 0 0 0 0.005 0 0
|
||||||
|
1.04492 0.005 0 0 0 0.005 0 0
|
||||||
|
1.06445 0.005 0 0 0 0.005 0 0
|
||||||
|
1.08398 0.005 0 0 0 0.005 0 0
|
||||||
|
1.10352 0.005 0 0 0 0.005 0 0
|
||||||
|
1.12305 0.005 0 0 0 0.005 0 0
|
||||||
|
1.14258 0.005 0 0 0 0.005 0 0
|
||||||
|
1.16211 0.005 0 0 0 0.005 0 0
|
||||||
|
1.18164 0.005 0 0 0 0.005 0 0
|
||||||
|
1.20117 0.005 0 0 0 0.005 0 0
|
||||||
|
1.2207 0.005 0 0 0 0.005 0 0
|
||||||
|
1.24023 0.005 0 0 0 0.005 0 0
|
||||||
|
1.25977 0.005 0 0 0 0.005 0 0
|
||||||
|
1.2793 0.005 0 0 0 0.005 0 0
|
||||||
|
1.29883 0.005 0 0 0 0.005 0 0
|
||||||
|
1.31836 0.005 0 0 0 0.005 0 0
|
||||||
|
1.33789 0.005 0 0 0 0.005 0 0
|
||||||
|
1.35742 0.005 0 0 0 0.005 0 0
|
||||||
|
1.37695 0.005 0 0 0 0.005 0 0
|
||||||
|
1.39648 0.005 0 0 0 0.005 0 0
|
||||||
|
1.41602 0.005 0 0 0 0.005 0 0
|
||||||
|
1.43555 0.005 0 0 0 0.005 0 0
|
||||||
|
1.45508 0.005 0 0 0 0.005 0 0
|
||||||
|
1.47461 0.005 0 0 0 0.005 0 0
|
||||||
|
1.49414 0.005 0 0 0 0.005 0 0
|
||||||
|
1.51367 0.005 0 0 0 0.005 0 0
|
||||||
|
1.5332 0.005 0 0 0 0.005 0 0
|
||||||
|
1.55273 0.005 0 0 0 0.005 0 0
|
||||||
|
1.57227 0.005 0 0 0 0.005 0 0
|
||||||
|
1.5918 0.005 0 0 0 0.005 0 0
|
||||||
|
1.61133 0.005 0 0 0 0.005 0 0
|
||||||
|
1.63086 0.005 0 0 0 0.005 0 0
|
||||||
|
1.65039 0.005 0 0 0 0.005 0 0
|
||||||
|
1.66992 0.005 0 0 0 0.005 0 0
|
||||||
|
1.68945 0.005 0 0 0 0.005 0 0
|
||||||
|
1.70898 0.005 0 0 0 0.005 0 0
|
||||||
|
1.72852 0.005 0 0 0 0.005 0 0
|
||||||
|
1.74805 0.005 0 0 0 0.005 0 0
|
||||||
|
1.76758 0.005 0 0 0 0.005 0 0
|
||||||
|
1.78711 0.005 0 0 0 0.005 0 0
|
||||||
|
1.80664 0.005 0 0 0 0.005 0 0
|
||||||
|
1.82617 0.005 0 0 0 0.005 0 0
|
||||||
|
1.8457 0.005 0 0 0 0.005 0 0
|
||||||
|
1.86523 0.005 0 0 0 0.005 0 0
|
||||||
|
1.88477 0.005 0 0 0 0.005 0 0
|
||||||
|
1.9043 0.005 0 0 0 0.005 0 0
|
||||||
|
1.92383 0.005 0 0 0 0.005 0 0
|
||||||
|
1.94336 0.005 0 0 0 0.005 0 0
|
||||||
|
1.96289 0.005 0 0 0 0.005 0 0
|
||||||
|
1.98242 0.005 0 0 0 0.005 0 0
|
||||||
|
2.00195 0.005 0 0 0 0.005 0 0
|
||||||
|
2.02148 0.005 0 0 0 0.005 0 0
|
||||||
|
2.04102 0.005 0 0 0 0.005 0 0
|
||||||
|
2.06055 0.005 0 0 0 0.005 0 0
|
||||||
|
2.08008 0.005 0 0 0 0.005 0 0
|
||||||
|
2.09961 0.005 0 0 0 0.005 0 0
|
||||||
|
2.11914 0.005 0 0 0 0.005 0 0
|
||||||
|
2.13867 0.005 0 0 0 0.005 0 0
|
||||||
|
2.1582 0.005 0 0 0 0.005 0 0
|
||||||
|
2.17773 0.005 0 0 0 0.005 0 0
|
||||||
|
2.19727 0.005 0 0 0 0.005 0 0
|
||||||
|
2.2168 0.005 0 0 0 0.005 0 0
|
||||||
|
2.23633 0.005 0 0 0 0.005 0 0
|
||||||
|
2.25586 0.005 0 0 0 0.005 0 0
|
||||||
|
2.27539 0.005 0 0 0 0.005 0 0
|
||||||
|
2.29492 0.005 0 0 0 0.005 0 0
|
||||||
|
2.31445 0.005 0 0 0 0.005 0 0
|
||||||
|
2.33398 0.005 0 0 0 0.005 0 0
|
||||||
|
2.35352 0.005 0 0 0 0.005 0 0
|
||||||
|
2.37305 0.005 0 0 0 0.005 0 0
|
||||||
|
2.39258 0.005 0 0 0 0.005 0 0
|
||||||
|
2.41211 0.005 0 0 0 0.005 0 0
|
||||||
|
2.43164 0.005 0 0 0 0.005 0 0
|
||||||
|
2.45117 0.005 0 0 0 0.005 0 0
|
||||||
|
2.4707 0.005 0 0 0 0.005 0 0
|
||||||
|
2.49023 0.005 0 0 0 0.005 0 0
|
||||||
|
2.50977 0.005 0 0 0 0.005 0 0
|
||||||
|
2.5293 0.005 0 0 0 0.005 0 0
|
||||||
|
2.54883 0.005 0 0 0 0.005 0 0
|
||||||
|
2.56836 0.005 0 0 0 0.005 0 0
|
||||||
|
2.58789 0.005 0 0 0 0.005 0 0
|
||||||
|
2.60742 0.005 0 0 0 0.005 0 0
|
||||||
|
2.62695 0.005 0 0 0 0.005 0 0
|
||||||
|
2.64648 0.005 0 0 0 0.005 0 0
|
||||||
|
2.66602 0.005 0 0 0 0.005 0 0
|
||||||
|
2.68555 0.005 0 0 0 0.005 0 0
|
||||||
|
2.70508 0.005 0 0 0 0.005 0 0
|
||||||
|
2.72461 0.005 0 0 0 0.005 0 0
|
||||||
|
2.74414 0.005 0 0 0 0.005 0 0
|
||||||
|
2.76367 0.005 0 0 0 0.005 0 0
|
||||||
|
2.7832 0.005 0 0 0 0.005 0 0
|
||||||
|
2.80273 0.005 0 0 0 0.005 0 0
|
||||||
|
2.82227 0.005 0 0 0 0.005 0 0
|
||||||
|
2.8418 0.005 0 0 0 0.005 0 0
|
||||||
|
2.86133 0.005 0 0 0 0.005 0 0
|
||||||
|
2.88086 0.005 0 0 0 0.005 0 0
|
||||||
|
2.90039 0.005 0 0 0 0.005 0 0
|
||||||
|
2.91992 0.005 0 0 0 0.005 0 0
|
||||||
|
2.93945 0.005 0 0 0 0.005 0 0
|
||||||
|
2.95898 0.005 0 0 0 0.005 0 0
|
||||||
|
2.97852 0.005 0 0 0 0.005 0 0
|
||||||
|
2.99805 0.005 0 0 0 0.005 0 0
|
||||||
|
3.01758 0.005 0 0 0 0.005 0 0
|
||||||
|
3.03711 0.005 0 0 0 0.005 0 0
|
||||||
|
3.05664 0.005 0 0 0 0.005 0 0
|
||||||
|
3.07617 0.005 0 0 0 0.005 0 0
|
||||||
|
3.0957 0.005 0 0 0 0.005 0 0
|
||||||
|
3.11523 0.005 0 0 0 0.005 0 0
|
||||||
|
3.13477 0.005 0 0 0 0.005 0 0
|
||||||
|
3.1543 0.005 0 0 0 0.005 0 0
|
||||||
|
3.17383 0.005 0 0 0 0.005 0 0
|
||||||
|
3.19336 0.005 0 0 0 0.005 0 0
|
||||||
|
3.21289 0.005 0 0 0 0.005 0 0
|
||||||
|
3.23242 0.005 0 0 0 0.005 0 0
|
||||||
|
3.25195 0.005 0 0 0 0.005 0 0
|
||||||
|
3.27148 0.005 0 0 0 0.005 0 0
|
||||||
|
3.29102 0.005 0 0 0 0.005 0 0
|
||||||
|
3.31055 0.005 0 0 0 0.005 0 0
|
||||||
|
3.33008 0.005 0 0 0 0.005 0 0
|
||||||
|
3.34961 0.005 0 0 0 0.005 0 0
|
||||||
|
3.36914 0.005 0 0 0 0.005 0 0
|
||||||
|
3.38867 0.005 0 0 0 0.005 0 0
|
||||||
|
3.4082 0.005 0 0 0 0.005 0 0
|
||||||
|
3.42773 0.005 0 0 0 0.005 0 0
|
||||||
|
3.44727 0.005 0 0 0 0.005 0 0
|
||||||
|
3.4668 0.005 0 0 0 0.005 0 0
|
||||||
|
3.48633 0.005 0 0 0 0.005 0 0
|
||||||
|
3.50586 0.005 0 0 0 0.005 0 0
|
||||||
|
3.52539 0.005 0 0 0 0.005 0 0
|
||||||
|
3.54492 0.005 0 0 0 0.005 0 0
|
||||||
|
3.56445 0.005 0 0 0 0.005 0 0
|
||||||
|
3.58398 0.005 0 0 0 0.005 0 0
|
||||||
|
3.60352 0.005 0 0 0 0.005 0 0
|
||||||
|
3.62305 0.005 0 0 0 0.005 0 0
|
||||||
|
3.64258 0.005 0 0 0 0.005 0 0
|
||||||
|
3.66211 0.005 0 0 0 0.005 0 0
|
||||||
|
3.68164 0.00497376 0.00116386 0 5.78874e-006 0.00497376 0.00526893 0.000150603
|
||||||
|
3.70117 0.00492501 0.00333399 0 1.642e-005 0.00492501 0.0151679 0.000301781
|
||||||
|
3.7207 0.00487651 0.00550413 0 2.6841e-005 0.00487651 0.0251652 0.00041877
|
||||||
|
3.74023 0.00482825 0.00767427 0 3.70533e-005 0.00482825 0.0352621 0.000519192
|
||||||
|
3.75977 0.00478022 0.00984441 0 4.70585e-005 0.00478022 0.0454602 0.000608885
|
||||||
|
3.7793 0.00473244 0.0120146 0 5.68581e-005 0.00473244 0.055761 0.000690725
|
||||||
|
3.79883 0.00468489 0.0141847 0 6.64537e-005 0.00468489 0.0661661 0.000766402
|
||||||
|
3.81836 0.00463759 0.0163548 0 7.58469e-005 0.00463759 0.0766771 0.00083702
|
||||||
|
3.83789 0.00459052 0.018525 0 8.50393e-005 0.00459052 0.0872955 0.000903351
|
||||||
|
3.85742 0.0045437 0.0206951 0 9.40323e-005 0.0045437 0.0980231 0.000965966
|
||||||
|
3.87695 0.00449711 0.0228652 0 0.000102828 0.00449711 0.108862 0.0010253
|
||||||
|
3.89648 0.00445077 0.0250354 0 0.000111427 0.00445077 0.119813 0.00108169
|
||||||
|
3.91602 0.00440467 0.0272055 0 0.000119831 0.00440467 0.130878 0.00113542
|
||||||
|
3.93555 0.0043588 0.0293757 0 0.000128043 0.0043588 0.142059 0.00118672
|
||||||
|
3.95508 0.00431318 0.0315458 0 0.000136063 0.00431318 0.153359 0.00123577
|
||||||
|
3.97461 0.00426779 0.0337159 0 0.000143893 0.00426779 0.164778 0.00128273
|
||||||
|
3.99414 0.00422265 0.0358861 0 0.000151534 0.00422265 0.176319 0.00132775
|
||||||
|
4.01367 0.00417774 0.0380562 0 0.000158989 0.00417774 0.187984 0.00137095
|
||||||
|
4.0332 0.00413308 0.0402264 0 0.000166259 0.00413308 0.199774 0.00141243
|
||||||
|
4.05273 0.00408866 0.0423965 0 0.000173345 0.00408866 0.211692 0.00145228
|
||||||
|
4.07227 0.00404447 0.0445666 0 0.000180248 0.00404447 0.22374 0.00149059
|
||||||
|
4.0918 0.00400053 0.0467368 0 0.000186972 0.00400053 0.23592 0.00152743
|
||||||
|
4.11133 0.00395682 0.0489069 0 0.000193516 0.00395682 0.248235 0.00156287
|
||||||
|
4.13086 0.00391336 0.0510771 0 0.000199883 0.00391336 0.260685 0.00159696
|
||||||
|
4.15039 0.00387014 0.0532472 0 0.000206074 0.00387014 0.273274 0.00162977
|
||||||
|
4.16992 0.00382715 0.0554173 0 0.000212091 0.00382715 0.286005 0.00166134
|
||||||
|
4.18945 0.00378441 0.0575875 0 0.000217935 0.00378441 0.298878 0.00169172
|
||||||
|
4.20898 0.0037419 0.0597576 0 0.000223607 0.0037419 0.311898 0.00172095
|
||||||
|
4.22852 0.00369964 0.0619277 0 0.00022911 0.00369964 0.325066 0.00174907
|
||||||
|
4.24805 0.00365762 0.0640979 0 0.000234446 0.00365762 0.338384 0.00177612
|
||||||
|
4.26758 0.00361583 0.066268 0 0.000239614 0.00361583 0.351856 0.00180213
|
||||||
|
4.28711 0.00357429 0.0684382 0 0.000244618 0.00357429 0.365484 0.00182713
|
||||||
|
4.30664 0.00353299 0.0706083 0 0.000249458 0.00353299 0.379272 0.00185115
|
||||||
|
4.32617 0.00349192 0.0727784 0 0.000254137 0.00349192 0.39322 0.00187423
|
||||||
|
4.3457 0.0034511 0.0749486 0 0.000258655 0.0034511 0.407334 0.00189638
|
||||||
|
4.36523 0.00341052 0.0771187 0 0.000263015 0.00341052 0.421614 0.00191762
|
||||||
|
4.38477 0.00337017 0.0792889 0 0.000267217 0.00337017 0.436065 0.001938
|
||||||
|
4.4043 0.00333007 0.081459 0 0.000271264 0.00333007 0.45069 0.00195752
|
||||||
|
4.42383 0.00329021 0.0836291 0 0.000275157 0.00329021 0.465491 0.0019762
|
||||||
|
4.44336 0.00325058 0.0857993 0 0.000278898 0.00325058 0.480472 0.00199407
|
||||||
|
4.46289 0.0032112 0.0879694 0 0.000282487 0.0032112 0.495637 0.00201114
|
||||||
|
4.48242 0.00317206 0.0901396 0 0.000285928 0.00317206 0.510988 0.00202744
|
||||||
|
4.50195 0.00313315 0.0923097 0 0.00028922 0.00313315 0.526529 0.00204297
|
||||||
|
4.52148 0.00309449 0.0944798 0 0.000292367 0.00309449 0.542263 0.00205776
|
||||||
|
4.54102 0.00305607 0.09665 0 0.000295369 0.00305607 0.558195 0.00207183
|
||||||
|
4.56055 0.00301788 0.0988201 0 0.000298228 0.00301788 0.574327 0.00208517
|
||||||
|
4.58008 0.00297994 0.10099 0 0.000300945 0.00297994 0.590665 0.00209782
|
||||||
|
4.59961 0.00294224 0.10316 0 0.000303522 0.00294224 0.607211 0.00210978
|
||||||
|
4.61914 0.00290477 0.105331 0 0.000305961 0.00290477 0.62397 0.00212107
|
||||||
|
4.63867 0.00286755 0.107501 0 0.000308264 0.00286755 0.640945 0.0021317
|
||||||
|
4.6582 0.00283057 0.109671 0 0.000310431 0.00283057 0.658142 0.00214167
|
||||||
|
4.67773 0.00279383 0.111841 0 0.000312464 0.00279383 0.675564 0.00215102
|
||||||
|
4.69727 0.00275732 0.114011 0 0.000314365 0.00275732 0.693216 0.00215973
|
||||||
|
4.7168 0.00272106 0.116181 0 0.000316136 0.00272106 0.711103 0.00216784
|
||||||
|
4.73633 0.00268504 0.118351 0 0.000317778 0.00268504 0.729228 0.00217533
|
||||||
|
4.75586 0.00264925 0.120521 0 0.000319292 0.00264925 0.747598 0.00218224
|
||||||
|
4.77539 0.00261371 0.122692 0 0.00032068 0.00261371 0.766217 0.00218856
|
||||||
|
4.79492 0.00257841 0.124862 0 0.000321945 0.00257841 0.785089 0.00219431
|
||||||
|
4.81445 0.00254335 0.127032 0 0.000323086 0.00254335 0.804221 0.00219949
|
||||||
|
4.83398 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.85352 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.87305 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.89258 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.91211 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.93164 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.95117 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.9707 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
4.99023 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.00977 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.0293 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.04883 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.06836 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.08789 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.10742 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.12695 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.14648 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.16602 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.18555 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.20508 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.22461 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.24414 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.26367 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.2832 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.30273 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.32227 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.3418 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.36133 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.38086 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.40039 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.41992 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.43945 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.45898 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.47852 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.49805 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.51758 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.53711 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.55664 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.57617 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.5957 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.61523 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.63477 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.6543 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.67383 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.69336 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.71289 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.73242 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.75195 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.77148 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.79102 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.81055 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.83008 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.84961 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.86914 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.88867 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.9082 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.92773 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.94727 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.9668 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
5.98633 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.00586 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.02539 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.04492 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.06445 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.08398 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.10352 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.12305 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.14258 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.16211 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.18164 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.20117 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.2207 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.24023 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.25977 0.00253936 0.127279 0 0.000323208 0.00253936 0.806419 0.00220005
|
||||||
|
6.2793 0.001 0 0 0 0.001 0 0
|
||||||
|
6.29883 0.001 0 0 0 0.001 0 0
|
||||||
|
6.31836 0.001 0 0 0 0.001 0 0
|
||||||
|
6.33789 0.001 0 0 0 0.001 0 0
|
||||||
|
6.35742 0.001 0 0 0 0.001 0 0
|
||||||
|
6.37695 0.001 0 0 0 0.001 0 0
|
||||||
|
6.39648 0.001 0 0 0 0.001 0 0
|
||||||
|
6.41602 0.001 0 0 0 0.001 0 0
|
||||||
|
6.43555 0.001 0 0 0 0.001 0 0
|
||||||
|
6.45508 0.001 0 0 0 0.001 0 0
|
||||||
|
6.47461 0.001 0 0 0 0.001 0 0
|
||||||
|
6.49414 0.001 0 0 0 0.001 0 0
|
||||||
|
6.51367 0.001 0 0 0 0.001 0 0
|
||||||
|
6.5332 0.001 0 0 0 0.001 0 0
|
||||||
|
6.55273 0.001 0 0 0 0.001 0 0
|
||||||
|
6.57227 0.001 0 0 0 0.001 0 0
|
||||||
|
6.5918 0.001 0 0 0 0.001 0 0
|
||||||
|
6.61133 0.001 0 0 0 0.001 0 0
|
||||||
|
6.63086 0.001 0 0 0 0.001 0 0
|
||||||
|
6.65039 0.001 0 0 0 0.001 0 0
|
||||||
|
6.66992 0.001 0 0 0 0.001 0 0
|
||||||
|
6.68945 0.001 0 0 0 0.001 0 0
|
||||||
|
6.70898 0.001 0 0 0 0.001 0 0
|
||||||
|
6.72852 0.001 0 0 0 0.001 0 0
|
||||||
|
6.74805 0.001 0 0 0 0.001 0 0
|
||||||
|
6.76758 0.001 0 0 0 0.001 0 0
|
||||||
|
6.78711 0.001 0 0 0 0.001 0 0
|
||||||
|
6.80664 0.001 0 0 0 0.001 0 0
|
||||||
|
6.82617 0.001 0 0 0 0.001 0 0
|
||||||
|
6.8457 0.001 0 0 0 0.001 0 0
|
||||||
|
6.86523 0.001 0 0 0 0.001 0 0
|
||||||
|
6.88477 0.001 0 0 0 0.001 0 0
|
||||||
|
6.9043 0.001 0 0 0 0.001 0 0
|
||||||
|
6.92383 0.001 0 0 0 0.001 0 0
|
||||||
|
6.94336 0.001 0 0 0 0.001 0 0
|
||||||
|
6.96289 0.001 0 0 0 0.001 0 0
|
||||||
|
6.98242 0.001 0 0 0 0.001 0 0
|
||||||
|
7.00195 0.001 0 0 0 0.001 0 0
|
||||||
|
7.02148 0.001 0 0 0 0.001 0 0
|
||||||
|
7.04102 0.001 0 0 0 0.001 0 0
|
||||||
|
7.06055 0.001 0 0 0 0.001 0 0
|
||||||
|
7.08008 0.001 0 0 0 0.001 0 0
|
||||||
|
7.09961 0.001 0 0 0 0.001 0 0
|
||||||
|
7.11914 0.001 0 0 0 0.001 0 0
|
||||||
|
7.13867 0.001 0 0 0 0.001 0 0
|
||||||
|
7.1582 0.001 0 0 0 0.001 0 0
|
||||||
|
7.17773 0.001 0 0 0 0.001 0 0
|
||||||
|
7.19727 0.001 0 0 0 0.001 0 0
|
||||||
|
7.2168 0.001 0 0 0 0.001 0 0
|
||||||
|
7.23633 0.001 0 0 0 0.001 0 0
|
||||||
|
7.25586 0.001 0 0 0 0.001 0 0
|
||||||
|
7.27539 0.001 0 0 0 0.001 0 0
|
||||||
|
7.29492 0.001 0 0 0 0.001 0 0
|
||||||
|
7.31445 0.001 0 0 0 0.001 0 0
|
||||||
|
7.33398 0.001 0 0 0 0.001 0 0
|
||||||
|
7.35352 0.001 0 0 0 0.001 0 0
|
||||||
|
7.37305 0.001 0 0 0 0.001 0 0
|
||||||
|
7.39258 0.001 0 0 0 0.001 0 0
|
||||||
|
7.41211 0.001 0 0 0 0.001 0 0
|
||||||
|
7.43164 0.001 0 0 0 0.001 0 0
|
||||||
|
7.45117 0.001 0 0 0 0.001 0 0
|
||||||
|
7.4707 0.001 0 0 0 0.001 0 0
|
||||||
|
7.49023 0.001 0 0 0 0.001 0 0
|
||||||
|
7.50977 0.001 0 0 0 0.001 0 0
|
||||||
|
7.5293 0.001 0 0 0 0.001 0 0
|
||||||
|
7.54883 0.001 0 0 0 0.001 0 0
|
||||||
|
7.56836 0.001 0 0 0 0.001 0 0
|
||||||
|
7.58789 0.001 0 0 0 0.001 0 0
|
||||||
|
7.60742 0.001 0 0 0 0.001 0 0
|
||||||
|
7.62695 0.001 0 0 0 0.001 0 0
|
||||||
|
7.64648 0.001 0 0 0 0.001 0 0
|
||||||
|
7.66602 0.001 0 0 0 0.001 0 0
|
||||||
|
7.68555 0.001 0 0 0 0.001 0 0
|
||||||
|
7.70508 0.001 0 0 0 0.001 0 0
|
||||||
|
7.72461 0.001 0 0 0 0.001 0 0
|
||||||
|
7.74414 0.001 0 0 0 0.001 0 0
|
||||||
|
7.76367 0.001 0 0 0 0.001 0 0
|
||||||
|
7.7832 0.001 0 0 0 0.001 0 0
|
||||||
|
7.80273 0.001 0 0 0 0.001 0 0
|
||||||
|
7.82227 0.001 0 0 0 0.001 0 0
|
||||||
|
7.8418 0.001 0 0 0 0.001 0 0
|
||||||
|
7.86133 0.001 0 0 0 0.001 0 0
|
||||||
|
7.88086 0.001 0 0 0 0.001 0 0
|
||||||
|
7.90039 0.001 0 0 0 0.001 0 0
|
||||||
|
7.91992 0.001 0 0 0 0.001 0 0
|
||||||
|
7.93945 0.001 0 0 0 0.001 0 0
|
||||||
|
7.95898 0.001 0 0 0 0.001 0 0
|
||||||
|
7.97852 0.001 0 0 0 0.001 0 0
|
||||||
|
7.99805 0.001 0 0 0 0.001 0 0
|
||||||
|
8.01758 0.001 0 0 0 0.001 0 0
|
||||||
|
8.03711 0.001 0 0 0 0.001 0 0
|
||||||
|
8.05664 0.001 0 0 0 0.001 0 0
|
||||||
|
8.07617 0.001 0 0 0 0.001 0 0
|
||||||
|
8.0957 0.001 0 0 0 0.001 0 0
|
||||||
|
8.11523 0.001 0 0 0 0.001 0 0
|
||||||
|
8.13477 0.001 0 0 0 0.001 0 0
|
||||||
|
8.1543 0.001 0 0 0 0.001 0 0
|
||||||
|
8.17383 0.001 0 0 0 0.001 0 0
|
||||||
|
8.19336 0.001 0 0 0 0.001 0 0
|
||||||
|
8.21289 0.001 0 0 0 0.001 0 0
|
||||||
|
8.23242 0.001 0 0 0 0.001 0 0
|
||||||
|
8.25195 0.001 0 0 0 0.001 0 0
|
||||||
|
8.27148 0.001 0 0 0 0.001 0 0
|
||||||
|
8.29102 0.001 0 0 0 0.001 0 0
|
||||||
|
8.31055 0.001 0 0 0 0.001 0 0
|
||||||
|
8.33008 0.001 0 0 0 0.001 0 0
|
||||||
|
8.34961 0.001 0 0 0 0.001 0 0
|
||||||
|
8.36914 0.001 0 0 0 0.001 0 0
|
||||||
|
8.38867 0.001 0 0 0 0.001 0 0
|
||||||
|
8.4082 0.001 0 0 0 0.001 0 0
|
||||||
|
8.42773 0.001 0 0 0 0.001 0 0
|
||||||
|
8.44727 0.001 0 0 0 0.001 0 0
|
||||||
|
8.4668 0.001 0 0 0 0.001 0 0
|
||||||
|
8.48633 0.001 0 0 0 0.001 0 0
|
||||||
|
8.50586 0.001 0 0 0 0.001 0 0
|
||||||
|
8.52539 0.001 0 0 0 0.001 0 0
|
||||||
|
8.54492 0.001 0 0 0 0.001 0 0
|
||||||
|
8.56445 0.001 0 0 0 0.001 0 0
|
||||||
|
8.58398 0.001 0 0 0 0.001 0 0
|
||||||
|
8.60352 0.001 0 0 0 0.001 0 0
|
||||||
|
8.62305 0.001 0 0 0 0.001 0 0
|
||||||
|
8.64258 0.001 0 0 0 0.001 0 0
|
||||||
|
8.66211 0.001 0 0 0 0.001 0 0
|
||||||
|
8.68164 0.001 0 0 0 0.001 0 0
|
||||||
|
8.70117 0.001 0 0 0 0.001 0 0
|
||||||
|
8.7207 0.001 0 0 0 0.001 0 0
|
||||||
|
8.74023 0.001 0 0 0 0.001 0 0
|
||||||
|
8.75977 0.001 0 0 0 0.001 0 0
|
||||||
|
8.7793 0.001 0 0 0 0.001 0 0
|
||||||
|
8.79883 0.001 0 0 0 0.001 0 0
|
||||||
|
8.81836 0.001 0 0 0 0.001 0 0
|
||||||
|
8.83789 0.001 0 0 0 0.001 0 0
|
||||||
|
8.85742 0.001 0 0 0 0.001 0 0
|
||||||
|
8.87695 0.001 0 0 0 0.001 0 0
|
||||||
|
8.89648 0.001 0 0 0 0.001 0 0
|
||||||
|
8.91602 0.001 0 0 0 0.001 0 0
|
||||||
|
8.93555 0.001 0 0 0 0.001 0 0
|
||||||
|
8.95508 0.001 0 0 0 0.001 0 0
|
||||||
|
8.97461 0.001 0 0 0 0.001 0 0
|
||||||
|
8.99414 0.001 0 0 0 0.001 0 0
|
||||||
|
9.01367 0.001 0 0 0 0.001 0 0
|
||||||
|
9.0332 0.001 0 0 0 0.001 0 0
|
||||||
|
9.05273 0.001 0 0 0 0.001 0 0
|
||||||
|
9.07227 0.001 0 0 0 0.001 0 0
|
||||||
|
9.0918 0.001 0 0 0 0.001 0 0
|
||||||
|
9.11133 0.001 0 0 0 0.001 0 0
|
||||||
|
9.13086 0.001 0 0 0 0.001 0 0
|
||||||
|
9.15039 0.001 0 0 0 0.001 0 0
|
||||||
|
9.16992 0.001 0 0 0 0.001 0 0
|
||||||
|
9.18945 0.001 0 0 0 0.001 0 0
|
||||||
|
9.20898 0.001 0 0 0 0.001 0 0
|
||||||
|
9.22852 0.001 0 0 0 0.001 0 0
|
||||||
|
9.24805 0.001 0 0 0 0.001 0 0
|
||||||
|
9.26758 0.001 0 0 0 0.001 0 0
|
||||||
|
9.28711 0.001 0 0 0 0.001 0 0
|
||||||
|
9.30664 0.001 0 0 0 0.001 0 0
|
||||||
|
9.32617 0.001 0 0 0 0.001 0 0
|
||||||
|
9.3457 0.001 0 0 0 0.001 0 0
|
||||||
|
9.36523 0.001 0 0 0 0.001 0 0
|
||||||
|
9.38477 0.001 0 0 0 0.001 0 0
|
||||||
|
9.4043 0.001 0 0 0 0.001 0 0
|
||||||
|
9.42383 0.001 0 0 0 0.001 0 0
|
||||||
|
9.44336 0.001 0 0 0 0.001 0 0
|
||||||
|
9.46289 0.001 0 0 0 0.001 0 0
|
||||||
|
9.48242 0.001 0 0 0 0.001 0 0
|
||||||
|
9.50195 0.001 0 0 0 0.001 0 0
|
||||||
|
9.52148 0.001 0 0 0 0.001 0 0
|
||||||
|
9.54102 0.001 0 0 0 0.001 0 0
|
||||||
|
9.56055 0.001 0 0 0 0.001 0 0
|
||||||
|
9.58008 0.001 0 0 0 0.001 0 0
|
||||||
|
9.59961 0.001 0 0 0 0.001 0 0
|
||||||
|
9.61914 0.001 0 0 0 0.001 0 0
|
||||||
|
9.63867 0.001 0 0 0 0.001 0 0
|
||||||
|
9.6582 0.001 0 0 0 0.001 0 0
|
||||||
|
9.67773 0.001 0 0 0 0.001 0 0
|
||||||
|
9.69727 0.001 0 0 0 0.001 0 0
|
||||||
|
9.7168 0.001 0 0 0 0.001 0 0
|
||||||
|
9.73633 0.001 0 0 0 0.001 0 0
|
||||||
|
9.75586 0.001 0 0 0 0.001 0 0
|
||||||
|
9.77539 0.001 0 0 0 0.001 0 0
|
||||||
|
9.79492 0.001 0 0 0 0.001 0 0
|
||||||
|
9.81445 0.001 0 0 0 0.001 0 0
|
||||||
|
9.83398 0.001 0 0 0 0.001 0 0
|
||||||
|
9.85352 0.001 0 0 0 0.001 0 0
|
||||||
|
9.87305 0.001 0 0 0 0.001 0 0
|
||||||
|
9.89258 0.001 0 0 0 0.001 0 0
|
||||||
|
9.91211 0.001 0 0 0 0.001 0 0
|
||||||
|
9.93164 0.001 0 0 0 0.001 0 0
|
||||||
|
9.95117 0.001 0 0 0 0.001 0 0
|
||||||
|
9.9707 0.001 0 0 0 0.001 0 0
|
||||||
|
9.99023 0.001 0 0 0 0.001 0 0
|
Can't render this file because it has a wrong number of fields in line 18.
|
Loading…
x
Reference in New Issue
Block a user