Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
psaap3-weno
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
Andreas Klöckner
psaap3-weno
Commits
95c8489b
Commit
95c8489b
authored
5 years ago
by
Timothy A. Smith
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into weno-weight-bug
parents
648ec71c
75172c66
No related branches found
No related tags found
1 merge request
!33
Reference implementation
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
WENO.F90
+6
-50
6 additions, 50 deletions
WENO.F90
requirements.txt
+1
-1
1 addition, 1 deletion
requirements.txt
test.py
+4
-1
4 additions, 1 deletion
test.py
with
11 additions
and
52 deletions
WENO.F90
+
6
−
50
View file @
95c8489b
...
...
@@ -777,43 +777,14 @@ subroutine oscillation_pos(nvars, characteristic_fluxes, oscillation)
real
*
8
w1sum
(
1
),
w2sum
(
1
),
w3sum
(
1
),
c1sum
(
1
),
c2sum
(
1
),
c3sum
(
1
)
integer
i
integer
j
do
i
=
1
,
nvars
w1sum
(
1
)
=
0.0d0
do
j
=
0
,
2
w1sum
(
1
)
=
w1sum
(
1
)
+
weights1
(
j
)
*
characteristic_fluxes
(
i
,
j
-2
)
end
do
w2sum
(
1
)
=
0.0d0
do
j
=
0
,
2
w2sum
(
1
)
=
w2sum
(
1
)
+
weights2
(
j
)
*
characteristic_fluxes
(
i
,
j
-1
)
end
do
!w3sum(1) = 0.0d0
!do j=0,2
! w3sum(1) = w3sum(1) + weights3(j)*characteristic_fluxes(i,j)
!end do
!call weighted_sum_pos(3, weights3, characteristic_fluxes(i,0:2), w3sum)
call
weighted_sum_pos
(
3
,
weights3
,
characteristic_fluxes
(
i
,:),
w3sum
)
c1sum
(
1
)
=
0.0d0
do
j
=
0
,
2
c1sum
(
1
)
=
c1sum
(
1
)
+
weightsc
(
j
)
*
characteristic_fluxes
(
i
,
j
-2
)
end
do
c2sum
(
1
)
=
0.0d0
do
j
=
0
,
2
c2sum
(
1
)
=
c2sum
(
1
)
+
weightsc
(
j
)
*
characteristic_fluxes
(
i
,
j
-1
)
end
do
c3sum
(
1
)
=
0.0d0
do
j
=
0
,
2
c3sum
(
1
)
=
c3sum
(
1
)
+
weightsc
(
j
)
*
characteristic_fluxes
(
i
,
j
)
end
do
!call weighted_sum(3, weights1, characteristic_fluxes(i,-2:0), w1sum)
!call weighted_sum(3, weightsc, characteristic_fluxes(i,-2:0), c1sum)
!call weighted_sum(3, weights2, characteristic_fluxes(i,-1:1), w2sum)
!call weighted_sum(3, weightsc, characteristic_fluxes(i,-1:1), c2sum)
!call weighted_sum(3, weights3, characteristic_fluxes(i,0:2), w3sum)
!call weighted_sum(3, weightsc, characteristic_fluxes(i,0:2), c3sum)
call
weighted_sum
(
3
,
weights1
,
characteristic_fluxes
(
i
,
-2
:
0
),
w1sum
)
call
weighted_sum
(
3
,
weightsc
,
characteristic_fluxes
(
i
,
-2
:
0
),
c1sum
)
call
weighted_sum
(
3
,
weights2
,
characteristic_fluxes
(
i
,
-1
:
1
),
w2sum
)
call
weighted_sum
(
3
,
weightsc
,
characteristic_fluxes
(
i
,
-1
:
1
),
c2sum
)
call
weighted_sum
(
3
,
weights3
,
characteristic_fluxes
(
i
,
0
:
2
),
w3sum
)
call
weighted_sum
(
3
,
weightsc
,
characteristic_fluxes
(
i
,
0
:
2
),
c3sum
)
oscillation
(
i
,
1
)
=
(
1.0d0
/
4
)
*
w1sum
(
1
)
**
2
+
(
13.0d0
/
12
)
*
c1sum
(
1
)
**
2
oscillation
(
i
,
2
)
=
(
1.0d0
/
4
)
*
w2sum
(
1
)
**
2
+
(
13.0d0
/
12
)
*
c2sum
(
1
)
**
2
...
...
@@ -821,21 +792,6 @@ subroutine oscillation_pos(nvars, characteristic_fluxes, oscillation)
end
do
end
subroutine
subroutine
weighted_sum_pos
(
n
,
w
,
a
,
a_sum
)
integer
,
intent
(
in
)
::
n
real
*
8
,
intent
(
in
)
::
w
(
0
:
2
)
!real*8, intent(in) :: a(0:2)
real
*
8
,
intent
(
in
)
::
a
(
-2
:
3
)
real
*
8
,
intent
(
out
)
::
a_sum
(
1
)
integer
j
a_sum
(
1
)
=
0.0d0
do
j
=
0
,
2
a_sum
(
1
)
=
a_sum
(
1
)
+
w
(
j
)
*
a
(
j
)
end
do
end
subroutine
subroutine
flux_differences_pos
(
nvars
,
characteristic_fluxes
,
flux_differences
)
implicit
none
...
...
This diff is collapsed.
Click to expand it.
requirements.txt
+
1
−
1
View file @
95c8489b
...
...
@@ -5,7 +5,7 @@ git+https://github.com/inducer/pyopencl.git
git+https://github.com/inducer/pymbolic.git
git+https://github.com/inducer/genpy.git
git+https://github.com/inducer/codepy.git
git+https://gitlab.tiker.net/inducer/loopy.git@
kernel_callables_v3
git+https://gitlab.tiker.net/inducer/loopy.git@
fix-slice-processing-at-base
git+https://github.com/inducer/f2py
...
...
This diff is collapsed.
Click to expand it.
test.py
+
4
−
1
View file @
95c8489b
...
...
@@ -15,7 +15,10 @@ from pyopencl.tools import ( # noqa
as
pytest_generate_tests
)
import
utilities
as
u
from
data_for_test
import
flux_test_data_fixture
# noqa: F401
from
data_for_test
import
(
# noqa: F401
flux_test_data_fixture
,
single_data
as
std
# "single_test_data", sorry
)
def
test_weno_weight_computation
(
ctx_factory
,
flux_test_data_fixture
):
...
...
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