FastReactor / OpenBPS

Open source code of BurnuP Simulation

Home Page:https://openbps.readthedocs.io/en/latest/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OpenBPS

Open source code of BurnuP Simulation

Overview

The OpenBPS is open source code is developing to solve wide range problems with nuclide concetration changed over time of modelling process including as simulation with induced external partical source like depletion, transmutation, activation (e.g. by neutrons in a nuclear reactor) well as simple nucleus decay. The code implments three main approaches to solve Baetmans equation:

  1. Iteration method with uncetainity analysis option [1].
  2. Chebyshev reational approximation method (CRAM) [2].
  3. Direct analytical Baetman method [3] (this method currently under development).

The OpenPBS relies on state of the art open source, open access instruments and data sources both to work and prepare input data and to solve linear equation system. The information about every nucleus could be obtained using python modules of the OpenMC[4] is a community-developed Monte Carlo neutron and photon transport simulation code and the next ENDF formated nuclear data libraries:

To solve nuclear reactor depletion problem is necessary to have multigroup cross-section library file which could be obtained by:

Platforms

Platforms:

  • Linux
  • Mac OS X
  • Windows

Requirenments

  • a C++11-standard-compliant compiler
  • Python 3.5+ (optional)

External libraries

libraries:

Getting started

Installation

Build OpenBPS using CMake:

    mkdir build && cd build
    cmake ..
    with Optimization:
    cmake -Doptimize=ON ..

Config

Config default

<?xml version="1.0"?>
<configure>

  <chain>./examples/chain_endfb71.xml</chain>
  <nuclides>./examples/nuclides.xml</nuclides>
  <reaction>./examples/reactions.xml</reaction>
  <inpmaterials>./examples/materials_test.xml</inpmaterials>
  <numbers>1</numbers>
  <timestep>720000</timestep>
  <method>chebyshev</method>
  <decaykey>true</decaykey>
  <epb>1.e-5</epb>
  <cram_order>16</cram_order>

</configure>

About

Open source code of BurnuP Simulation

https://openbps.readthedocs.io/en/latest/index.html

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 89.9%Language:Python 7.6%Language:CMake 2.5%Language:Shell 0.1%