├── .gitignore ├── CHANGELOG.md ├── CHECKLIST_FOR_UPDATE.md ├── LICENSE ├── README.md ├── fpm.toml ├── nist.py ├── src ├── CODATA_2010_constants.f90 ├── CODATA_2014_constants.f90 ├── CODATA_2018_constants.f90 ├── CODATA_2022_constants.f90 ├── CODATA_constants.f90 ├── CODATA_latest_constants.f90 ├── fortran_generated_2010.txt ├── fortran_generated_2014.txt ├── fortran_generated_2018.txt └── fortran_generated_2022.txt └── test ├── functions.f90 ├── main.f90 └── test.f90 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHECKLIST_FOR_UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/CHECKLIST_FOR_UPDATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/README.md -------------------------------------------------------------------------------- /fpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/fpm.toml -------------------------------------------------------------------------------- /nist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/nist.py -------------------------------------------------------------------------------- /src/CODATA_2010_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/src/CODATA_2010_constants.f90 -------------------------------------------------------------------------------- /src/CODATA_2014_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/src/CODATA_2014_constants.f90 -------------------------------------------------------------------------------- /src/CODATA_2018_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/src/CODATA_2018_constants.f90 -------------------------------------------------------------------------------- /src/CODATA_2022_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/src/CODATA_2022_constants.f90 -------------------------------------------------------------------------------- /src/CODATA_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/src/CODATA_constants.f90 -------------------------------------------------------------------------------- /src/CODATA_latest_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/src/CODATA_latest_constants.f90 -------------------------------------------------------------------------------- /src/fortran_generated_2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/src/fortran_generated_2010.txt -------------------------------------------------------------------------------- /src/fortran_generated_2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/src/fortran_generated_2014.txt -------------------------------------------------------------------------------- /src/fortran_generated_2018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/src/fortran_generated_2018.txt -------------------------------------------------------------------------------- /src/fortran_generated_2022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/src/fortran_generated_2022.txt -------------------------------------------------------------------------------- /test/functions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/test/functions.f90 -------------------------------------------------------------------------------- /test/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/test/main.f90 -------------------------------------------------------------------------------- /test/test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmagnin/fundamental_constants/HEAD/test/test.f90 --------------------------------------------------------------------------------