This plugin provides mechanisms for :doc:`ARMI <armi:index>` applications to drive École Polytechnique de Montréal's lattice code DRAGON.
Full documentation is hosted at https://terrapower.github.io/dragon-plugin/
- :doc:`Download and install ARMI <armi:user/user_install>`.
- Download and build/install DRAGON from: https://www.polymtl.ca/merlin/version5.htm
To activate the DRAGON plugin in your ARMI app, ensure it is in your PYTHONPATH
and
register it in your app with code like:
from armi.apps import App
from terrapower.physics.neutronics.dragon import DragonPlugin
class MyApp(App):
def __init__(self):
App.__init__(self)
self._pm.register(DragonPlugin)
Source code | https://github.com/terrapower/dragon-armi-plugin |
Documentation | https://terrapower.github.io/dragon-plugin |
Bug tracker | https://github.com/terrapower/dragon-armi-plugin/issues |
Plugin directory | https://github.com/terrapower/armi-plugin-directory |
Contact | [email protected] |