├── .gitignore ├── LICENSE ├── README.md ├── SourceFiles ├── FinGreen3D.f90 ├── FinGrnExtSubs.f90 ├── Makefile ├── Makefile_windows.bat └── TutorialProg.f90 └── TestExamples ├── Test01 ├── AuthorResults │ ├── GRN(1).txt │ ├── GRN(2).txt │ └── GRN(3).txt └── InputData.txt └── Test02 ├── AuthorResults ├── GRN(1).txt ├── GRN(2).txt └── GRN(3).txt └── InputData.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/README.md -------------------------------------------------------------------------------- /SourceFiles/FinGreen3D.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/SourceFiles/FinGreen3D.f90 -------------------------------------------------------------------------------- /SourceFiles/FinGrnExtSubs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/SourceFiles/FinGrnExtSubs.f90 -------------------------------------------------------------------------------- /SourceFiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/SourceFiles/Makefile -------------------------------------------------------------------------------- /SourceFiles/Makefile_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/SourceFiles/Makefile_windows.bat -------------------------------------------------------------------------------- /SourceFiles/TutorialProg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/SourceFiles/TutorialProg.f90 -------------------------------------------------------------------------------- /TestExamples/Test01/AuthorResults/GRN(1).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/TestExamples/Test01/AuthorResults/GRN(1).txt -------------------------------------------------------------------------------- /TestExamples/Test01/AuthorResults/GRN(2).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/TestExamples/Test01/AuthorResults/GRN(2).txt -------------------------------------------------------------------------------- /TestExamples/Test01/AuthorResults/GRN(3).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/TestExamples/Test01/AuthorResults/GRN(3).txt -------------------------------------------------------------------------------- /TestExamples/Test01/InputData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/TestExamples/Test01/InputData.txt -------------------------------------------------------------------------------- /TestExamples/Test02/AuthorResults/GRN(1).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/TestExamples/Test02/AuthorResults/GRN(1).txt -------------------------------------------------------------------------------- /TestExamples/Test02/AuthorResults/GRN(2).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/TestExamples/Test02/AuthorResults/GRN(2).txt -------------------------------------------------------------------------------- /TestExamples/Test02/AuthorResults/GRN(3).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/TestExamples/Test02/AuthorResults/GRN(3).txt -------------------------------------------------------------------------------- /TestExamples/Test02/InputData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingyiLiu/FinGreen3D/HEAD/TestExamples/Test02/InputData.txt --------------------------------------------------------------------------------