Skip to content

Commit

Permalink
moved some files
Browse files Browse the repository at this point in the history
  • Loading branch information
giozu committed Aug 26, 2024
1 parent f4f37a4 commit 9561867
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 40 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
// //
//////////////////////////////////////////////////////////////////////////////////////

#ifndef CONSTANT_NUMBERS_H
#define CONSTANT_NUMBERS_H
#ifndef CONSTANTS_H
#define CONSTANTS_H

/**
* @file Constants.h
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
74 changes: 36 additions & 38 deletions src/operations/SetGas.C
Original file line number Diff line number Diff line change
Expand Up @@ -26,52 +26,50 @@ void Simulation::setGas()

void xenon(SciantixArray<Gas> &gas)
{
Gas xe;
xe.setName("Xe");
xe.setAtomicNumber(54);
xe.setMassNumber(135);
xe.setVanDerWaalsVolume(8.48e-29);
xe.setDecayRate(0.0);
xe.setPrecursorFactor(1.00);
gas.push(xe);
Gas gas_;
gas_.setName("Xe");
gas_.setAtomicNumber(54);
gas_.setMassNumber(135);
gas_.setVanDerWaalsVolume(8.48e-29);
gas_.setDecayRate(0.0);
gas_.setPrecursorFactor(1.00);
gas.push(gas_);

Gas xe133;
xe133.setName("Xe133");
xe133.setAtomicNumber(54);
xe133.setMassNumber(133);
xe133.setVanDerWaalsVolume(8.48e-29);
xe133.setDecayRate(1.53e-6);
xe133.setPrecursorFactor(1.25);
gas.push(xe133);
gas_.setName("Xe133");
gas_.setAtomicNumber(54);
gas_.setMassNumber(133);
gas_.setVanDerWaalsVolume(8.48e-29);
gas_.setDecayRate(1.53e-6);
gas_.setPrecursorFactor(1.25);
gas.push(gas_);
}

void krypton(SciantixArray<Gas> &gas)
{
Gas kr;
kr.setName("Kr");
kr.setAtomicNumber(36);
kr.setVanDerWaalsVolume(6.61e-29);
kr.setDecayRate(0.0);
kr.setPrecursorFactor(1.00);
gas.push(kr);
Gas gas_;
gas_.setName("Kr");
gas_.setAtomicNumber(36);
gas_.setVanDerWaalsVolume(6.61e-29);
gas_.setDecayRate(0.0);
gas_.setPrecursorFactor(1.00);
gas.push(gas_);

Gas kr85m;
kr85m.setName("Kr85m");
kr85m.setAtomicNumber(36);
kr85m.setMassNumber(85);
kr85m.setVanDerWaalsVolume(6.61e-29);
kr85m.setDecayRate(4.3e-5);
kr85m.setPrecursorFactor(1.31);
gas.push(kr85m);
gas_.setName("Kr85m");
gas_.setAtomicNumber(36);
gas_.setMassNumber(85);
gas_.setVanDerWaalsVolume(6.61e-29);
gas_.setDecayRate(4.3e-5);
gas_.setPrecursorFactor(1.31);
gas.push(gas_);
}

void helium(SciantixArray<Gas> &gas)
{
Gas he;
he.setName("He");
he.setAtomicNumber(2);
he.setVanDerWaalsVolume(9.97e-30);
he.setDecayRate(0.0);
he.setPrecursorFactor(1.00);
gas.push(he);
Gas gas_;
gas_.setName("He");
gas_.setAtomicNumber(2);
gas_.setVanDerWaalsVolume(9.97e-30);
gas_.setDecayRate(0.0);
gas_.setPrecursorFactor(1.00);
gas.push(gas_);
}

0 comments on commit 9561867

Please sign in to comment.