Dragon Plugin¶
This plugin provides mechanisms for ARMI applications to drive École Polytechnique de Montréal’s lattice code DRAGON.
Full documentation is hosted at https://terrapower.github.io/dragon-plugin/
Prerequisites¶
Download and build/install DRAGON from: https://www.polymtl.ca/merlin/version5.htm
Registering the plugin¶
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 |
|
Documentation |
|
Bug tracker |
|
Plugin directory |
|
Contact |