Detector Description - Materials

Slides:



Advertisements
Similar presentations
Structure -MATTER.
Advertisements

The Organization of Matter
Topic A: Atoms and the Elements
Geant4 v9.4 Material Makoto Asai (SLAC) Geant4 Tutorial Course.
Defining Material Tatsumi Koi (SLAC/SCCS) (based on Makoto Asai's slides) Geant4 Tutorial Course Geant4 v8.2p01.
Detector Description - Materials
Detector Description: Materials
The term matter describes all of the physical substances around us: your table, your body, a pencil, water, and so forth.
Defining Materials Geant4 tutorial Paris, 4-8 June 2007 Giovanni Santin ESA / ESTEC Rhea System SA With material from previous tutorials by Makoto Asai.
* Reading Assignments:
The Mole: A measurement of Matter
Chapter 1 Introduction: Matter & Measurement
 Solid: maintains a fixed volume and shape  Liquid: maintains a fixed volume but takes the shape of the container  Gas: occupies the entire volume.
EVERYTHING!!!! Anything that takes up space and has mass.
Matter Vocabulary. __________________ anything that has mass takes up space matter.
1. To learn about the composition of matter 2. To learn the difference between elements and compounds 3. To define the three states of matter.
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.
Stoichiometry (part II)
Materials In nature, general materials (compounds, mixtures) are made by elements and elements are made by isotopes. These are the three main classes.
Chemistry in Everything Find the chemistry!. What does matter look like?
Chemistry is a material science! Define Chemistry.
Phase equilibrium Plan 1.Phase equilibrium. Gibb’s phase rule. 2.Diagram of the state for a one component system 2.Diagram of the state for a one component.
Work_Geant4 Bo-Wen Shiou. #include "G4RunManager.hh“ #include "G4RunManager.hh“ #include "G4UImanager.hh" #include "G4UImanager.hh" #include "ExN01DetectorConstruction.hh“
Chapter 4 – Matter ● Chemistry – The study of Matter ● Matter – any substance that has mass and occupies volume ● States of Matter ● Solid – definite shape.
CLASSIFICATION OF MATTER STATES OF MATTER CHANGES IN MATTER.
Choose a category. You will be given the answer. You must give the correct question. Click to begin.
1.2 Investigating Matter Matter – anything that has mass and volume Mass – amount of matter in a substance Volume – amount of space in a substance Chemical.
Atomic Mass/Percent Composition. Average of Isotopes Every element typically exists in several isotope forms Isotopes are atoms of the same element with.
Monte Carlo /12/07. What is Geant ? Monte Carlo simulation tool for nuclear and particle physics Set up detectors –Sensitive detector which returns.
Chemistry the study of the properties of matter and how matter changes
MIXTURES, SOLUTIONS AND PURE SUBSTANCES. Matter and its appearance  According to its appearance, there are two kinds of material systems:  Homogeneous.
Detector Description – Part I Ivana Hrivnacova, IPN Orsay Tatiana Nikitina, CERN Aknowledgement: Slides by: J.Apostolakis, G.Cosmo, A. Lechner
Chapter 1: The Science of Chemistry. Changes of Matter SI Units & Measurement DensityProperties of Matter Classification of Matter
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,
Material Definition University of Pennsylvania Geant4 Tutorial 15 May 2011 Dennis Wright Geant4 V9.4.
 Matter  Matter is anything that has MASS and TAKES UP SPACE. “stuff”  Substance  Substance is a single kind of matter that is pure.  Things that.
1 Matter and Change. 2 What is Matter?  Matter is anything that takes up space and has mass.  Mass is the amount of matter in an object.
Introduction to Matter (IC Chapter 1). The total energy of the motion of all of the particles in an object. kinetic energy.
1 - 1 Substances A pure substance is an element or a compound. Substances have the same characteristics throughout meaning that all samples have the same.
CLHEP Components Geant4 and CLHEP Geant4 makes a rather substantial use of CLHEP components –System of units –Vector classes and matrices G4ThreeVector(typedef.
Chapter 3 A whole lotta stuff. Parts of an atom Nucleus: Almost all of the mass, almost none of the volume. Protons: Positive charge. Mass of 1 amu. Atomic.
MassMass Is a measure of the amount of matter. Mass is the measurement you make using a balance.
Chapter 11 Introduction: Matter and Measurement Chapter 1.
FUNDAMENTAL AND DERIVED QUANTITIES. Objectives of Learning Students are able to: identifier physical quantities in daily life collected physical quantities.
Matter, Elements, Compound, Mixture, Molecule Notes.
Topic 1 Quantitative Chemistry. Describe and Apply Mole [2-6] 1 mole = 6.02 x – Avogadro’s constant 1 mole is the number of particles contained.
Problem Research Hypothesis (proposed solution) Design Experiment Variable and control Record Observations Analyze data Conclusion.
1 Elements, Compounds, and Mixtures. 2 What is Matter?  Matter is anything that has mass and volume.  All matter is composed of tiny particles.  Arrangement.
Branches of Chemistry BranchArea of Emphasis Examples Organic chemistry most carbon-containing chemicalspharmaceuticals, plastics Inorganic chemistry in.
Detector Description – Part I Ivana Hrivnacova, IPN Orsay Tatiana Nikitina, CERN Aknowledgement: Slides by: J.Apostolakis, G.Cosmo, A. Lechner
Matter and Measurement
Classification and Properties of Matter
The Particle Theory of Matter
Atoms, Elements, Molecules,& Compounds
Describing Matter Chapter 2 Section 1 Structure of Matter
Classification of Matter
The Particle Theory of Matter
Jeopardy Final Jeopardy $100 $100 $100 $100 $100 $200 $200 $200 $200
Matter And Energy Chemistry Ch 3.
Classification of Matter
General Science– Structure of Matter, Chapter 2
Composition of Matter Everything in the universe in made up of MATTER.
Detector Description - Materials
Kernel Author: Makoto Asai.
Matter and Measurement
Classification and Separation
Matter 2.3 Compounds and Mixture.
Has mass and takes up space
Matter Vocabulary.
Presentation transcript:

Detector Description - Materials

PART I Geant4 system of units

3 System of Units (1) Geant4 has no default unit. To give a number, unit must be “ multiplied ” to the number. for example: G4double width = 12.5*m; G4double density = 2.7*g/cm3; If no unit is specified, the internal G4 unit will be used, but this is discouraged! Almost all commonly used units are available. The user can define new units. Refer to CLHEP: SystemOfUnits.h Divide a variable by a unit you want to get: G4cout << dE/MeV << “ (MeV) ” << G4endl;

4 System of Units (2) System of units are defined in CLHEP, based on: millimetre ( mm ), nanosecond ( ns ), Mega-eV ( MeV ), positron charge ( eplus ) degree Kelvin ( kelvin ), the amount of substance ( mole ), luminous intensity ( candela ), radian ( radian ), steradian ( steradian ) All other units are computed from the basic ones In output, Geant4 can choose the most appropriate unit to use. Just specify the category for the data ( Length, Time, Energy, etc … ): G4cout << G4BestUnit(StepSize, “Length”); StepSize will be printed in km, m, mm or … fermi, depending on its value

5 System of Units (3) New units can be defined directly as constants, or (suggested way) via G4UnitDefinition G4UnitDefinition ( name, symbol, category, value ) Example (mass thickness): G4UnitDefinition (“grammpercm2”, “g/cm2”, “MassThickness”, g/cm2); The new category “ MassThickness” will be registered in the kernel in G4UnitsTable To print the list of units: From the code G4 UnitDefinition::PrintUnitsTable(); At run-time, as UI command: Idle> /units/list

PART II Definition of materials and compounds

7 Definition of Materials Different kinds of materials can be defined: isotopes<>G4Isotope elements<>G4Element molecules<>G4Material compounds and mixtures <> G4Material Attributes associated to materials: density (mandatory), temperature, pressure, state (liquid, gas, etc.)

8 Isotopes, Elements and Materials G4Isotope and G4Element describe the properties of the nuclei and atoms: Atomic number, number of nucleons, mass of a mole, shell energies, etc... Cross-sections per atoms, etc… Elements are possibly built up by isotopes G4Material describes the macroscopic properties of the matter: temperature, pressure, state, density Radiation length, absorption length, etc… Materials are built up by elements

9 G4Elements (1) Isotopes can be assembled into elements G4Isotope (const G4String& name, G4int z, // number of atoms G4int n, // number of nucleons G4double a ); // mass of mole … building elements as follows: G4Element (const G4String& name, const G4String& symbol, // element symbol G4int nIso ); // # of isotopes G4Element::AddIsotope(G4Isotope* iso, // isotope G4double relAbund); // relative abundance

10 G4Elements (2) Alternatively, if the element under consideration has the natural isotopic abundance, it can be defined using: G4Element(const G4String& name, //its name const G4String& symbol, //its symbol G4double Zeff, //atomic number G4double Aeff); //mass of mole For instance: G4Element* elOxygen = new G4Element("Oxygen",symbol="O",z=8.,a=16*g/mole);

11 G4Elements (3) Elements can can also be defined using the internal Geant4 database: #include "G4NistManager.hh" [...] G4NistManager* man = G4NistManager::Instance(); // define elements G4Element* elCarbon = man->FindOrBuildElement("C"); To print information on a costituent element: G4cout << elCarbon << G4endl;

12 Material: single element Single-element materials can be defined in a quick way as follows: G4double density = 1.390*g/cm3; G4double a = 39.95*g/mole; G4Material* lAr = new G4Material("liquidArgon",z=18.,a,density); Materials composed by many elements (molecules or compounds) have to be defined through their constituent elements Prefer low-density material to vacuum

13 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); H2O->AddElement(elH, natoms=2); H2O->AddElement(elO, natoms=1); define elements define molecule number of components

14 Material: compound Compound, made by several elements: 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); Air->AddElement(elN, 70.0*perCent); Air->AddElement(elO, 30.0*perCent); define elements define compound number of components

15 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); Mixtures could also be defined using their elemental mass composition (as described in the previous slide)

16 Material: NIST database Materials can also be defined using the internal Geant4 database, based on NIST. #include "G4NistManager.hh" G4NistManager* man = G4NistManager::Instance(); // define pure NIST materials G4Material* Cu = man->FindOrBuildMaterial("G4_Cu"); // define NIST materials G4Material* H2O = man->FindOrBuildMaterial("G4_WATER"); The list of available material names is extended permanently. It can be accessed at run-time: Idle> /material/nist/listMaterials all or from the code G4NistManager::Instance()->ListMaterials(“all”);

PART III A few examples and information

18 Example: define a gas It may be necessary to specify temperature and pressure (dE/dx computation affected). For density <10 mg/cm 3 the material is automatically considered a gas (kStateGas) G4double density = 27.*mg/cm3; G4double temperature = 325.*kelvin; G4double pressure = 50.*atmosphere; G4Material* CO2 = new G4Material(“CarbonicGas", density, ncomponents=2 kStateGas, temperature, pressure); CO2->AddElement(C,natoms = 1); CO2->AddElement(O,natoms = 2);

19 Example: define “vacuum” Absolute vacuum does not exist. It is a gas at very low density (e.g. transparent to particles being tracked) Cannot define materials with  = 0 G4double atomicNumber = 1.; G4double massOfMole = 1.008*g/mole; G4double density = 1.e-25*g/cm3; G4double temperature = 2.73*kelvin; G4double pressure = 3.e-18*pascal; G4Material* Vacuum = new G4Material(“interGalactic", atomicNumber, massOfMole, density, kStateGas, temperature, pressure);

20 Print material information To print information on a given user-defined G4Material: G4cout << Air << G4endl; or at run-time via the UI command Idle> /material/g4/printMaterial materialName To print the full list of user-defined materials: G4cout << *(G4Material::GetMaterialTable()) << G4endl;