Geant4 v9.4 Material Makoto Asai (SLAC) Geant4 Tutorial Course.

Slides:



Advertisements
Similar presentations
4.3: HOW ATOMS DIFFER ATOMIC NUMBER
Advertisements

Chapter 3 Stoichiometric
Average Atomic Mass & % Abundance
Defining Material Tatsumi Koi (SLAC/SCCS) (based on Makoto Asai's slides) Geant4 Tutorial Course Geant4 v8.2p01.
OF PROTONS, NEUTRONS AND ELECTRONS IN AN ATOM
Detector Description - Materials
Detector Description: Materials
Defining Materials Geant4 tutorial Paris, 4-8 June 2007 Giovanni Santin ESA / ESTEC Rhea System SA With material from previous tutorials by Makoto Asai.
Subatomic Particles  Protons and electrons are the only particles that have a charge.  Protons and neutrons have essentially the same mass.  The mass.
Isotopes Atoms of the same element that different mass numbers
4.2.
Mole Relationships. By definition: 1 atom 12 C “weighs” 12 amu Atomic mass is the mass of an atom in atomic mass units (amu) The mole (mol) is the amount.
Materials 1 Images: Isotopic composition Molecular composition Density Pressure State Temperature.
Atomic Weight What does it mean?. The Mass of an Atom The mass of an atom is measured in atomic mass units (amu) aka Dalton. The atomic mass of an atom.
Materials In nature, general materials (compounds, mixtures) are made by elements and elements are made by isotopes. These are the three main classes.
Work_Geant4 Bo-Wen Shiou. #include "G4RunManager.hh“ #include "G4RunManager.hh“ #include "G4UImanager.hh" #include "G4UImanager.hh" #include "ExN01DetectorConstruction.hh“
Special Topics in Nuclear Physics, JU, Second Semester, (Saed Dababneh). 1 Course web or
CHAPTER 10 THE MOLE. The mole is a number (6.02 x ) It is a term like the term “dozen” It was chosen by chemists to make working with atomic weights.
How atoms differ. Mass Number The sum of the protons and neutrons BUT…Why is it not an even number??
Atomic Mass/Percent Composition. Average of Isotopes Every element typically exists in several isotope forms Isotopes are atoms of the same element with.
Krakow Feb.06 Institute of Physics, Prague Petr Mikes / Lukas Masek.
Monte Carlo /12/07. What is Geant ? Monte Carlo simulation tool for nuclear and particle physics Set up detectors –Sensitive detector which returns.
Detector Description – Part I Ivana Hrivnacova, IPN Orsay Tatiana Nikitina, CERN Aknowledgement: Slides by: J.Apostolakis, G.Cosmo, A. Lechner
Composition of constituents The composition of constituent of a mixture is not fix. Air is made up of a mixture of gases. There is ___ % nitrogen gas,
Unit 2 Unit 2 Percent Error We know that measurements can be described in terms of precision (how close a group of measurements are to each other) and.
Atomic Mass. Masses in amu Only carbon-12 has an atomic mass exactly equal to its mass # One atomic mass unit (amu) is defined as 1/12 the mass of a carbon-12.
Do Now: If a student’s grade is weighted per the table below, what would their grade be? WeightAverage Tests50%80 Classwork30%95 Homework20%85.
Material Definition University of Pennsylvania Geant4 Tutorial 15 May 2011 Dennis Wright Geant4 V9.4.
Mass Relationships in Chemical Reactions Chapter 3 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Section 2: Formula Mass Chapter 7: Chemical Composition.
Determining Average Atomic Mass
On this scale, 1 H = amu, 16 O = amu the mass of an atom in atomic mass units (amu). Atomic mass unit is defined as the mass exactly equal.
AP Chapter 1 Matter and Measurement. Chemistry Chemistry is the study of the properties and behavior of matter. Matter is the physical material of the.
Chemical Composition … Moles Chemistry Mr. Lentz.
Detector Description - Materials
GENERAL CHEMISTRY CHE 101 Lecture 3: Mass Relationship in Chemical Reactions Course Instructor: HbR.
The Mole Continued.  The mole is also defined as the number of protons in g of protons.
CHEM 167 SI TermsSig FigsUnit ConIsotopes
Essential Question: How do atoms of the same element differ?
Detector Description – Part I Ivana Hrivnacova, IPN Orsay Tatiana Nikitina, CERN Aknowledgement: Slides by: J.Apostolakis, G.Cosmo, A. Lechner
Matter and Measurement
Aim: How to Calculate the Average Atomic Mass?
Calculating Atomic Mass
Calculating Average Atomic Mass
Stoichiometry Copyright © The McGraw-Hill Companies, Inc.  Permission required for reproduction or display.
Average Atomic Mass.
CELEBRITY CHEMIST of THE DAY
Do Now: Blue liquid or sand and dirt mix..
Mass Relationships in Chemical Reactions
Isotopes - isotope: atoms of the same element that have different numbers of neutrons - Carbon, as found in nature, is a mixture of isotopes, including.
Average Atomic Mass.
FORMULA NUMBER OF MOLES GIVEN WEIGHT MOLAR MASS = GW MM n =
TYPES OF FORMULA.
Isotopes Atoms with SAME number of PROTONS (atomic number) but DIFFERENT numbers of neutrons (i.e. mass number) 6 protons 6 neutrons 6 protons 7 neutrons.
Average Atomic Mass.
Objectives To understand the definition of molar mass
Detector Description - Materials
How We Know What We Can’t See Looks Like Day 4 Average Atomic Mass
Mass to volume ratio 270g/100 ml = 2.7 g/ml It will sink!
Percentage Composition
Classification and Separation
Average Atomic Mass.
How We Know What We Can’t See Looks Like Day 4 Average Atomic Mass
Moles and Molar Masses.
Average Atomic Mass.
ARE ALL ATOMS OF THE SAME ELEMENT IDENTICAL?
Percentage Composition
Element, Molecule, Compound and Mixtures
Chemistry Chapter 3 Section 3
Matter Vocabulary.
Presentation transcript:

Geant4 v9.4 Material Makoto Asai (SLAC) Geant4 Tutorial Course

Material - M.Asai (SLAC)2 Contents Material definition NIST material database

Geant4 v9.4 Definition of material

Material - M.Asai (SLAC)4 Definition of Materials Different kinds of materials can be described: –isotopes G4Isotope –elements G4Element –molecules, compounds and mixtures G4Material Attributes associated to G4Material: –temperature, pressure, state, density Prefer low-density material to vacuum For hadronic processes, you have to have at least correct set of elements. You should not use "averaged material". Single element material G4double density = 1.390*g/cm3; G4double a = 39.95*g/mole; G4Material* lAr = new G4Material("liquidArgon",z=18.,a,density);

Material - M.Asai (SLAC)5 Material: molecule A Molecule is made of several elements (composition by number of atoms) a = 1.01*g/mole; G4Element* elH = new G4Element("Hydrogen",symbol="H",z=1.,a); a = 16.00*g/mole; G4Element* elO = new G4Element("Oxygen",symbol="O",z=8.,a); density = 1.000*g/cm3; G4Material* H2O = new G4Material("Water",density,ncomp=2); G4int natoms; H2O->AddElement(elH, natoms=2); H2O->AddElement(elO, natoms=1);

Material - M.Asai (SLAC)6 Material: compound Compound: composition by fraction of mass a = 14.01*g/mole; G4Element* elN = new G4Element(name="Nitrogen",symbol="N",z= 7.,a); a = 16.00*g/mole; G4Element* elO = new G4Element(name="Oxygen",symbol="O",z= 8.,a); density = 1.290*mg/cm3; G4Material* Air = new G4Material(name="Air",density,ncomponents=2); G4double fracMass; Air->AddElement(elN, fracMass=70.0*perCent); Air->AddElement(elO, fracMass=30.0*perCent); Sum of fractions must be 100%

Material - M.Asai (SLAC)7 Material: mixture Composition of compound materials G4Element* elC = …; // define “carbon” element G4Material* SiO2 = …; // define “quartz” material G4Material* H2O = …; // define “water” material density = 0.200*g/cm3; G4Material* Aerog = new G4Material("Aerogel",density,ncomponents=3); Aerog->AddMaterial(SiO2,fractionmass=62.5*perCent); Aerog->AddMaterial(H2O,fractionmass=37.4*perCent); Aerog->AddElement (elC,fractionmass= 0.1*perCent);

Material - M.Asai (SLAC)8 Element with user defined abundance An element can be created according to user defined abundances Ex. Create an enriched Uranium for nuclear power generation G4Isotope* isoU235 = new G4Isotope(“U235", iz=92, ia=235, a= *g/mole); G4Isotope* isoU238 = new G4Isotope(“U238", iz=92, ia=238, a= *g/mole); G4Element* elenrichedU = new G4Element(“enriched U", symbol=“U", ncomponents=2); elenrichedU->AddIsotope(isoU235, abundance=80.*perCent); elenrichedU->AddIsotope(isoU238, abundance=20.*perCent); G4Material* matenrichedU= new G4Material(“U for nuclear power generation", density= *g/cm3, ncomponents = 1, kStateSolid ); matenrichedU>AddElement( elenrichedU, fractionmass = 1.0 );

Geant4 v9.4 NIST Material Database in Geant4

Material - M.Asai (SLAC)10 NIST material database NIST database for materials is imported to Geant4 ( UI commands for material category Guarantee the best accuracy for major parameters: Density Mean excitation potential Chemical bounds Element composition Isotope composition

Material - M.Asai (SLAC)11 NIST Elements and Isotopes Z A m error (%) A eff ========================= 14 Si (22) (3) (21) (21) (11) (3) (17) (20) (7) (3) (5) (5) (5) (7) (23) (17) (15) (40) (11) (13) (29) (43) (54) (64) (75) Natural isotope compositions More than 3000 isotopes are defined

Material - M.Asai (SLAC)12 NIST materials in Geant4 ==================================== ### Elementary Materials from the NIST Data Base ==================================== Z Name ChFormula density(g/cm^3) I(eV) ==================================== 1 G4_H H_ e G4_He G4_Li G4_Be G4_B G4_C G4_N N_ G4_O O_ G4_F G4_Ne G4_Na G4_Mg G4_Al G4_Si NIST Elementary Materials –H to Cf NIST Compounds HEP and Nuclear Materials –Ex. liquid Ar, PbWO 4 =================================== ### Compound Materials from the NIST Data Base =================================== N Name ChFormula density(g/cm^3) I(eV) =================================== 13 G4_Adipose_Tissue e e e e-05 4 G4_Air G4_CsI

Material - M.Asai (SLAC)13 How to use Do not need to define elements and materials by yourself. G4NistManager* manager = G4NistManager::GetPointer(); G4Element* elm = manager->FindOrBuildElement(“symb”, G4bool iso); G4Element* elm = manager->FindOrBuildElement(G4int Z, G4bool iso); G4Material* mat = manager->FindOrBuildMaterial(“name”, G4bool iso); G4Material* mat = manager->ConstructNewMaterial(“name”, const std::vector & Z, const std::vector & weight, G4double density, G4bool iso); G4double isotopeMass = manager->GetMass(G4int Z, G4int N); UI commands /material/nist/printElement --- print defined elements /material/nist/listMaterials --- print defined materials