Materials In nature, general materials (compounds, mixtures) are made by elements and elements are made by isotopes. These are the three main classes.

Slides:



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

Molar & atomic Mass Mole  > particles Mass  > Mole Molar Volume of Gas Gas Density
Defining Material Tatsumi Koi (SLAC/SCCS) (based on Makoto Asai's slides) Geant4 Tutorial Course Geant4 v8.2p01.
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.
The Mole: A measurement of Matter
Engineering Chemistry 14/15 Fall semester Instructor: Rama Oktavian Office Hr.: M.13-15, Tu , W , Th ,
Chemical Quantities Math in Chemistry. Measuring Matter measure the amount of something by one of three different methods— by count, by mass, and by volume.
The Atmosphere Chapter 17.1
Matter Vocabulary. __________________ anything that has mass takes up space matter.
Unit 2: Properties of Matter. The Goals… Define Matter Define Matter Calculate and understand density Calculate and understand density Describe viscosity.
Chapter 3 Atoms: the Building Blocks of Matter. The parts that make up an atom are called subatomic particles. The parts that make up an atom are called.
Elements, Compounds, Mixtures
Homework Check (The Ideal Gas Law) 1.If I contain 3 moles of gas in a container with a volume of 60 L at a temperature of 400 K, what is the pressure inside.
Materials 1 Images: Isotopic composition Molecular composition Density Pressure State Temperature.
Geometry Detector geometry A detector geometry in Geant4 is made of a number of volumes. The largest volume is called the World volume. It must contain.
Matter – Anything that has mass and occupies space. Chemistry is the study of the properties of matter and how matter changes Properties of matter: ways.
Chapter 1-3: Classifying Matter. Matter Anything that has volume and mass All matter is composed of atoms –An atom is the smallest unit of an element.
Molar Volume Avogadro’s Law: Equal volumes of gas at the same temperature and pressure contain equal numbers of particles. But the mass is different!!!
Monte Carlo /12/07. What is Geant ? Monte Carlo simulation tool for nuclear and particle physics Set up detectors –Sensitive detector which returns.
Material Definition University of Pennsylvania Geant4 Tutorial 15 May 2011 Dennis Wright Geant4 V9.4.
What do we call these things? 6 Atoms which happen to be of 3 different elements.
Elements, Compounds, Mixtures This picture show the atoms that are present in the air. 1.Which ones are elements? 2.How can you tell?
7.2 More Mole Conversions!!!. - Molecular Oxygen = O 2 - Atomic Oxygen = O from the periodic table 7 elements that exist as diatomic molecules (MEMORIZE)
MassMass Is a measure of the amount of matter. Mass is the measurement you make using a balance.
Unit 5 Review The Mole. 1. What is the mass of 1 mole of iron atoms? A amu B L C x D g.
What Do We Need to Know? Matter. When atoms of more than one element chemically combine they form a compound. Substances made of only one type of atom.
Unit 6 Review The Mole.
Detector Description - Materials
Avogadro's Principle “Equal volumes of gases at the same temperature and pressure contain equal numbers of particles” It doesn’t matter what type of gas.
Matter, Elements, Compound, Mixture, Molecule Notes.
Chapter 10 The Mole. Chapter 10 The Mole Dimensional Analysis Write the equivalence statement needed. 2. Find the appropriate conversion factor. 3.
Warm-Up Which best represents the electron configuration for an atom of Mg+2? A)1s22s22p63s2 B) 1s21p62s22p63s2 C) 1s22s22p6 D) 1s22s22p63s23p64s24d6.
Classification and Properties of Matter
Chapter 2 - Matter Section 1 – Classifying Matter
Elements, Compounds, Mixtures
Daily Warm Up 09/08/2015 – 09/09/2015 What do chemists study?
Molar Mass and Molar Volume
3. Show the method of balancing an equation for Mg + O -> MgO
The Science of Matter.
Defining the Mole & Mole Practice Problems
Chapter 10 Review “Chemical Quantities”
Classification of Matter
Classification of Matter
Chapter 10 Chemical Quantities
CELEBRITY CHEMIST of THE DAY
Chapter 10 Review “Chemical Quantities”
Matter and Change Unit Review
Mole-Mass and Mole-Volume Relationships
MATTER What is Matter?.
Mixtures of gases Lesson 7.
3. Show the method of balancing an equation for Mg + O2 -> MgO
Chapter 10 Chemical Quantities
Chapter 10 Chemical Quantities
Moles and Gas Volume (3.4) Avogadro’s Hypothesis: equal volumes of different gases at the same temperature and pressure contain the same number of particles.
Lesson 64: STP The Mole and Avogadro’s Law.
Essential Question: How are elements, compounds, and mixtures related?
Detector Description - Materials
Classifying Matter Vocab Activity
Elements, Compounds, Mixtures
Matter and Measurement
Chemicals of the Natural Environment.
C2H6 CH3 B. Empirical Formula
Welcome to GENERAL Chemistry! CHM 108, Dr. Davis Index Cards
ATOMS.
Elements, Compounds, Mixtures
Element, Molecule, Compound and Mixtures
Matter Vocabulary.
Presentation transcript:

