Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{phys}[intel/2023a] FDS v6.9.1 #21768

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions easybuild/easyconfigs/f/FDS/FDS-6.9.1-intel-2023a.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
easyblock = 'ConfigureMake'

name = 'FDS'
version = '6.9.1'

homepage = 'https://pages.nist.gov/fds-smv'
description = """Fire Dynamics Simulator (FDS) is a large-eddy simulation (LES) code for low-speed flows,
with an emphasis on smoke and heat transport from fires."""

toolchain = {'name': 'intel', 'version': '2023a'}
toolchainopts = {'pic': True, 'usempi': True, 'openmp': True}

source_urls = ['https://github.com/firemodels/fds/archive/']
sources = ['%(name)s-%(version)s.tar.gz']
checksums = ['e0fe22d1386dc06512489ddf190dbdbee4c9865856f4a7ca48aec8425b4c0867']

unpack_options = '--strip-components=1'

start_dir = 'Build'

# just run make in the install dir
skipsteps = ['configure', 'install']
buildininstalldir = True

buildopts = 'impi_intel_linux_openmp &&'
buildopts += ' cd %(installdir)s/Build && ln -s fds_impi_intel_linux_openmp fds'

modextrapaths = {'PATH': 'Build'}

sanity_check_paths = {
'files': ['Build/fds'],
'dirs': [],
}

sanity_check_commands = [
"fds 2>&1 | grep 'MPI version'",
]

moduleclass = 'phys'
Loading