All Projects → lanl → FEHM

lanl / FEHM

Licence: other
Finite Element Heat and Mass Transfer Code

Programming Languages

fortran
972 projects
GLSL
2045 projects
Roff
2310 projects
python
139335 projects - #7 most used programming language
julia
2034 projects
Makefile
30231 projects

Projects that are alternatives of or similar to FEHM

rockhound
NOTICE: This library is no longer being developed. Use Ensaio instead (https://www.fatiando.org/ensaio). -- Download geophysical models/datasets and load them in Python
Stars: ✭ 33 (+0%)
Mutual labels:  earth-science
HackTheSolarSystem
The 5th Annual American Museum of Natural History Hackathon produced by the BridgeUP: STEM program
Stars: ✭ 22 (-33.33%)
Mutual labels:  earth-science
try-gmt
Try GMT, PyGMT, and GMT.jl online! All in one place!
Stars: ✭ 34 (+3.03%)
Mutual labels:  earth-science
GMT.jl
Generic Mapping Tools Library Wrapper for Julia
Stars: ✭ 148 (+348.48%)
Mutual labels:  earth-science
cis
Home of the Community Intercomparison Suite.
Stars: ✭ 30 (-9.09%)
Mutual labels:  earth-science
DSMACC
Dynamically Simple Model of Atmospheric Chemical Complexity
Stars: ✭ 16 (-51.52%)
Mutual labels:  earth-science
psyplot
Python package for interactive data visualization
Stars: ✭ 64 (+93.94%)
Mutual labels:  earth-science
hopsan
Hopsan is a free multi-domain system simulation tool developed at the division of Fluid and mechatronic systems at Linköping university.
Stars: ✭ 101 (+206.06%)
Mutual labels:  simulation-modeling
nasapower
API Client for NASA POWER Global Meteorology, Surface Solar Energy and Climatology in R
Stars: ✭ 79 (+139.39%)
Mutual labels:  earth-science
Felicette
Satellite imagery for dummies.
Stars: ✭ 1,710 (+5081.82%)
Mutual labels:  earth-science
Geoweaver
a web system to allow users to automatically record history and manage complicated scientific workflows in web browsers involving the online spatial data facilities, high-performance computation platforms, and open-source libraries.
Stars: ✭ 32 (-3.03%)
Mutual labels:  earth-science
paper-moho-inversion-tesseroids
Source code, data, and model results for "Fast non-linear gravity inversion in spherical coordinates with application to the South American Moho". Published in the Geophysical Journal International.
Stars: ✭ 27 (-18.18%)
Mutual labels:  earth-science
PeakPo
X-ray diffraction data analysis for high pressure and high temperature experiments
Stars: ✭ 14 (-57.58%)
Mutual labels:  earth-science
EarthSim
Tools for working with and visualizing environmental simulations.
Stars: ✭ 61 (+84.85%)
Mutual labels:  earth-science
ImageMethodReverb.jl
Room Acoustics Impulse Response Generator using the Randomized Image Method (RIM)
Stars: ✭ 23 (-30.3%)
Mutual labels:  simulation-modeling
geologic-symbols-qgis
Geologic symbols library and development for QGIS
Stars: ✭ 63 (+90.91%)
Mutual labels:  earth-science
jigsaw-geo-matlab
MATLAB bindings for JIGSAW(GEO): an unstructured mesh generator for geoscientific modelling.
Stars: ✭ 26 (-21.21%)
Mutual labels:  earth-science
cultural evolution ABM tutorial
This tutorial shows how to create very simple simulation or agent-based models of cultural evolution in R
Stars: ✭ 82 (+148.48%)
Mutual labels:  simulation-modeling
CDT
The Climate Data Toolbox for MATLAB
Stars: ✭ 106 (+221.21%)
Mutual labels:  earth-science
ecmwf models
Python package for downloading ECMWF reanalysis data and converting it into a time series format.
Stars: ✭ 27 (-18.18%)
Mutual labels:  earth-science

FEHM: Finite Element Heat and Mass Transfer Code

LANL Software: LA-CC-2012-083 No. C13022 LANL Documents: LA-UR-12-24493

Build Status

The numerical background of the FEHM computer code can be traced to the early 1970s when it was used to simulate geothermal and hot dry rock reservoirs. The primary use over a number of years was to assist in the understanding of flow fields and mass transport in the saturated and unsaturated zones below the potential Yucca Mountain repository. Today FEHM is used to simulate groundwater and contaminant flow and transport in deep and shallow, fractured and un-fractured porous media throughout the US DOE complex. FEHM has proved to be a valuable asset on a variety of projects of national interest including Environmental Remediation of the Nevada Test Site, the LANL Groundwater Protection Program, geologic CO2 sequestration, Enhanced Geothermal Energy (EGS) programs, Oil and Gas production, Nuclear Waste Isolation, and Arctic Permafrost. Subsurface physics has ranged from single fluid/single phase fluid flow when simulating basin scale groundwater aquifers to complex multifluid/ multi-phase fluid flow that includes phase change with boiling and condensing in applications such as unsaturated zone surrounding nuclear waste storage facility or leakage of CO2/brine through faults or wellbores. The numerical method used in FEHM is the control volume method (CV) for fluid flow and heat transfer equations which allows FEHM to exactly enforce energy/mass conservation; while an option is available to use the finite element (FE) method for displacement equations to obtain more accurate stress calculations. In addition to these standard methods, an option to use FE for flow is available, as well as a simple Finite Difference scheme.

FEHM HomepageFEHM DocumentationFehmpytests Documentation

License

FEHM is distributed as as open-source software under a BSD 3-Clause License. See Copyright License

Developers

External Collaborators must sign a Contribution Agreement. Contribution Agreement for External Collaborators

The following are reminders for FEHM code developers using this repository.

A Git workflow follows these basic steps:

  • Make changes to files
  • Add the files (‘stage’ files)
  • ‘Commit’ the staged files
  • Push the commit (containing all modified files) to the central repo
  1. To first get the repo, run the command
git clone https://github.com/lanl/FEHM.git

This will download the FEHM Git repo to your current directory.

  1. Let’s say you’ve done some editing and you’re ready to push your changes to the FEHM repository. Run the command
git add file1 file2 ... fileN

to add any files you have changed. You can also just run git add . if you want to add every changed file.

  1. Now, run
git status

This gives an overview of all tracked and untracked files. A tracked file is one that Git considers as part of the repo. Untracked files are everything else – think of *.o files, or some test data output generated by an FEHM run.

Tracked files can be:

  • Unmodified (you haven’t made any changes to it, relative to the last commit)
  • Modified (you have edited the file since the last commit)
  • Staged (the file has been added and is ready to be committed and then pushed)

Untracked files become tracked by using

git add filename
  1. After verifying (with git status) that all the files you want to be pushed are properly staged, commit them using
git commit -m "My first Git commit!"

Then, push the files onto the GitHub repo with

git push origin master
  1. If someone else has made edits, you will need to pull their changes to your local FEHM clone before you can push.
git pull origin master
git push origin master

BUILD FEHM

Build FEHM. See src and Makefile in that directory.

FEHM Release Versions

See Versions and Notes under the Releases tab this repository.

The Most recent distributed release is FEHM V3.4.0 (September 2019) which is the version cloned for this repository. The FEHM software is a continuation of QA work performed for the Yucca Mountain Project (YMP) under Software Configuration Control Request (SCCR) (Software Tracking Numbers STN: 10086-2.21-00 August 2003, V2.22, STN 10086-2.22-01, V2.23, STN 10086-2.23-00, V2.24-01, STN 10086-2.24-01, and V2.25, STN 10086-2.25-00). The QA for these codes started under YMP QA and continue under under LANL EES-16 Software QA Policy and Proceedures as outlined in: "EES-16-13-003.SoftwareProcedure.pdf"

Before distribution of FEHM software, tests are executed and verified as acceptable on LANL computers with operating systems Linux, Mac OSX, and WINDOWS. The overall validation effort for the FEHM software consists of a suite of directories and scripts that test the model whenever possible, against known analytical solutions of the same problem. The test suite was developed under YMP QA for FEHM RD.10086-RD-2.21-00 and is available for download.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].