├── .gitignore ├── DZ_bug.png ├── Makefile ├── README.md ├── all_grids.f90 ├── boundaries.f90 ├── comcot.ctl ├── comcot.f90 ├── deform.f90 ├── dispersion.f90 ├── fault_multi.ctl ├── hotstart.f90 ├── initialization.f90 ├── landslide.ctl ├── landslide.f90 ├── mass.f90 ├── moment.f90 ├── output.f90 ├── ts_location.dat ├── ts_name.dat ├── type_module.f90 └── wavemaker.f90 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/.gitignore -------------------------------------------------------------------------------- /DZ_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/DZ_bug.png -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/README.md -------------------------------------------------------------------------------- /all_grids.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/all_grids.f90 -------------------------------------------------------------------------------- /boundaries.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/boundaries.f90 -------------------------------------------------------------------------------- /comcot.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/comcot.ctl -------------------------------------------------------------------------------- /comcot.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/comcot.f90 -------------------------------------------------------------------------------- /deform.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/deform.f90 -------------------------------------------------------------------------------- /dispersion.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/dispersion.f90 -------------------------------------------------------------------------------- /fault_multi.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/fault_multi.ctl -------------------------------------------------------------------------------- /hotstart.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/hotstart.f90 -------------------------------------------------------------------------------- /initialization.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/initialization.f90 -------------------------------------------------------------------------------- /landslide.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/landslide.ctl -------------------------------------------------------------------------------- /landslide.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/landslide.f90 -------------------------------------------------------------------------------- /mass.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/mass.f90 -------------------------------------------------------------------------------- /moment.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/moment.f90 -------------------------------------------------------------------------------- /output.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/output.f90 -------------------------------------------------------------------------------- /ts_location.dat: -------------------------------------------------------------------------------- 1 | 142.041659 39.371422 2 | -------------------------------------------------------------------------------- /ts_name.dat: -------------------------------------------------------------------------------- 1 | Iwate_Ken 2 | -------------------------------------------------------------------------------- /type_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/type_module.f90 -------------------------------------------------------------------------------- /wavemaker.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndybnACT/comcot-gfortran/HEAD/wavemaker.f90 --------------------------------------------------------------------------------