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
898b1302
Commit
898b1302
authored
5 years ago
by
Maximilian Reininghaus
Browse files
Options
Downloads
Patches
Plain Diff
coding style
parent
0fd940c6
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Environment/BaseExponential.h
+31
-30
31 additions, 30 deletions
Environment/BaseExponential.h
Environment/FlatExponential.h
+15
-15
15 additions, 15 deletions
Environment/FlatExponential.h
Environment/SlidingPlanarExponential.h
+18
-15
18 additions, 15 deletions
Environment/SlidingPlanarExponential.h
with
64 additions
and
60 deletions
Environment/BaseExponential.h
+
31
−
30
View file @
898b1302
...
...
@@ -38,75 +38,76 @@ namespace corsika::environment {
// clang-format off
/**
* For a (normalized) axis \f$ \vec{a} \f$, the grammage along a non-orthogonal line with (normalized)
* direction \f$ \vec{
v
} \f$ is given by
* direction \f$ \vec{
u
} \f$ is given by
* \f[
* X = \frac{\varrho_0 \lambda}{\vec{
v
} \cdot \vec{a}} \left( \exp\left( \vec{
v
} \cdot \vec{a} \frac{l}{\lambda} \right) - 1 \right)
* X = \frac{\varrho_0 \lambda}{\vec{
u
} \cdot \vec{a}} \left( \exp\left( \vec{
u
} \cdot \vec{a} \frac{l}{\lambda} \right) - 1 \right)
* \f], where \f$ \varrho_0 \f$ is the density at the starting point.
*
* If \f$ \vec{
v
} \cdot \vec{a} = 0 \f$, the calculation is just like with a homogeneous density:
* If \f$ \vec{
u
} \cdot \vec{a} = 0 \f$, the calculation is just like with a homogeneous density:
* \f[
* X = \varrho_0 l;
* \f]
*/
// clang-format on
units
::
si
::
GrammageType
IntegratedGrammage
(
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
l
ine
,
units
::
si
::
LengthType
to
,
geometry
::
Vector
<
units
::
si
::
dimensionless_d
>
const
&
a
xis
)
const
{
auto
const
v
DotA
=
l
ine
.
NormalizedDirection
().
dot
(
a
xis
).
magnitude
();
auto
const
rhoStart
=
GetImplementation
().
GetMassDensity
(
l
ine
.
GetR0
());
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
vL
ine
,
units
::
si
::
LengthType
vL
,
geometry
::
Vector
<
units
::
si
::
dimensionless_d
>
const
&
vA
xis
)
const
{
auto
const
u
DotA
=
vL
ine
.
NormalizedDirection
().
dot
(
vA
xis
).
magnitude
();
auto
const
rhoStart
=
GetImplementation
().
GetMassDensity
(
vL
ine
.
GetR0
());
if
(
v
DotA
==
0
)
{
return
to
*
rhoStart
;
if
(
u
DotA
==
0
)
{
return
vL
*
rhoStart
;
}
else
{
return
rhoStart
*
(
fLambda
/
v
DotA
)
*
(
exp
(
v
DotA
*
to
*
fInvLambda
)
-
1
);
return
rhoStart
*
(
fLambda
/
u
DotA
)
*
(
exp
(
u
DotA
*
vL
*
fInvLambda
)
-
1
);
}
}
// clang-format off
/**
* For a (normalized) axis \f$ \vec{a} \f$, the length of a non-orthogonal line with (normalized)
* direction \f$ \vec{
v
} \f$ corresponding to grammage \f$ X \f$ is given by
* direction \f$ \vec{
u
} \f$ corresponding to grammage \f$ X \f$ is given by
* \f[
* l = \begin{cases}
* \frac{\lambda}{\vec{
v
} \cdot \vec{a}} \log\left(Y \right), & \text{if} Y := 0 > 1 +
* \vec{
v
} \cdot \vec{a} \frac{X}{\rho_0 \lambda}
* \frac{\lambda}{\vec{
u
} \cdot \vec{a}} \log\left(Y \right), & \text{if} Y := 0 > 1 +
* \vec{
u
} \cdot \vec{a} \frac{X}{\rho_0 \lambda}
* \infty & \text{else,}
* \end{cases}
* \f] where \f$ \varrho_0 \f$ is the density at the starting point.
*
* If \f$ \vec{
v
} \cdot \vec{a} = 0 \f$, the calculation is just like with a homogeneous density:
* If \f$ \vec{
u
} \cdot \vec{a} = 0 \f$, the calculation is just like with a homogeneous density:
* \f[
* l = \frac{X}{\varrho_0}
* \f]
*/
// clang-format on
units
::
si
::
LengthType
ArclengthFromGrammage
(
geometry
::
Trajectory
<
corsika
::
geometry
::
Line
>
const
&
l
ine
,
units
::
si
::
GrammageType
g
rammage
,
geometry
::
Vector
<
units
::
si
::
dimensionless_d
>
const
&
a
xis
)
const
{
auto
const
v
DotA
=
l
ine
.
NormalizedDirection
().
dot
(
a
xis
).
magnitude
();
auto
const
rhoStart
=
GetImplementation
().
GetMassDensity
(
l
ine
.
GetR0
());
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
vL
ine
,
units
::
si
::
GrammageType
vG
rammage
,
geometry
::
Vector
<
units
::
si
::
dimensionless_d
>
const
&
vA
xis
)
const
{
auto
const
u
DotA
=
vL
ine
.
NormalizedDirection
().
dot
(
vA
xis
).
magnitude
();
auto
const
rhoStart
=
GetImplementation
().
GetMassDensity
(
vL
ine
.
GetR0
());
if
(
v
DotA
==
0
)
{
return
g
rammage
/
rhoStart
;
if
(
u
DotA
==
0
)
{
return
vG
rammage
/
rhoStart
;
}
else
{
auto
const
logArg
=
g
rammage
*
fInvLambda
*
v
DotA
/
rhoStart
+
1
;
auto
const
logArg
=
vG
rammage
*
fInvLambda
*
u
DotA
/
rhoStart
+
1
;
if
(
logArg
>
0
)
{
return
fLambda
/
v
DotA
*
log
(
logArg
);
return
fLambda
/
u
DotA
*
log
(
logArg
);
}
else
{
return
std
::
numeric_limits
<
units
::
si
::
GrammageType
::
value_type
>::
infinity
()
*
return
std
::
numeric_limits
<
typename
decltype
(
vGrammage
)
::
value_type
>::
infinity
()
*
units
::
si
::
meter
;
}
}
}
public
:
BaseExponential
(
geometry
::
Point
const
&
p
0
,
units
::
si
::
MassDensityType
r
ho
,
units
::
si
::
LengthType
l
ambda
)
:
fRho0
(
r
ho
)
,
fLambda
(
l
ambda
)
,
fInvLambda
(
1
/
l
ambda
)
,
fP0
(
p
0
)
{}
BaseExponential
(
geometry
::
Point
const
&
vP
0
,
units
::
si
::
MassDensityType
vR
ho
,
units
::
si
::
LengthType
vL
ambda
)
:
fRho0
(
vR
ho
)
,
fLambda
(
vL
ambda
)
,
fInvLambda
(
1
/
vL
ambda
)
,
fP0
(
vP
0
)
{}
};
}
// namespace corsika::environment
...
...
This diff is collapsed.
Click to expand it.
Environment/FlatExponential.h
+
15
−
15
View file @
898b1302
...
...
@@ -40,30 +40,30 @@ namespace corsika::environment {
using
Base
=
BaseExponential
<
FlatExponential
<
T
>>
;
public:
FlatExponential
(
geometry
::
Point
const
&
p
0
,
geometry
::
Vector
<
units
::
si
::
dimensionless_d
>
const
&
a
xis
,
units
::
si
::
MassDensityType
r
ho
,
units
::
si
::
LengthType
l
ambda
,
NuclearComposition
n
uclComp
)
:
Base
(
p
0
,
r
ho
,
l
ambda
)
,
fAxis
(
a
xis
)
,
fNuclComp
(
n
uclComp
)
{}
FlatExponential
(
geometry
::
Point
const
&
vP
0
,
geometry
::
Vector
<
units
::
si
::
dimensionless_d
>
const
&
vA
xis
,
units
::
si
::
MassDensityType
vR
ho
,
units
::
si
::
LengthType
vL
ambda
,
NuclearComposition
vN
uclComp
)
:
Base
(
vP
0
,
vR
ho
,
vL
ambda
)
,
fAxis
(
vA
xis
)
,
fNuclComp
(
vN
uclComp
)
{}
units
::
si
::
MassDensityType
GetMassDensity
(
geometry
::
Point
const
&
p
)
const
override
{
return
Base
::
fRho0
*
exp
(
Base
::
fInvLambda
*
(
p
-
Base
::
fP0
).
dot
(
fAxis
));
units
::
si
::
MassDensityType
GetMassDensity
(
geometry
::
Point
const
&
vP
)
const
override
{
return
Base
::
fRho0
*
exp
(
Base
::
fInvLambda
*
(
vP
-
Base
::
fP0
).
dot
(
fAxis
));
}
NuclearComposition
const
&
GetNuclearComposition
()
const
override
{
return
fNuclComp
;
}
units
::
si
::
GrammageType
IntegratedGrammage
(
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
l
ine
,
units
::
si
::
LengthType
t
o
)
const
override
{
return
Base
::
IntegratedGrammage
(
l
ine
,
t
o
,
fAxis
);
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
vL
ine
,
units
::
si
::
LengthType
vT
o
)
const
override
{
return
Base
::
IntegratedGrammage
(
vL
ine
,
vT
o
,
fAxis
);
}
units
::
si
::
LengthType
ArclengthFromGrammage
(
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
l
ine
,
units
::
si
::
GrammageType
g
rammage
)
const
override
{
return
Base
::
ArclengthFromGrammage
(
l
ine
,
g
rammage
,
fAxis
);
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
vL
ine
,
units
::
si
::
GrammageType
vG
rammage
)
const
override
{
return
Base
::
ArclengthFromGrammage
(
vL
ine
,
vG
rammage
,
fAxis
);
}
};
}
// namespace corsika::environment
...
...
This diff is collapsed.
Click to expand it.
Environment/SlidingPlanarExponential.h
+
18
−
15
View file @
898b1302
...
...
@@ -11,11 +11,13 @@
#ifndef _include_Environment_SlidingPlanarExponential_h_
#define _include_Environment_SlidingPlanarExponential_h_
#include
<corsika/environment/
Base
Exponential.h>
#include
<corsika/environment/
Flat
Exponential.h>
#include
<corsika/environment/NuclearComposition.h>
#include
<corsika/geometry/Line.h>
#include
<corsika/geometry/Point.h>
#include
<corsika/geometry/Trajectory.h>
#include
<corsika/particles/ParticleProperties.h>
#include
<corsika/random/RNGManager.h>
#include
<corsika/units/PhysicalUnits.h>
namespace
corsika
::
environment
{
...
...
@@ -40,30 +42,31 @@ namespace corsika::environment {
using
Base
=
BaseExponential
<
SlidingPlanarExponential
<
T
>>
;
public:
SlidingPlanarExponential
(
geometry
::
Point
const
&
p
0
,
units
::
si
::
MassDensityType
r
ho
,
units
::
si
::
LengthType
l
ambda
,
NuclearComposition
n
uclComp
)
:
Base
(
p
0
,
r
ho
,
l
ambda
)
,
fNuclComp
(
n
uclComp
)
{}
SlidingPlanarExponential
(
geometry
::
Point
const
&
vP
0
,
units
::
si
::
MassDensityType
vR
ho
,
units
::
si
::
LengthType
vL
ambda
,
NuclearComposition
vN
uclComp
)
:
Base
(
vP
0
,
vR
ho
,
vL
ambda
)
,
fNuclComp
(
vN
uclComp
)
{}
units
::
si
::
MassDensityType
GetMassDensity
(
geometry
::
Point
const
&
p
)
const
override
{
auto
const
height
=
(
p
-
Base
::
fP0
).
norm
();
units
::
si
::
MassDensityType
GetMassDensity
(
geometry
::
Point
const
&
vP
)
const
override
{
auto
const
height
=
(
vP
-
Base
::
fP0
).
norm
();
return
Base
::
fRho0
*
exp
(
Base
::
fInvLambda
*
height
);
}
NuclearComposition
const
&
GetNuclearComposition
()
const
override
{
return
fNuclComp
;
}
units
::
si
::
GrammageType
IntegratedGrammage
(
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
l
ine
,
units
::
si
::
LengthType
to
)
const
override
{
auto
const
axis
=
(
l
ine
.
GetR0
()
-
Base
::
fP0
).
normalized
();
return
Base
::
IntegratedGrammage
(
l
ine
,
to
,
axis
);
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
vL
ine
,
units
::
si
::
LengthType
vL
)
const
override
{
auto
const
axis
=
(
vL
ine
.
GetR0
()
-
Base
::
fP0
).
normalized
();
return
Base
::
IntegratedGrammage
(
vL
ine
,
vL
,
axis
);
}
units
::
si
::
LengthType
ArclengthFromGrammage
(
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
l
ine
,
units
::
si
::
GrammageType
g
rammage
)
const
override
{
auto
const
axis
=
(
l
ine
.
GetR0
()
-
Base
::
fP0
).
normalized
();
return
Base
::
ArclengthFromGrammage
(
l
ine
,
g
rammage
,
axis
);
geometry
::
Trajectory
<
geometry
::
Line
>
const
&
vL
ine
,
units
::
si
::
GrammageType
vG
rammage
)
const
override
{
auto
const
axis
=
(
vL
ine
.
GetR0
()
-
Base
::
fP0
).
normalized
();
return
Base
::
ArclengthFromGrammage
(
vL
ine
,
vG
rammage
,
axis
);
}
};
...
...
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