Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
8bfe68e0
There was an error fetching the commit references. Please try again later.
Commit
8bfe68e0
authored
9 years ago
by
Tomas Sobotik
Browse files
Options
Downloads
Patches
Plain Diff
Added run script and map for forest-fire solver.
parent
f5cb644d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/hamilton-jacobi-parallel-map/mapa_png.png
+0
-0
0 additions, 0 deletions
examples/hamilton-jacobi-parallel-map/mapa_png.png
examples/hamilton-jacobi-parallel-map/run
+34
-55
34 additions, 55 deletions
examples/hamilton-jacobi-parallel-map/run
with
34 additions
and
55 deletions
examples/hamilton-jacobi-parallel-map/mapa_png.png
0 → 100644
+
0
−
0
View file @
8bfe68e0
24.3 KiB
This diff is collapsed.
Click to expand it.
examples/hamilton-jacobi-parallel-map/run
+
34
−
55
View file @
8bfe68e0
#!/bin/bash
#GRID_SIZES="0897"
GRID_SIZES
=
"0008 0015 0029 0057 0113 0225 0449"
#GRID_SIZES="1793"
dimensions
=
2
size
=
2
time
=
3
for
grid_size
in
$GRID_SIZES
;
do
rm
-r
grid-
${
grid_size
}
mkdir
grid-
${
grid_size
}
cd
grid-
${
grid_size
}
tnl-grid-setup
--dimensions
$dimensions
\
--origin-x
-1
.0
\
--origin-y
-1
.0
\
--origin-z
-1
.0
\
--proportions-x
$size
\
--proportions-y
$size
\
--proportions-z
$size
\
--size-x
${
grid_size
}
\
--size-y
${
grid_size
}
\
--size-z
${
grid_size
}
tnl-init
--test-function
sdf-para
\
--offset
0.25
\
--output-file
init.tnl
\
--final-time
0.0
\
--snapshot-period
0.1
\
time
=
50
rm
-r
work_dir
mkdir
work_dir
cp
mapa_png.png work_dir/mapa_png.png
cd
work_dir
tnl-image-converter
--image-format
png
\
--input-images
mapa_png.png
tnl-init
--test-function
sdf-para
\
--x-centre
0.5
\
--y-centre
1.0
\
--offset
0.05
\
--output-file
init.tnl
\
--final-time
0.0
\
--snapshot-period
0.1
hamilton-jacobi-parallel-map-dbg
--initial-condition
init.tnl
\
--map
mapa_png.tnl
\
--cfl-condition
50
\
--mesh
mesh.tnl
\
--initial-tau
1.0e-3
\
--epsilon
4.0
\
--delta
0.0
\
--stop-time
$time
\
--scheme
godunov
\
--subgrid-size
8
\
--dim
$dimensions
tnl-init
--test-function
sdf-para-sdf
\
--offset
0.25
\
--output-file
sdf.tnl
\
--final-time
0.0
\
--snapshot-period
0.1
hamilton-jacobi-parallel
--initial-condition
init.tnl
\
--cfl-condition
1.0e-1
\
--mesh
mesh.tnl
\
--initial-tau
1.0e-3
\
--epsilon
1.0
\
--delta
0.0
\
--stop-time
$time
\
--scheme
godunov
\
--subgrid-size
8
tnl-diff
--mesh
mesh.tnl
--mode
sequence
--input-files
sdf.tnl u-00001.tnl
--write-difference
yes
--output-file
../
${
grid_size
}
.diff
cd
..
done
./tnl-err2eoc-2.py
--format
txt
--size
$size
*
.diff
#cp ../template.dat1 template.dat1
#cp ../template.dat2 template.dat2
#cp ../gplt2eps.py gplt2eps.py
cd
..
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment