{"id":19708749,"url":"https://github.com/bendudson/hermes-2","last_synced_at":"2025-04-29T17:30:52.608Z","repository":{"id":34615217,"uuid":"92924149","full_name":"bendudson/hermes-2","owner":"bendudson","description":"Hot ion drift-reduced plasma fluid model","archived":false,"fork":false,"pushed_at":"2024-10-09T00:08:14.000Z","size":2493,"stargazers_count":7,"open_issues_count":11,"forks_count":10,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-05T18:50:12.530Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bendudson.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-05-31T08:37:32.000Z","updated_at":"2024-07-16T12:09:16.000Z","dependencies_parsed_at":"2022-08-31T08:53:05.053Z","dependency_job_id":null,"html_url":"https://github.com/bendudson/hermes-2","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bendudson%2Fhermes-2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bendudson%2Fhermes-2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bendudson%2Fhermes-2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bendudson%2Fhermes-2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bendudson","download_url":"https://codeload.github.com/bendudson/hermes-2/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251549125,"owners_count":21607356,"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":[],"created_at":"2024-11-11T21:44:45.202Z","updated_at":"2025-04-29T17:30:48.119Z","avatar_url":"https://github.com/bendudson.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"      _   _                                   ______\n     | | | |                                 |___   |\n     | |_| | ___ _ __ _ __ ___   ___  ___        / /\n     |  _  |/ _ \\ '__| '_ ` _ \\ / _ \\/ __|      / /\n     | | | |  __/ |  | | | | | |  __/\\__ \\     / /___\n     \\_| |_/\\___|_|  |_| |_| |_|\\___||___/    |______| \n\n\nHermes plasma edge simulation model. Uses BOUT++ framework, adds finite volume\noperators and neutral gas models.\n\nThis is Hermes-2, a hot ion drift-reduced model.\n\nAuthor: Ben Dudson, University of York \u003cbenjamin.dudson@york.ac.uk\u003e\n\nReleased under the GPL license\n\n## License\n\nFull text of the license is in the file LICENSE. If you are using Hermes-2,\nplease cite the relevant papers.\n\n    Copyright B.Dudson, J.Leddy, University of York, September 2017-2019\n              email: benjamin.dudson@york.ac.uk\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see \u003chttp://www.gnu.org/licenses/\u003e.\n\n## Installing\n\nThis version works with the BOUT++ v4.4, currently the master branch.\nEither CMake or Autotools can be used to build it.\n\n### CMake\n\nThis is probably the most straightforward method to use now.  First\nconfigure BOUT++ and Hermes-2. To use the default options and minimal\ndependencies just run:\n\n    $ cmake . -B build\n\nAlternatively the CMake build can be customised: See the [BOUT++\ndocumentation](https://bout-dev.readthedocs.io/en/latest/user_docs/installing.html#cmake)\nfor examples of using `cmake` arguments, or edit the compile options\ninteractively before building:\n\n    $ ccmake . -B build\n\nDuring configuration\n[BOUT++](https://github.com/boutproject/BOUT-dev/) will be\nautomatically downloaded as a submodule, together with some\ndependencies (NetCDF and FFTW are assumed to be installed already,\nalong with optional dependencies like SUNDIALS and PETSc if they are\nrequested).  Once configured, run build to compile BOUT++ and then\nHermes-3:\n\n    $ cmake --build build\n\n### Autotools\n\nTo build and run tests with GNU autoconf and make, first install BOUT++:\n\n    git clone https://github.com/boutproject/BOUT-dev.git\n    cd BOUT-dev\n\nTo run this model, preconditioning is strongly recommended, and requires the CVODE solver, part of [SUNDIALS](http://computation.llnl.gov/projects/sundials).\nTested with version 2.6.0. To enable CVODE, BOUT++ should be configured using\n\n    ./configure --with-cvode\n\nor\n\n    ./configure --with-sundials\n\n(which then also enables the IDA solver). Compile BOUT++ with\n\n    make\n\nThen clone the Hermes-2 repository\n\n    git clone https://github.com/bendudson/hermes-2\n\n    cd hermes-2\n\n\nTo compile, run \"make\" and specify the location of BOUT++\n\n    make BOUT_TOP=/path/to/BOUT-next\n\nThis path should be the full path, not relative path, to avoid\nproblems with compilation in subdirectories.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbendudson%2Fhermes-2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbendudson%2Fhermes-2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbendudson%2Fhermes-2/lists"}