IAP GITLAB
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
corsika
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue 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
Pranav Sampathkumar
corsika
Commits
32d16e46
Commit
32d16e46
authored
4 years ago
by
Maximilian Reininghaus
Committed by
ralfulrich
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fixed interpolation
parent
b4727f6f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Environment/ShowerAxis.cc
+4
-2
4 additions, 2 deletions
Environment/ShowerAxis.cc
Environment/ShowerAxis.h
+13
-7
13 additions, 7 deletions
Environment/ShowerAxis.h
Environment/testShowerAxis.cc
+5
-5
5 additions, 5 deletions
Environment/testShowerAxis.cc
with
22 additions
and
14 deletions
Environment/ShowerAxis.cc
+
4
−
2
View file @
32d16e46
...
...
@@ -34,15 +34,17 @@ GrammageType ShowerAxis::X(LengthType l) const {
assert
(
0
<=
lambda
&&
lambda
<=
1.
);
std
::
cout
<<
l
<<
": "
<<
lower
<<
" "
<<
lambda
<<
" "
<<
upper
<<
std
::
endl
;
// linear interpolation between X[lower] and X[upper]
return
X_
[
low
er
]
*
lambda
+
X_
[
upp
er
]
*
(
1
-
lambda
);
return
X_
[
upp
er
]
*
lambda
+
X_
[
low
er
]
*
(
1
-
lambda
);
}
LengthType
ShowerAxis
::
steplength
()
const
{
return
steplength_
;
}
GrammageType
ShowerAxis
::
maximumX
()
const
{
return
*
X_
.
rbegin
();
}
GrammageType
ShowerAxis
::
minimumX
()
const
{
return
*
X_
.
cbegin
();
}
GrammageType
ShowerAxis
::
minimumX
()
const
{
return
GrammageType
::
zero
();
}
GrammageType
ShowerAxis
::
projectedX
(
geometry
::
Point
const
&
p
)
const
{
auto
const
projectedLength
=
(
p
-
pointStart_
).
dot
(
axis_normalized_
);
...
...
This diff is collapsed.
Click to expand it.
Environment/ShowerAxis.h
+
13
−
7
View file @
32d16e46
...
...
@@ -23,6 +23,8 @@
#include
<stdexcept>
#include
<vector>
#include
<iostream>
#include
<boost/math/quadrature/gauss_kronrod.hpp>
namespace
corsika
::
environment
{
...
...
@@ -37,7 +39,7 @@ namespace corsika::environment {
,
max_length_
(
length_
.
norm
())
,
steplength_
(
max_length_
/
steps
)
,
axis_normalized_
(
length
/
max_length_
)
,
X_
(
steps
)
{
,
X_
(
steps
+
1
)
{
auto
const
*
const
universe
=
env
.
GetUniverse
().
get
();
auto
rho
=
[
pStart
,
length
,
universe
](
double
x
)
{
...
...
@@ -48,19 +50,23 @@ namespace corsika::environment {
double
error
;
int
k
=
0
;
for
(
int
i
=
1
;
i
<
steps
;
++
i
)
{
auto
const
x_prev
=
(
i
-
1
)
/
(
steps
-
1.
);
X_
[
0
]
=
units
::
si
::
GrammageType
::
zero
();
auto
sum
=
units
::
si
::
GrammageType
::
zero
();
for
(
int
i
=
1
;
i
<=
steps
;
++
i
)
{
auto
const
x_prev
=
(
i
-
1.
)
/
steps
;
auto
const
d_prev
=
max_length_
*
x_prev
;
auto
const
x
=
i
/
(
steps
-
1.
)
;
auto
const
x
=
double
(
i
)
/
steps
;
auto
const
r
=
boost
::
math
::
quadrature
::
gauss_kronrod
<
double
,
15
>::
integrate
(
rho
,
x_prev
,
x
,
15
,
1e-9
,
&
error
);
auto
const
result
=
units
::
si
::
MassDensityType
(
phys
::
units
::
detail
::
magnitude_tag
,
r
)
*
max_length_
;
auto
const
resultTotal
=
result
+
X_
[
i
-
1
];
X_
[
i
]
=
resultTotal
;
for
(;
resultTotal
>
k
*
X_binning_
;
++
k
)
{
sum
+=
result
;
X_
[
i
]
=
sum
;
for
(;
sum
>
k
*
X_binning_
;
++
k
)
{
d_
.
emplace_back
(
d_prev
+
k
*
X_binning_
*
steplength_
/
result
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Environment/testShowerAxis.cc
+
5
−
5
View file @
32d16e46
...
...
@@ -66,18 +66,18 @@ TEST_CASE("Homogeneous Density") {
Point
const
injectionPos
=
showerCore
+
Vector
<
dimensionless_d
>
{
cs
,
{
0
,
0
,
1
}}
*
t
;
environment
::
ShowerAxis
const
showerAxis
{
injectionPos
,
(
showerCore
-
injectionPos
),
*
env
,
1000
0
};
*
env
,
2
0
};
CHECK
(
showerAxis
.
steplength
()
==
1
_m
);
CHECK
(
showerAxis
.
steplength
()
==
500
_m
);
CHECK
(
showerAxis
.
maximumX
()
/
(
10
_km
*
density
)
==
Approx
(
1
).
epsilon
(
1e-8
));
CHECK
(
showerAxis
.
minimumX
()
==
0
_g
/
square
(
1
_cm
));
const
Point
p
{
cs
,
10
_km
,
20
_km
,
9
_km
};
CHECK
(
showerAxis
.
projectedX
(
p
)
/
(
1
_km
*
density
)
==
Approx
(
1
).
epsilon
(
1e-8
));
const
Point
p
{
cs
,
10
_km
,
20
_km
,
8.3
_km
};
CHECK
(
showerAxis
.
projectedX
(
p
)
/
(
1
.7
_km
*
density
)
==
Approx
(
1
).
epsilon
(
1e-8
));
const
units
::
si
::
LengthType
d
=
1
_km
;
const
units
::
si
::
LengthType
d
=
6.789
_km
;
CHECK
(
showerAxis
.
X
(
d
)
/
(
d
*
density
)
==
Approx
(
1
).
epsilon
(
1e-8
));
const
Vector
<
dimensionless_d
>
dir
{
cs
,
{
0
,
0
,
-
1
}};
...
...
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