Materials

In nature, general materials (compounds, mixtures) are made by elements and elements are made by isotopes. These are the three main classes designed in Geant4 The G4Element class describes the properties of the atoms: atomic number, number of nucleons, atomic mass, shell energy… The G4Isotope class permits to describe the isotopic composition of a material The G4Material class describes the macroscopic properties of the matter: density, state, temperature, pressure, radiation length, mean free path, dE/dx… G4Material is the class visible to the rest of the toolkit and it is used by the tracking, the geometry and physics

Define a simple material A simple material can be created by specifying its name, density, mass of a mole and atomic number: The pointer to the material will then be used to specify the material a given logical volume is made of #include “G4Material.hh” … G4double density=1.390*g/cm3; G4double a=39.95*g/mole; G4double z=18.; G4String name; … G4Material* LAr = new G4Material(name=“Liquid Argon”, z, a, density);

Define a molecule A molecule is built from its components, by specifying the number of atoms in the molecule. #include “G4Element.hh” #include “G4Material.hh”... G4double a=1.01*g/mole; G4double z; G4String name,symbol; G4Element* H = new G4Element(name=“Hydrogen”, symbol=“H”,z=1.,a); a=16.0*g/mole; G4Element* O = new G4Element(name=“Oxygen”, symbol=“O”,z=8.,a); G4double density=1.000*g/cm3; G4int ncomponent,natoms; G4Material* H2O = new G4Material(name=“Water”,density,ncomponents=2); H2O->AddElement(H,natoms=2); H2O->AddElement(O,natoms=1);

Define a mixture (by fractional mass) Air is built from Nitrogen and Oxygen by giving the fractional mass of each component #include “G4Element.hh” #include “G4Material.hh”... G4double a=14.01*g/mole; G4double z; G4String name,symbol; G4Element* N = new G4Element(name=“Nitrogen”, symbol=“N”,z=7.,a); a=16.0*g/mole; G4Element* O = new G4Element(name=“Oxygen”, symbol=“O”,z=8.,a); G4double fractionmass,density=1.290*mg/cm3; G4int ncomponent,natoms; G4Material* Air = new G4Material(name=“Air”,density,ncomponents=2); Air->AddElement(N,fractionmass=70*percent); Air->AddElement(O,fractionmass=30*percent);

Materials as mixtures of materials ArCO2 can be defined as mixture of an element and a material: #include “G4Element.hh” #include “G4Material.hh”... G4double a,z,fractionmass,density; G4String name,symbol; G4int ncomponents,natoms; G4Element* Ar = new G4Element(name=“Argon”, symbol=“Ar”,z=18.,a=39.95*g/mole); G4Element* C = new G4Element(name=“Carbon”, symbol=“C”, z=6., a=12.00*g/mole); G4Element* O = new G4Element(name=“Oxygen”, symbol=“O”,z=8.,a=16.00*g/mole); G4Material* CO2 = new G4Material(name=“CO2”,density=1.977*mg/cm3,ncomponents=2); CO2->AddElement(C,natoms=1); CO2->AddElement(O,natoms=2); G4Material* ArCO2=new G4Material(name=“ArCO2”,density=1.8*mg/cm3,ncomponents=2); ArCO2-> AddElement(Ar,fractionmass=93*percent); ArCO2-> AddMaterial(CO2,fractionmass=7*percent);

Materials in non STP conditions #include “G4Element.hh” #include “G4Material.hh”... G4double a,z,fractionmass,density; G4String name,symbol, ncomponent,natoms; G4Element* Ar = new G4Element(name=“Argon”, symbol=“Ar”,z=18.,a=39.95*g/mole); G4Element* C = new G4Element(name=“Carbon”, symbol=“C”, z=6., a=12.00*g/mole); G4Element* O = new G4Element(name=“Oxygen”, symbol=“O”,z=8.,a=16.00*g/mole); G4double temperature=300.*kelvin; G4double pressure=2*atmosphere; G4Material* CO2 = new G4Material(name=“CO2”,density=1.977*mg/cm3,ncomponents=2 kStateGas,temperature,pressure); CO2->AddElement(C,natoms=1); CO2->AddElement(O,natoms=2); G4Material* ArCO2=new G4Material(name=“ArCO2”,density=1.8*mg/cm3,ncomponents=2 kStateGas,temperature,pressure); ArCO2-> AddElement(Ar,fractionmass=93*percent); ArCO2-> AddMaterial(CO2,fractionmass=7*percent);

Printing materials and elements Materials and elements (and the tables maintained internally by Geant4) can be printed very easily with: #include “G4Element.hh” #include “G4Material.hh”... cout<<ArCO2; cout<<*(G4Element::GetElementTable()); cout<<*(G4Material::GetMaterialTable());