Physics Models in MCNP

Essential physics settings for accurate simulations

Physics Control Overview

MCNP physics cards control how particles interact with materials. Proper settings ensure accurate results while maintaining computational efficiency.

Key Physics Cards

MODE

Particle types to transport

PHYS

Physics options and energy limits

CUT

Time and energy cutoffs

MT

Thermal scattering data

Neutron Physics

Neutron transport is the foundation of reactor physics and criticality calculations. Choose settings based on your energy range and accuracy requirements.

Basic Reactor Physics

mcnp
c Standard reactor physics setup
MODE  n                    $ Neutrons only
PHYS:n  20  0  0  -1       $ 20 MeV max, analog capture
CUT:n   1e-8  0  0.25      $ Time/energy/weight cutoffs

c Thermal scattering (essential for moderated systems)
MT1    lwtr.20t           $ Light water S(α,β)
MT2    grph.20t           $ Graphite S(α,β)
MT3    poly.20t           $ Polyethylene S(α,β)

This setup covers most reactor applications. Implicit capture (-1) improves efficiency by avoiding explicit absorption tracking.

High-Energy Applications

mcnp
c Accelerator or fusion applications
MODE  n p                 $ Neutrons and photons
PHYS:n  150  0  1  -1  0   $ 150 MeV max, enable (n,xn)
PHYS:p  150  0  1  1       $ Photon physics to 150 MeV

c Track specific reactions
c LCA and LCB control intranuclear cascade (INC) model
c parameters for high-energy physics (Bertini/CEM options).
c Photon production from neutrons is automatic in MODE n p.

c Energy splitting for efficiency
ESPLT:n  3  1.0  20.0     $ Energy splitting ratios for cells 1-3

Extended energy ranges and coupled transport handle high-energy physics. Energy splitting improves statistics for important energy ranges.

Photon Physics

Photon transport is crucial for shielding, dosimetry, and detector response calculations. Enable features based on your specific application needs.

Shielding Calculations

mcnp
c Coupled neutron-photon for shielding
MODE  n p                 $ Both particle types
PHYS:n  20  0  0  -1  1    $ Neutrons with photon production
PHYS:p  20  0  0  1        $ Photons with coherent scattering ON

c Energy boundaries for dose calculations
E0     0.01 0.1 1.0 10.0   $ Photon energy bins (MeV)

Coupled transport captures gamma rays from neutron interactions. Essential for accurate dose calculations through shields.

Detailed Dosimetry

mcnp
c High-fidelity photon physics
PHYS:p  20  1  0  1  0     $ All physics effects enabled
c           |  |  |  |
c           |  |  |  +---- NODOP=0: Doppler broadening ON
c           |  |  +------- ISPN=1:  Photonuclear ON
c           |  +---------- NOCOH=0: Coherent scattering ON
c           +------------- IDES=1:  Electron production ON

c Fluorescence for K-edge effects
PHYS:e  1.0  1  1  1  1    $ Electron physics if needed

Full physics treatment for precise dosimetry work. Includes all interaction mechanisms and secondary particle production.

Thermal Neutron Treatment

Thermal neutron scattering in bound materials requires special treatment. Use S(α,β) data for accurate results in moderated systems.

mcnp
c Common thermal scattering materials
MT1    lwtr.20t           $ Light water (H2O)
MT2    hwtr.20t           $ Heavy water (D2O)  
MT3    grph.20t           $ Graphite
MT4    beo.20t            $ Beryllium oxide
MT5    poly.20t           $ Polyethylene
MT6    zrh.20t            $ Zirconium hydride

c Temperature-dependent data
c MT1    lwtr.01t         $ H2O at ~350K (pick ONE)
MT1    lwtr.10t           $ H2O at ~293K (use one per material)

c Free gas thermal treatment is the default when
c no S(alpha,beta) data is specified via MT cards.

Match S(α,β) data to your actual materials and temperatures. Free gas thermal treatment is the automatic default when no S(α,β) data is provided.

Performance Optimization

Physics settings significantly impact computational efficiency. Balance accuracy with speed based on your problem requirements.

Efficiency Settings

Implicit capture

Use -1 in PHYS cards to avoid killing particles by absorption. Improves efficiency.

Energy cutoffs

Set reasonable lower energy limits. Don't track particles that won't contribute.

Physics selection

Enable only needed effects. Extra physics features cost computational time.

Particle modes

Transport only necessary particle types. More particles = longer runtime.

Common Applications

Reactor Physics

MODE: n

Energy: 0-20 MeV

Special: Thermal scattering

Focus: k-effective, flux

Shielding Analysis

MODE: n p

Energy: 0-20 MeV

Special: Coupled transport

Focus: Dose rates

Accelerator Physics

MODE: n p e

Energy: 0-1000 MeV

Special: High-energy reactions

Focus: Activation, heating

Detector Response

MODE: n p

Energy: 0-10 MeV

Special: Detailed photon physics

Focus: Energy deposition

Physics Verification

Always verify physics settings with benchmark problems or analytical solutions. Small changes in physics options can significantly affect results.

Start with default settings and add complexity only when needed. Document your physics choices and the reasoning behind them.