34.7. Biological Tissue Materials
Table of Contents
Introduction
Biological tissue materials are essential when you use Geant4 for medical physics. Whenever you want realistic patient dose, detector response in tissue, or imaging performance, you must choose or construct materials that mimic real biological media. In this chapter you learn how biological tissues are usually represented in Geant4, what tools Geant4 already provides, and how to use them safely without going into the details of general material creation that are discussed elsewhere.
Geant4 does not simulate “organs” directly. It simulates volumes that are filled with physical materials. For medical physics you try to choose material definitions that match human tissues in density and elemental composition as closely as needed for your application.
Typical Biological Tissues in Geant4
Biological tissues differ from each other mainly by mass density and elemental composition. Geant4 works with elements and materials, so your “tissue” is always a mixture of chemical elements with a specified density.
For many medical physics problems you will encounter the same few tissue types repeatedly. Examples include:
Soft tissue that is water like, used for simple phantoms or whole body dose estimates.
Lung tissue with low density and significant air content.
Bone tissue with higher density and high calcium content.
Adipose tissue that is more fat like and has a lower effective atomic number than muscle.
Cortical bone and trabecular bone that have similar composition but different density.
Blood and brain, which are sometimes treated as soft tissue but have specialized compositions in detailed models.
When you do not need very high accuracy, it is common to approximate many soft tissues as water or as “ICRU soft tissue” provided by Geant4. For precise radiotherapy or imaging studies, the choice of tissue material can change attenuation, scattering, and dose by several percent.
For any clinically relevant or quantitative study, never assume “water” is always good enough. Always document which tissue material definitions you used and where they come from (ICRU, ICRP, or a specific Geant4 predefined material).
Using Predefined Tissue Materials
Geant4 includes a large set of predefined materials based on ICRU and other reference data. You access them through G4NistManager. Many of these are suitable for biological tissues and save you from manually entering elemental fractions.
The basic usage pattern is:
auto nist = G4NistManager::Instance();
G4Material* softTissue = nist->FindOrBuildMaterial("G4_TISSUE_SOFT_ICRU");The material names for tissues follow a consistent naming scheme. The table below lists some commonly used biological tissue materials that exist in standard Geant4 (exact availability can depend on version, so always check your installation):
| Geant4 Material Name | Typical Use |
|---|---|
G4_WATER | Simple water phantoms, basic dose studies |
G4_TISSUE_SOFT_ICRU | Generic soft tissue, body tissue |
G4_TISSUE_SOFT_BRAIN_ICRP | Brain tissue |
G4_TISSUE_SOFT_LUNG_ICRP | Lung tissue (parenchyma) |
G4_LUNG_ICRP | Whole lung region, including air |
G4_ADIPOSE_TISSUE_ICRP | Adipose (fat) tissue |
G4_BONE_COMPACT_ICRU | Cortical (compact) bone |
G4_BONE_TRABECULAR_ICRP | Spongy (trabecular) bone |
G4_SKIN_ICRP | Skin layer |
G4_BLOOD_ICRP | Blood |
Soft tissue in ICRU and ICRP definitions has a composition similar to water but with realistic carbon, nitrogen, and other trace elements.
When you build phantoms or patient models you usually retrieve these materials and assign them to the logical volumes that represent organs or regions. That keeps your code simple and ensures consistency with published reference compositions.
Always use G4NistManager to get standard biological materials. Avoid retyping known tissue compositions by hand, because small mistakes in elemental fractions or density can lead to incorrect stopping powers and attenuation.
Choosing Tissue Material Models
The correct choice of tissue material depends on your medical physics task. Even if many tissues look similar, differences in composition and density can change radiation interaction probabilities and secondary particle production.
For radiotherapy dose calculation in a homogeneous phantom, water is often used as the reference medium. A simple water box or water cylinder can be sufficient for studying depth dose, beam characteristics, or basic detector response.
For realistic patient dose, especially with CT based geometries, you usually map CT Hounsfield units to tissue materials and densities. In that context you might distinguish between lung, adipose, muscle, bone, and sometimes cortical versus trabecular bone. Geant4 allows you to assign a different G4Material to each volume so you can represent these classes explicitly.
For diagnostic imaging such as CT or x ray imaging, small differences in effective atomic number and electron density are crucial, so bone, soft tissue, and lung must be modeled with realistic materials to reproduce image contrast and attenuation.
For nuclear medicine, such as PET or SPECT, tissue materials influence photon attenuation and scattering, and may affect the shape of energy spectra and spatial resolution. Again, it is usually sufficient to distinguish a few main tissue categories.
For microdosimetry or very detailed biological effect studies, you may need more specialized materials, for example DNA, cell nucleus, or specific chemical compositions of intracellular and extracellular fluids. Those often require custom material definitions based on literature.
Define in advance which tissue classes you really need. More material types can increase model complexity and computing time without always improving the quality of your final medical physics result.
Density and Composition for Tissues
Two material parameters matter most for biological tissues in Geant4: mass density and elemental composition.
Mass density $\rho$ appears directly in the material definition, for example in g/cm$^3$. For water at standard conditions Geant4 uses $\rho = 1.0 \,\text{g/cm}^3$. Lung tissue typically has a much lower effective density, around $0.2 \,\text{g/cm}^3$ to $0.4 \,\text{g/cm}^3$ depending on inflation. Cortical bone is around $1.8 \,\text{g/cm}^3$ to $2.0 \,\text{g/cm}^3$.
Elemental composition is defined by mass fractions of elements such as H, C, N, O, Ca, P, Na, Cl and others. A typical soft tissue is roughly:
| Element | Approximate Mass Fraction |
|---|---|
| H | ~10% |
| C | ~11% |
| N | ~2% |
| O | ~76% |
| Others | small percentages |
Bone materials include much more calcium and phosphorus, which significantly changes photon interaction cross sections at diagnostic energies.
Geant4 uses these parameters to compute stopping powers, mean free paths, scattering distributions, and secondary particle production. For that reason, realistic densities and compositions are essential when you care about quantitative dose or attenuation.
If you use predefined Geant4 tissue materials, these densities and compositions are already set from ICRU and ICRP reports. If you create your own tissue, for example from CT based density tables, you must supply consistent values yourself.
The same elemental composition with different density behaves differently in Geant4. Never change density without checking whether your chosen physics processes and production cuts are still appropriate for the new material.
Custom Biological Tissue Definitions
In some medical physics studies the standard Geant4 tissue materials are not sufficient. Examples include:
A specific tumor or organ that has measured elemental composition different from generic soft tissue.
Patient specific tissue definitions where you convert CT Hounsfield values into material composition.
Reduced or increased bone mineral content for osteoporosis or radiation damage studies.
Microscopic structures such as DNA, cell cytoplasm, or membranes for track structure simulations.
To define a custom biological material you typically proceed as follows:
Obtain the density and elemental composition from a reliable source such as ICRU reports, peer reviewed literature, or your own measurements. Composition is usually given as mass percentage for each element.
Convert mass percentages to fractions between 0 and 1, and make sure they sum to exactly 1 within numerical precision.
Create the necessary G4Element objects if they are not already available, then define a G4Material with the chosen density and number of components, and add each element with its mass fraction.
Although the general technical steps of creating custom materials are discussed elsewhere, here the emphasis is that any custom biological tissue should be traceable to a source and documented clearly in your code or accompanying notes. You should record the reference, the density, and the detailed elemental fractions.
Never “guess” tissue composition. Always base custom biological material definitions on published data or well defined conversion methods from imaging information. Record the source and version so you can reproduce or update the model later.
Linking Tissue Materials to Medical Applications
Once you have chosen or created suitable biological tissue materials, you must connect them to the geometry of your medical physics simulation. In most applications this means assigning materials to regions that represent organs, patient voxels, or phantom segments.
For simple water phantoms, you fill the whole geometry with G4_WATER and then focus on beam and detector modeling. For anthropomorphic phantoms or voxelized patients, each voxel or volume may be assigned one of several tissue materials, such as lung, soft tissue, adipose, or bone.
The choice of material type can influence:
Depth dose curves in external beam radiotherapy, especially near interfaces between lung, soft tissue, and bone.
Attenuation profiles in x ray and CT imaging, affecting contrast and noise characteristics.
Scatter distributions in SPECT and PET, which influence image artifacts and quantitative accuracy.
Local energy deposition patterns in microdosimetry or radiobiology, which relate to biological effect models.
As you build more advanced medical physics simulations, the tissue materials become one part of a chain that includes physics lists, geometry, particle sources, and analysis. Good practice is to encapsulate your tissue definitions in a separate part of your code so you can update or replace them without touching the rest of the simulation.
For every medical physics study, clearly state which biological tissue materials were used, and at what densities. This is essential for comparison with other simulations, with measurements, and for regulatory or clinical documentation.
Views: 9
KAHIBARO