IAP GITLAB
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
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
Model registry
Operate
Environments
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
Air Shower Physics
corsika
Commits
d3c475e5
Commit
d3c475e5
authored
4 years ago
by
Andre Schmidt
Committed by
ralfulrich
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
added function for magnetic step
parent
c8031e21
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!278
Magnetic Tracking
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Framework/Cascade/Cascade.h
+4
-29
4 additions, 29 deletions
Framework/Cascade/Cascade.h
Processes/TrackingLine/TrackingLine.h
+62
-55
62 additions, 55 deletions
Processes/TrackingLine/TrackingLine.h
with
66 additions
and
84 deletions
Framework/Cascade/Cascade.h
+
4
−
29
View file @
d3c475e5
...
...
@@ -214,7 +214,7 @@ namespace corsika::cascade {
vParticle
.
GetEnergy
()
*
units
::
constants
::
c
;
// determine geometric tracking
auto
[
stepWithoutB
,
stepWithB
,
geomMaxLength
,
nextVol
]
=
fTracking
.
GetTrack
(
vParticle
);
auto
[
lineWithoutB
,
stepWithoutB
,
stepWithB
,
geomMaxLength
,
nextVol
]
=
fTracking
.
GetTrack
(
vParticle
);
[[
maybe_unused
]]
auto
const
&
dummy_nextVol
=
nextVol
;
// convert next_step from grammage to length
...
...
@@ -232,41 +232,16 @@ namespace corsika::cascade {
C8LOG_DEBUG
(
"transport particle by : {} m"
,
min_distance
/
1
_m
);
// determine displacement by the magnetic field
auto
const
*
currentLogicalVolumeNode
=
vParticle
.
GetNode
();
auto
magneticfield
=
currentLogicalVolumeNode
->
GetModelProperties
().
GetMagneticField
(
vParticle
.
GetPosition
());
geometry
::
Vector
<
SpeedType
::
dimension_type
>
velocity
=
vParticle
.
GetMomentum
()
/
vParticle
.
GetEnergy
()
*
corsika
::
units
::
constants
::
c
;
geometry
::
Vector
<
dimensionless_d
>
const
directionBefore
=
velocity
.
normalized
();
int
chargeNumber
;
if
(
corsika
::
particles
::
IsNucleus
(
vParticle
.
GetPID
()))
{
chargeNumber
=
vParticle
.
GetNuclearZ
();
}
else
{
chargeNumber
=
corsika
::
particles
::
GetChargeNumber
(
vParticle
.
GetPID
());
}
auto
k
=
chargeNumber
*
corsika
::
units
::
constants
::
cSquared
*
1
_eV
/
(
velocity
.
GetNorm
()
*
vParticle
.
GetEnergy
()
*
1
_V
);
// First Movement
// assuming magnetic field does not change during movement
auto
position
=
vParticle
.
GetPosition
()
+
directionBefore
*
min_distance
/
2
;
// Change of direction by magnetic field
geometry
::
Vector
<
dimensionless_d
>
const
directionAfter
=
directionBefore
+
directionBefore
.
cross
(
magneticfield
)
*
min_distance
*
k
;
// Second Movement
position
=
position
+
directionAfter
*
min_distance
/
2
;
// determine displacement by the magnetic field
auto
[
line
,
position
,
directionAfter
]
=
fTracking
.
MagneticStep
(
vParticle
,
lineWithoutB
,
min_distance
);
auto
distance
=
position
-
vParticle
.
GetPosition
();
// distance.norm() != min_distance if q != 0
// small error can be neglected
if
(
distance
.
norm
()
!=
0
_m
)
{
velocity
=
distance
.
normalized
()
*
velocity
.
norm
();
}
// no velocity update for very small steps
// here the particle is actually moved along the trajectory to new position:
// std::visit(setup::ParticleUpdate<Particle>{vParticle}, step);
vParticle
.
SetMomentum
(
directionAfter
.
normalized
()
*
vParticle
.
GetMomentum
().
norm
());
geometry
::
Line
line
(
vParticle
.
GetPosition
(),
velocity
);
geometry
::
Trajectory
<
geometry
::
Line
>
stepNew
(
line
,
distance
.
norm
()
/
velocity
.
norm
());
geometry
::
Trajectory
<
geometry
::
Line
>
stepNew
(
line
,
distance
.
norm
()
/
line
.
GetV0
().
norm
());
vParticle
.
SetPosition
(
position
);
vParticle
.
SetTime
(
vParticle
.
GetTime
()
+
distance
.
norm
()
/
units
::
constants
::
c
);
std
::
cout
<<
"New Position: "
<<
vParticle
.
GetPosition
().
GetCoordinates
()
<<
std
::
endl
;
...
...
This diff is collapsed.
Click to expand it.
Processes/TrackingLine/TrackingLine.h
+
62
−
55
View file @
d3c475e5
...
...
@@ -62,6 +62,8 @@ namespace corsika::process {
<<
" GeV "
<<
std
::
endl
;
std
::
cout
<<
"TrackingLine v: "
<<
velocity
.
GetComponents
()
<<
std
::
endl
;
geometry
::
Line
line
(
currentPosition
,
velocity
);
auto
const
*
currentLogicalVolumeNode
=
p
.
GetNode
();
//~ auto const* currentNumericalVolumeNode =
//~ fEnvironment.GetUniverse()->GetContainingNode(currentPosition);
...
...
@@ -86,8 +88,7 @@ namespace corsika::process {
std
::
cout
<<
" Magnetic Field: "
<<
magneticfield
.
GetComponents
()
/
1
_uT
<<
" uT "
<<
std
::
endl
;
auto
k
=
chargeNumber
*
corsika
::
units
::
constants
::
cSquared
*
1
_eV
/
(
velocity
.
GetNorm
()
*
p
.
GetEnergy
()
*
1
_V
);
geometry
::
Vector
<
dimensionless_d
>
const
directionBefore
=
velocity
.
normalized
();
geometry
::
Vector
<
SpeedType
::
dimension_type
>
velocity1
=
velocity
;
geometry
::
Vector
<
SpeedType
::
dimension_type
>
velocity2
=
velocity
;
LengthType
Steplength
=
10
_m
;
// length irrelevant if q=0 and else it gets changed again
// for entering from outside
auto
addIfIntersects
=
[
&
](
auto
const
&
vtn
)
{
...
...
@@ -114,7 +115,6 @@ namespace corsika::process {
std
::
cout
<<
"Solutions for next Volume: "
<<
solutions
[
i
].
real
()
<<
std
::
endl
;
}
}
LengthType
Steplength
;
if
(
tmp
.
size
()
>
0
)
{
Steplength
=
1
_m
*
*
std
::
min_element
(
tmp
.
begin
(),
tmp
.
end
());
std
::
cout
<<
"Steplength to next volume = "
<<
Steplength
<<
std
::
endl
;
...
...
@@ -123,23 +123,15 @@ namespace corsika::process {
// what to do when this happens? (very unlikely)
}
delete
[]
solutions
;
// First Movement
// assuming magnetic field does not change during movement
auto
position
=
currentPosition
+
directionBefore
*
Steplength
/
2
;
// Change of direction by magnetic field
geometry
::
Vector
<
dimensionless_d
>
const
directionAfter
=
directionBefore
+
directionBefore
.
cross
(
magneticfield
)
*
Steplength
*
k
;
// Second Movement
position
=
position
+
directionAfter
*
Steplength
/
2
;
geometry
::
Vector
<
dimensionless_d
>
const
direction
=
(
position
-
currentPosition
)
/
(
position
-
currentPosition
).
GetNorm
();
velocity1
=
direction
*
velocity
.
GetNorm
();
}
// instead of changing the line with magnetic field, the TimeOfIntersection() could be changed
}
auto
[
line1
,
position
,
direction
]
=
MagneticStep
(
p
,
line
,
Steplength
);
// new particle position and direction not needed in this case
// instead of changing the line with magnetic field, the TimeOfIntersection() could be changed
// using line has some errors for huge steps
geometry
::
Line
line
(
currentPosition
,
velocity1
);
if
(
auto
opt
=
TimeOfIntersection
(
line
,
sphere
);
opt
.
has_value
())
{
if
(
auto
opt
=
TimeOfIntersection
(
line
1
,
sphere
);
opt
.
has_value
())
{
auto
const
[
t1
,
t2
]
=
*
opt
;
C8LOG_DEBUG
(
"intersection times: {} s; {} s"
,
t1
/
1
_s
,
t2
/
1
_s
);
if
(
t1
.
magnitude
()
>
0
)
...
...
@@ -178,34 +170,26 @@ namespace corsika::process {
}
LengthType
Steplength
;
if
(
tmp
.
size
()
>
0
)
{
Steplength
=
1
_m
*
*
std
::
min_element
(
tmp
.
begin
(),
tmp
.
end
());
if
(
numericallyInside
==
false
)
{
int
p
=
std
::
min_element
(
tmp
.
begin
(),
tmp
.
end
())
-
tmp
.
begin
();
tmp
.
erase
(
tmp
.
begin
()
+
p
);
Steplength
=
1
_m
*
*
std
::
min_element
(
tmp
.
begin
(),
tmp
.
end
());
}
std
::
cout
<<
"steplength out of current volume = "
<<
Steplength
<<
std
::
endl
;
Steplength
=
1
_m
*
*
std
::
min_element
(
tmp
.
begin
(),
tmp
.
end
());
if
(
numericallyInside
==
false
)
{
int
p
=
std
::
min_element
(
tmp
.
begin
(),
tmp
.
end
())
-
tmp
.
begin
();
tmp
.
erase
(
tmp
.
begin
()
+
p
);
Steplength
=
1
_m
*
*
std
::
min_element
(
tmp
.
begin
(),
tmp
.
end
());
}
std
::
cout
<<
"steplength out of current volume = "
<<
Steplength
<<
std
::
endl
;
}
else
{
std
::
cout
<<
"no intersection (2)!"
<<
std
::
endl
;
// what to do when this happens? (very unlikely)
}
delete
[]
solutions
;
}
// First Movement
// assuming magnetic field does not change during movement
auto
position
=
currentPosition
+
directionBefore
*
Steplength
/
2
;
// Change of direction by magnetic field
geometry
::
Vector
<
dimensionless_d
>
const
directionAfter
=
directionBefore
+
directionBefore
.
cross
(
magneticfield
)
*
Steplength
*
k
;
// Second Movement
position
=
position
+
directionAfter
*
Steplength
/
2
;
geometry
::
Vector
<
dimensionless_d
>
const
direction
=
(
position
-
currentPosition
)
/
(
position
-
currentPosition
).
GetNorm
();
velocity2
=
direction
*
velocity
.
GetNorm
();
}
// instead of changing the line with magnetic field, the TimeOfIntersection() could be changed
geometry
::
Line
line
(
currentPosition
,
velocity2
);
auto
[
line2
,
position
,
direction
]
=
MagneticStep
(
p
,
line
,
Steplength
);
// new particle position and direction not needed in this case
// instead of changing the line with magnetic field, the TimeOfIntersection() could be changed
// using line has some errors for huge steps
[[
maybe_unused
]]
auto
const
[
t1
,
t2
]
=
*
TimeOfIntersection
(
line
,
sphere
);
[[
maybe_unused
]]
auto
const
[
t1
,
t2
]
=
*
TimeOfIntersection
(
line
2
,
sphere
);
[[
maybe_unused
]]
auto
dummy_t1
=
t1
;
intersections
.
emplace_back
(
t2
,
currentLogicalVolumeNode
->
GetParent
());
}
...
...
@@ -228,26 +212,49 @@ namespace corsika::process {
<<
min
// << " " << minIter->second->GetModelProperties().GetName()
<<
std
::
endl
;
auto
[
lineWithB
,
position
,
direction
]
=
MagneticStep
(
p
,
line
,
velocity
.
norm
()
*
min
);
// new particle position and direction not needed in this case
return
std
::
make_tuple
(
line
,
geometry
::
Trajectory
<
geometry
::
Line
>
(
line
,
min
),
geometry
::
Trajectory
<
geometry
::
Line
>
(
lineWithB
,
min
),
velocity
.
norm
()
*
min
,
minIter
->
second
);
}
template
<
typename
Particle
>
// was Stack previously, and argument was
// Stack::StackIterator
// determine direction of the particle after adding magnetic field
auto
MagneticStep
(
Particle
const
&
p
,
corsika
::
geometry
::
Line
line
,
corsika
::
units
::
si
::
LengthType
Steplength
)
{
using
namespace
corsika
::
units
::
si
;
//charge of the particle
int
chargeNumber
;
if
(
corsika
::
particles
::
IsNucleus
(
p
.
GetPID
()))
{
chargeNumber
=
p
.
GetNuclearZ
();
}
else
{
chargeNumber
=
corsika
::
particles
::
GetChargeNumber
(
p
.
GetPID
());
}
auto
const
*
currentLogicalVolumeNode
=
p
.
GetNode
();
auto
magneticfield
=
currentLogicalVolumeNode
->
GetModelProperties
().
GetMagneticField
(
p
.
GetPosition
());
auto
k
=
chargeNumber
*
corsika
::
units
::
constants
::
cSquared
*
1
_eV
/
(
line
.
GetV0
().
norm
()
*
p
.
GetEnergy
()
*
1
_V
);
geometry
::
Vector
<
dimensionless_d
>
const
directionBefore
=
line
.
GetV0
().
normalized
();
geometry
::
Line
lineWithoutB
(
currentPosition
,
velocity
);
// determine direction of the particle after adding magnetic field
// assuming magnetic field does not change during movement
// First Movement
auto
position
=
currentPosition
+
velocity
*
min
/
2
;
// assuming magnetic field does not change during movement
auto
position
=
p
.
GetPosition
()
+
directionBefore
*
Steplength
/
2
;
// Change of direction by magnetic field
geometry
::
Vector
<
dimensionless_d
>
const
directionAfter
=
directionBefore
+
velocity
.
cross
(
magneticfield
)
*
min
*
k
;
geometry
::
Vector
<
dimensionless_d
>
const
directionAfter
=
directionBefore
+
directionBefore
.
cross
(
magneticfield
)
*
Steplength
*
k
;
// Second Movement
position
=
position
+
directionAfter
*
velocity
.
norm
()
*
min
/
2
;
if
((
position
-
currentPosition
).
GetNorm
()
!=
0
_m
)
{
geometry
::
Vector
<
dimensionless_d
>
const
direction
=
(
position
-
currentPosition
).
normalized
();
velocity
=
direction
*
velocity
.
norm
();
}
// no velocity update for very small steps
geometry
::
Line
lineWithB
(
currentPosition
,
velocity
);
return
std
::
make_tuple
(
geometry
::
Trajectory
<
geometry
::
Line
>
(
lineWithoutB
,
min
),
geometry
::
Trajectory
<
geometry
::
Line
>
(
lineWithB
,
min
),
velocity
.
norm
()
*
min
,
minIter
->
second
);
position
=
position
+
directionAfter
*
Steplength
/
2
;
auto
distance
=
position
-
p
.
GetPosition
();
if
(
distance
.
norm
()
==
0
_m
)
{
return
std
::
make_tuple
(
line
,
position
,
directionAfter
);
}
geometry
::
Line
newLine
(
p
.
GetPosition
(),
distance
.
normalized
()
*
line
.
GetV0
().
norm
());
return
std
::
make_tuple
(
newLine
,
position
,
directionAfter
);
}
};
...
...
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