Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
tpia_kinetics.cc
Go to the documentation of this file.
1/*
2# <<BEGIN-copyright>>
3# Copyright (c) 2010, Lawrence Livermore National Security, LLC.
4# Produced at the Lawrence Livermore National Laboratory
5# Written by Bret R. Beck, [email protected].
6# CODE-461393
7# All rights reserved.
8#
9# This file is part of GIDI. For details, see nuclear.llnl.gov.
10# Please also read the "Additional BSD Notice" at nuclear.llnl.gov.
11#
12# Redistribution and use in source and binary forms, with or without modification,
13# are permitted provided that the following conditions are met:
14#
15# 1) Redistributions of source code must retain the above copyright notice,
16# this list of conditions and the disclaimer below.
17# 2) Redistributions in binary form must reproduce the above copyright notice,
18# this list of conditions and the disclaimer (as noted below) in the
19# documentation and/or other materials provided with the distribution.
20# 3) Neither the name of the LLNS/LLNL nor the names of its contributors may be
21# used to endorse or promote products derived from this software without
22# specific prior written permission.
23#
24# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
25# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
27# SHALL LAWRENCE LIVERMORE NATIONAL SECURITY, LLC, THE U.S. DEPARTMENT OF ENERGY OR
28# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
31# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
33# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34# <<END-copyright>>
35*/
36#include <string.h>
37#include <cmath>
38#include <tpia_target.h>
39
40#if defined __cplusplus
41namespace GIDI {
42using namespace GIDI;
43#endif
44
45/*
46************************************************************
47*/
48int tpia_kinetics_2BodyReaction( statusMessageReporting *smr, tpia_decayChannel *decayChannel, double K, double mu, double phi,
49 tpia_productOutgoingData *outgoingData ) {
50
51 tpia_product *pp3 = tpia_decayChannel_getFirstProduct( decayChannel ), *pp4;
52 double m1 = decayChannel->m1_fullMass_MeV, m2 = decayChannel->m2_fullMass_MeV, m3, m4, mi, mf, Kp, x, beta;
53
55 m3 = pp3->productID->fullMass_MeV;
56 m4 = pp4->productID->fullMass_MeV;
57 mi = m1 + m2;
58 mf = m3 + m4;
59 beta = std::sqrt( K * ( K + 2. * m1 ) ) / ( K + mi );
60 x = K * m2 / ( mi * mi );
61 if( x < 2e-5 ) { /* Kp is the total kinetic energy for m3 and m4 in the COM frame. */
62 Kp = mi - mf + K * m2 / mi * ( 1 - 0.5 * x * ( 1 - x ) ); }
63 else {
64 Kp = std::sqrt( mi * mi + 2 * K * m2 ) - mf;
65 }
66 if( Kp < 0 ) Kp = 0.; /* ???? There needs to be a better test here. */
67 outgoingData[0].decayChannel = &(pp3->decayChannel);
68 outgoingData[1].genre = outgoingData[0].genre;
69 outgoingData[1].productID = pp4->productID;
70 outgoingData[1].decayChannel = &(pp4->decayChannel);
71 return( tpia_kinetics_COMKineticEnergy2LabEnergyAndMomentum( smr, beta, Kp, mu, phi, m3, m4, outgoingData ) );
72}
73/*
74************************************************************
75*/
76//int tpia_kinetics_COMKineticEnergy2LabEnergyAndMomentum( statusMessageReporting *smr, double beta, double e_kinetic_com, double mu, double phi,
77int tpia_kinetics_COMKineticEnergy2LabEnergyAndMomentum( statusMessageReporting *, double beta, double e_kinetic_com, double mu, double phi,
78 double m3cc, double m4cc, tpia_productOutgoingData *outgoingData ) {
79/*
80* beta the velocity/speedOflight of the com frame relative to the lab frame.
81* e_kinetic_com Total kinetic energy (K1 + K2) in the COM frame.
82* mu std::cos( theta ) in the COM frame.
83*/
84 double x, v_p, p, pp3, pp4, px3, py3, pz3, pz4, pz, p_perp2, E3, E4, gamma, m3cc2 = m3cc * m3cc, m4cc2 = m4cc * m4cc;
85
86 p = std::sqrt( e_kinetic_com * ( e_kinetic_com + 2. * m3cc ) * ( e_kinetic_com + 2. * m4cc ) * ( e_kinetic_com + 2. * ( m3cc + m4cc ) ) ) /
87 ( 2. * ( e_kinetic_com + m3cc + m4cc ) );
88 py3 = p * std::sqrt( 1 - mu * mu );
89 px3 = py3 * std::cos( phi );
90 py3 *= std::sin( phi );
91 pz = p * mu;
92 if( tpia_frame_getColumn( NULL, &(outgoingData[0].frame), 0 ) == tpia_referenceFrame_lab ) {
93 E3 = std::sqrt( p * p + m3cc2 );
94 E4 = std::sqrt( p * p + m4cc2 );
95 gamma = std::sqrt( 1. / ( 1. - beta * beta ) );
96 pz3 = gamma * ( pz + beta * E3 );
97 pz4 = gamma * ( -pz + beta * E4 ); }
98 else {
99 pz3 = pz;
100 pz4 = -pz;
101 }
102 outgoingData[1].isVelocity = outgoingData[0].isVelocity;
103 outgoingData[1].frame = outgoingData[0].frame;
104
105 p_perp2 = px3 * px3 + py3 * py3;
106
107 outgoingData[0].px_vx = px3;
108 outgoingData[0].py_vy = py3;
109 outgoingData[0].pz_vz = pz3;
110 pp3 = p_perp2 + pz3 * pz3;
111 x = pp3 / ( 2 * m3cc2 );
112 if( x < 1e-5 ) {
113 outgoingData[0].kineticEnergy = m3cc * x * ( 1 - 0.5 * x * ( 1 - x ) ); }
114 else {
115 outgoingData[0].kineticEnergy = std::sqrt( m3cc2 + pp3 ) - m3cc;
116 }
117 outgoingData[1].px_vx = -px3;
118 outgoingData[1].py_vy = -py3;
119 outgoingData[1].pz_vz = pz4;
120 pp4 = p_perp2 + pz4 * pz4;
121 x = pp4 / ( 2 * m4cc2 );
122 if( x < 1e-5 ) {
123 outgoingData[1].kineticEnergy = m4cc * x * ( 1 - 0.5 * x * ( 1 - x ) ); }
124 else {
125 outgoingData[1].kineticEnergy = std::sqrt( m4cc2 + pp4 ) - m4cc;
126 }
127
128 if( outgoingData[0].isVelocity ) {
129 v_p = tpia_speedOfLight_cm_sec / std::sqrt( pp3 + m3cc2 );
130 outgoingData[0].px_vx *= v_p;
131 outgoingData[0].py_vy *= v_p;
132 outgoingData[0].pz_vz *= v_p;
133
134 v_p = tpia_speedOfLight_cm_sec / std::sqrt( pp4 + m4cc2 );
135 outgoingData[1].px_vx *= v_p;
136 outgoingData[1].py_vy *= v_p;
137 outgoingData[1].pz_vz *= v_p;
138 }
139
140 return( 0 );
141}
142
143#if defined __cplusplus
144}
145#endif
double fullMass_MeV
Definition: tpia_target.h:130
tpia_particle * productID
Definition: tpia_target.h:165
tpia_decayChannel * decayChannel
Definition: tpia_target.h:170
tpia_decayChannel decayChannel
Definition: tpia_target.h:247
tpia_particle * productID
Definition: tpia_target.h:236
#define tpia_referenceFrame_lab
Definition: tpia_target.h:85
int tpia_kinetics_2BodyReaction(statusMessageReporting *smr, tpia_decayChannel *decayChannel, double K, double mu, double phi, tpia_productOutgoingData *outgoingData)
tpia_product * tpia_decayChannel_getFirstProduct(tpia_decayChannel *decayChannel)
int tpia_frame_getColumn(statusMessageReporting *smr, tpia_data_frame *frame, int column)
Definition: tpia_frame.cc:213
int tpia_kinetics_COMKineticEnergy2LabEnergyAndMomentum(statusMessageReporting *smr, double beta, double e_kinetic_com, double mu, double phi, double m3cc, double m4cc, tpia_productOutgoingData *outgoingData)
#define tpia_speedOfLight_cm_sec
Definition: tpia_target.h:100
tpia_product * tpia_decayChannel_getNextProduct(tpia_product *product)