G4NeutronHPElasticData.cc

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 // neutron_hp -- source file
00027 // J.P. Wellisch, Nov-1996
00028 // A prototype of the low energy neutron transport model.
00029 //
00030 // 070523 add neglecting doppler broadening on the fly. T. Koi
00031 // 070613 fix memory leaking by T. Koi
00032 // 071002 enable cross section dump by T. Koi
00033 // 080428 change checking point of "neglecting doppler broadening" flag 
00034 //        from GetCrossSection to BuildPhysicsTable by T. Koi
00035 // 081024 G4NucleiPropertiesTable:: to G4NucleiProperties::
00036 //
00037 #include "G4NeutronHPElasticData.hh"
00038 #include "G4PhysicalConstants.hh"
00039 #include "G4SystemOfUnits.hh"
00040 #include "G4Neutron.hh"
00041 #include "G4ElementTable.hh"
00042 #include "G4NeutronHPData.hh"
00043 
00044 G4NeutronHPElasticData::G4NeutronHPElasticData()
00045 :G4VCrossSectionDataSet("NeutronHPElasticXS")
00046 {
00047    SetMinKinEnergy( 0*MeV );                                   
00048    SetMaxKinEnergy( 20*MeV );                                   
00049 
00050    ke_cache = 0.0;
00051    xs_cache = 0.0;
00052    element_cache = NULL;
00053    material_cache = NULL;
00054 
00055    theCrossSections = 0;
00056    onFlightDB = true;
00057    BuildPhysicsTable( *G4Neutron::Neutron() );
00058 }
00059    
00060 G4NeutronHPElasticData::~G4NeutronHPElasticData()
00061 {
00062    if ( theCrossSections != 0 ) theCrossSections->clearAndDestroy();
00063    delete theCrossSections;
00064 }
00065    
00066 G4bool G4NeutronHPElasticData::IsIsoApplicable( const G4DynamicParticle* dp , 
00067                                                 G4int /*Z*/ , G4int /*A*/ ,
00068                                                 const G4Element* /*elm*/ ,
00069                                                 const G4Material* /*mat*/ )
00070 {
00071 
00072    G4double eKin = dp->GetKineticEnergy();
00073    if ( eKin > GetMaxKinEnergy() 
00074      || eKin < GetMinKinEnergy() 
00075      || dp->GetDefinition() != G4Neutron::Neutron() ) return false;                                   
00076 
00077    return true;
00078 }
00079 
00080 G4double G4NeutronHPElasticData::GetIsoCrossSection( const G4DynamicParticle* dp ,
00081                                    G4int /*Z*/ , G4int /*A*/ ,
00082                                    const G4Isotope* /*iso*/  ,
00083                                    const G4Element* element ,
00084                                    const G4Material* material )
00085 {
00086    if ( dp->GetKineticEnergy() == ke_cache && element == element_cache &&  material == material_cache ) return xs_cache;
00087 
00088    ke_cache = dp->GetKineticEnergy();
00089    element_cache = element;
00090    material_cache = material;
00091    G4double xs = GetCrossSection( dp , element , material->GetTemperature() );
00092    xs_cache = xs;
00093    return xs;
00094 }
00095 
00096 /*
00097 G4bool G4NeutronHPElasticData::IsApplicable(const G4DynamicParticle*aP, const G4Element*)
00098 {
00099   G4bool result = true;
00100   G4double eKin = aP->GetKineticEnergy();
00101   if(eKin>20*MeV||aP->GetDefinition()!=G4Neutron::Neutron()) result = false;
00102   return result;
00103 }
00104 */
00105 
00106 void G4NeutronHPElasticData::BuildPhysicsTable(const G4ParticleDefinition& aP)
00107 {
00108 
00109   if(&aP!=G4Neutron::Neutron()) 
00110      throw G4HadronicException(__FILE__, __LINE__, "Attempt to use NeutronHP data for particles other than neutrons!!!");  
00111 
00112 //080428
00113    if ( getenv( "G4NEUTRONHP_NEGLECT_DOPPLER" ) ) 
00114    {
00115       G4cout << "Find environment variable of \"G4NEUTRONHP_NEGLECT_DOPPLER\"." << G4endl;
00116       G4cout << "On the fly Doppler broadening will be neglect in the cross section calculation of elastic scattering of neutrons (<20MeV)." << G4endl;
00117       onFlightDB = false;
00118    }
00119 
00120   size_t numberOfElements = G4Element::GetNumberOfElements();
00121 // TKDB
00122    //if ( theCrossSections == 0 ) theCrossSections = new G4PhysicsTable( numberOfElements );
00123    if ( theCrossSections == NULL ) 
00124       theCrossSections = new G4PhysicsTable( numberOfElements );
00125    else
00126       theCrossSections->clearAndDestroy();
00127 
00128   // make a PhysicsVector for each element
00129 
00130   static const G4ElementTable *theElementTable = G4Element::GetElementTable();
00131   for( size_t i=0; i<numberOfElements; ++i )
00132   {
00133     G4PhysicsVector* physVec = G4NeutronHPData::
00134       Instance()->MakePhysicsVector((*theElementTable)[i], this);
00135     theCrossSections->push_back(physVec);
00136   }
00137 }
00138 
00139 void G4NeutronHPElasticData::DumpPhysicsTable(const G4ParticleDefinition& aP)
00140 {
00141   if(&aP!=G4Neutron::Neutron()) 
00142      throw G4HadronicException(__FILE__, __LINE__, "Attempt to use NeutronHP data for particles other than neutrons!!!");  
00143 
00144 //
00145 // Dump element based cross section
00146 // range 10e-5 eV to 20 MeV
00147 // 10 point per decade
00148 // in barn
00149 //
00150 
00151    G4cout << G4endl;
00152    G4cout << G4endl;
00153    G4cout << "Elastic Cross Section of Neutron HP"<< G4endl;
00154    G4cout << "(Pointwise cross-section at 0 Kelvin.)" << G4endl;
00155    G4cout << G4endl;
00156    G4cout << "Name of Element" << G4endl;
00157    G4cout << "Energy[eV]  XS[barn]" << G4endl;
00158    G4cout << G4endl;
00159 
00160    size_t numberOfElements = G4Element::GetNumberOfElements();
00161    static const G4ElementTable *theElementTable = G4Element::GetElementTable();
00162 
00163    for ( size_t i = 0 ; i < numberOfElements ; ++i )
00164    {
00165 
00166       G4cout << (*theElementTable)[i]->GetName() << G4endl;
00167 
00168       G4int ie = 0;
00169 
00170       for ( ie = 0 ; ie < 130 ; ie++ )
00171       {
00172          G4double eKinetic = 1.0e-5 * std::pow ( 10.0 , ie/10.0 ) *eV;
00173          G4bool outOfRange = false;
00174 
00175          if ( eKinetic < 20*MeV )
00176          {
00177             G4cout << eKinetic/eV << " " << (*((*theCrossSections)(i))).GetValue(eKinetic, outOfRange)/barn << G4endl;
00178          }
00179 
00180       }
00181 
00182       G4cout << G4endl;
00183    }
00184 
00185 
00186 //  G4cout << "G4NeutronHPElasticData::DumpPhysicsTable still to be implemented"<<G4endl;
00187 }
00188 
00189 #include "G4Nucleus.hh"
00190 #include "G4NucleiProperties.hh"
00191 #include "G4Neutron.hh"
00192 #include "G4Electron.hh"
00193 
00194 G4double G4NeutronHPElasticData::
00195 GetCrossSection(const G4DynamicParticle* aP, const G4Element*anE, G4double aT)
00196 {
00197   G4double result = 0;
00198   G4bool outOfRange;
00199   G4int index = anE->GetIndex();
00200 
00201   // prepare neutron
00202   G4double eKinetic = aP->GetKineticEnergy();
00203 
00204   // T. K. 
00205 //  if ( getenv( "G4NEUTRONHP_NEGLECT_DOPPLER" ) )
00206 //080428
00207   if ( !onFlightDB )
00208   {
00209      G4double factor = 1.0;
00210      if ( eKinetic < aT * k_Boltzmann ) 
00211      {
00212         // below 0.1 eV neutrons 
00213         // Have to do some, but now just igonre.   
00214         // Will take care after performance check.  
00215         // factor = factor * targetV;
00216      }
00217      return ( (*((*theCrossSections)(index))).GetValue(eKinetic, outOfRange) )* factor; 
00218   }
00219 
00220   G4ReactionProduct theNeutron( aP->GetDefinition() );
00221   theNeutron.SetMomentum( aP->GetMomentum() );
00222   theNeutron.SetKineticEnergy( eKinetic );
00223 
00224   // prepare thermal nucleus
00225   G4Nucleus aNuc;
00226   G4double eps = 0.0001;
00227   G4double theA = anE->GetN();
00228   G4double theZ = anE->GetZ();
00229   G4double eleMass; 
00230 
00231 
00232   eleMass = ( G4NucleiProperties::GetNuclearMass( static_cast<G4int>(theA+eps) , static_cast<G4int>(theZ+eps) )
00233              ) / G4Neutron::Neutron()->GetPDGMass();
00234   
00235   G4ReactionProduct boosted;
00236   G4double aXsection;
00237   
00238   // MC integration loop
00239   G4int counter = 0;
00240   G4double buffer = 0;
00241   G4int size = G4int(std::max(10., aT/60*kelvin));
00242   G4ThreeVector neutronVelocity = 1./G4Neutron::Neutron()->GetPDGMass()*theNeutron.GetMomentum();
00243   G4double neutronVMag = neutronVelocity.mag();
00244 
00245   while(counter == 0 || std::abs(buffer-result/std::max(1,counter)) > 0.03*buffer)
00246   {
00247     if(counter) buffer = result/counter;
00248     while (counter<size)
00249     {
00250       counter ++;
00251       G4ReactionProduct aThermalNuc = aNuc.GetThermalNucleus(eleMass, aT);
00252       boosted.Lorentz(theNeutron, aThermalNuc);
00253       G4double theEkin = boosted.GetKineticEnergy();
00254       aXsection = (*((*theCrossSections)(index))).GetValue(theEkin, outOfRange);
00255       // velocity correction.
00256       G4ThreeVector targetVelocity = 1./aThermalNuc.GetMass()*aThermalNuc.GetMomentum();
00257       aXsection *= (targetVelocity-neutronVelocity).mag()/neutronVMag;
00258       result += aXsection;
00259     }
00260     size += size;
00261   }
00262   result /= counter;
00263 /*
00264   // Checking impact of  G4NEUTRONHP_NEGLECT_DOPPLER
00265   G4cout << " result " << result << " " 
00266          << (*((*theCrossSections)(index))).GetValue(eKinetic, outOfRange) << " " 
00267          << (*((*theCrossSections)(index))).GetValue(eKinetic, outOfRange) /result << G4endl;
00268 */
00269   return result;
00270 }

Generated on Mon May 27 17:49:00 2013 for Geant4 by  doxygen 1.4.7