{"id":25456843,"url":"https://github.com/szaghi/foreseer","last_synced_at":"2026-02-18T03:37:44.999Z","repository":{"id":86297570,"uuid":"77772770","full_name":"szaghi/FORESEER","owner":"szaghi","description":"FOrtran RiEmann SolveErs EnviRonment","archived":false,"fork":false,"pushed_at":"2020-03-26T17:44:06.000Z","size":15055,"stargazers_count":10,"open_issues_count":1,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-06-11T18:54:09.651Z","etag":null,"topics":["fortran","oop","riemann-solvers"],"latest_commit_sha":null,"homepage":null,"language":"Fortran","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/szaghi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.bsd-2.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-01-01T09:18:05.000Z","updated_at":"2021-01-10T10:54:26.000Z","dependencies_parsed_at":"2023-03-13T09:36:18.814Z","dependency_job_id":null,"html_url":"https://github.com/szaghi/FORESEER","commit_stats":{"total_commits":71,"total_committers":3,"mean_commits":"23.666666666666668","dds":"0.028169014084507005","last_synced_commit":"18690b374f72c4a7d0ab9837767e0dfcc3549b04"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szaghi%2FFORESEER","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szaghi%2FFORESEER/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szaghi%2FFORESEER/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szaghi%2FFORESEER/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/szaghi","download_url":"https://codeload.github.com/szaghi/FORESEER/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239394683,"owners_count":19631122,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fortran","oop","riemann-solvers"],"created_at":"2025-02-18T01:51:28.595Z","updated_at":"2025-10-16T07:28:04.493Z","avatar_url":"https://github.com/szaghi.png","language":"Fortran","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ca name=\"top\"\u003e\u003c/a\u003e\n\n# FORESEER [![GitHub tag](https://img.shields.io/github/tag/szaghi/FORESEER.svg)]() [![Join the chat at https://gitter.im/szaghi/FORESEER](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/szaghi/FORESEER?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n[![License](https://img.shields.io/badge/license-GNU%20GeneraL%20Public%20License%20v3,%20GPLv3-blue.svg)]()\n[![License](https://img.shields.io/badge/license-BSD2-red.svg)]()\n[![License](https://img.shields.io/badge/license-BSD3-red.svg)]()\n[![License](https://img.shields.io/badge/license-MIT-red.svg)]()\n\n[![Status](https://img.shields.io/badge/status-unstable-red.svg)]()\n[![Build Status](https://travis-ci.org/szaghi/FORESEER.svg?branch=master)](https://travis-ci.org/szaghi/FORESEER)\n[![Coverage Status](https://img.shields.io/codecov/c/github/szaghi/FORESEER.svg)](http://codecov.io/github/szaghi/FORESEER?branch=master)\n\n### FORESEER, FOrtran RiEmann SolvErs EnviRonment\n\nA KISS pure Fortran Library providing a large set of Riemann Solvers:\n\n- FORESEER is a pure Fortran (KISS) library for solving Riemann problems (1D);\n- FORESEER is Fortran 2008+ standard compliant;\n- FORESEER is OOP designed;\n- FORESEER is TDD developed;\n- FORESEER is a Free, Open Source Project.\n\n#### A taste of FORESEER\n\n```fortran\nuse foreseer\ntype(eos_compressible)                 :: eos            ! Equation of state.\ntype(conservative_compressible)        :: state_left     ! Left state.\ntype(conservative_compressible)        :: state_right    ! Right state.\ntype(conservative_compressible)        :: fluxes         ! Conservative fluxes.\nclass(riemann_solver_compressible_llf) :: riemann_solver ! Riemman Problem solver.\n\n! air\neos = eos_compressible(cp=1040.004_R8P, cv=742.86_R8P)\n\n! SOD's Riemann Problem\nstate_left  = conservative_compressible(density=1._R8P,                          \u0026\n                                        energy=1._R8P*eos%energy(density=1._R8P, \u0026\n                                                                 pressure=1._R8P))\nstate_right = conservative_compressible(density=0.125_R8P,                             \u0026\n                                        energy=0.125_R8P*eos%energy(density=0.125_R8P, \u0026\n                                                                    pressure=0.1_R8P))\n\n! solve Riemann Problem\ncall riemann_solver%solve(eos_left=eos, state_left=state_left,               \u0026\n                          eos_right=eos, state_right=state_right, normal=ex, \u0026\n                          fluxes=fluxes)\n\n! print results\nprint '(A)', 'Fluxes at interface:'\nprint '(A)', fluxes%description(prefix='  ')\n```\n\n#### Issues\n\n[![GitHub issues](https://img.shields.io/github/issues/szaghi/FORESEER.svg)]()\n[![Ready in backlog](https://badge.waffle.io/szaghi/FORESEER.png?label=ready\u0026title=Ready)](https://waffle.io/szaghi/FORESEER)\n[![In Progress](https://badge.waffle.io/szaghi/FORESEER.png?label=in%20progress\u0026title=In%20Progress)](https://waffle.io/szaghi/FORESEER)\n[![Open bugs](https://badge.waffle.io/szaghi/FORESEER.png?label=bug\u0026title=Open%20Bugs)](https://waffle.io/szaghi/FORESEER)\n\n#### Compiler Support\n\n[![Compiler](https://img.shields.io/badge/GNU-v6.3.1+-brightgreen.svg)]()\n[![Compiler](https://img.shields.io/badge/Intel-v17.0.1+-brightgreen.svg)]()\n[![Compiler](https://img.shields.io/badge/IBM%20XL-not%20tested-yellow.svg)]()\n[![Compiler](https://img.shields.io/badge/g95-not%20tested-yellow.svg)]()\n[![Compiler](https://img.shields.io/badge/NAG-not%20tested-yellow.svg)]()\n[![Compiler](https://img.shields.io/badge/PGI-not%20tested-yellow.svg)]()\n\n---\n\n[What is FORESEER?](#what-is-foreseer) | [Main features](#main-features) | [Copyrights](#copyrights) | [Download](#download) | [Compilation](#compilation) | [Documentation](#documentation) | [References](#references)\n\n---\n\n## What is FORESEER?\n\n\u003e **FORESEER** is a modern Fortran library providing a large set of Riemann Solvers.\n\nTo be completed.\n\n### How to use\n\nTo be written.\n\nGo to [Top](#top)\n\n## Main features\n\nTo be written.\n\nAny feature request is welcome.\n\nGo to [Top](#top)\n\n## Copyrights\n\nFORESEER is a Free and Open Source Software (FOSS), it is distributed under a **very permissive** multi-licensing system: selectable licenses are [GPLv3](http://www.gnu.org/licenses/gpl-3.0.html), [BSD2-Clause](http://opensource.org/licenses/BSD-2-Clause), [BSD3-Clause](http://opensource.org/licenses/BSD-3-Clause) and [MIT](http://opensource.org/licenses/MIT), feel free to select the license that best matches your workflow.\n\n\u003e Anyone is interest to use, to develop or to contribute to FORESEER is welcome.\n\nMore details can be found on [wiki](https://github.com/szaghi/FORESEER/wiki/Copyrights).\n\nGo to [Top](#top)\n\n## Download\n\nTo be written.\n\nGo to [Top](#top)\n\n## Compilation\n\nTo be written.\n\n## Documentation\n\nBesides this README file the FORESEER documentation is contained into its own [wiki](https://github.com/szaghi/FORESEER/wiki). Detailed documentation of the API is contained into the [GitHub Pages](http://szaghi.github.io/FORESEER/index.html) that can also be created locally by means of [ford tool](https://github.com/cmacmackin/ford).\n\nGo to [Top](#top)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fszaghi%2Fforeseer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fszaghi%2Fforeseer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fszaghi%2Fforeseer/lists"}