Skip to content

Instantly share code, notes, and snippets.

View CFGrote's full-sized avatar

Carsten Fortmann-Grote CFGrote

View GitHub Profile
#%Module
#
# modulefile for simex_platform
#
# Help
proc ModulesHelp { } {
puts stderr "This modulefile defines library and executable paths"
puts stderr "for the simex_platform python library and physics modules. Branch develop as installed on maxwell server."
}
#%Module
#
# modulefile for simex_platform
#
# Help
proc ModulesHelp { } {
puts stderr "This modulefile defines library and executable paths"
puts stderr "for the simex_platform python library and physics modules. Branch develop as installed on maxwell server."
}
@CFGrote
CFGrote / genesis3towf.py
Created June 7, 2017 19:10
python script to convert genesisv3 hdf5 output to wpg readable wavefront data.
from wpg.converters.genesis import read_genesis_file
wf = read_genesis_file("genesis_v3_out.h5")
wf.store_hdf("source.h5")