├── .gitignore ├── 2d ├── Makefile ├── Makefile_inc ├── common │ ├── .update │ ├── Makefile │ ├── boundary.f90 │ ├── convert.f90 │ ├── dac_header.f90 │ ├── flux_calc.f90 │ ├── getNewdt.f90 │ ├── lr_state.f90 │ └── mpi_setup.f90 ├── md_OTvortex │ ├── Makefile │ ├── batch.pro │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptydir │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── md_jet │ ├── Makefile │ ├── batch.pro │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptydir │ ├── getEta.f90 │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── md_kh │ ├── Makefile │ ├── batch.pro │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptydir │ ├── getEta.f90 │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── md_mrx │ ├── Makefile │ ├── batch.pro │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptydir │ ├── getEta.f90 │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 └── md_parker │ ├── Makefile │ ├── batch.pro │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ └── .emptlydir │ ├── getEta.f90 │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── 3d ├── Makefile ├── Makefile_inc ├── common │ ├── .update │ ├── Makefile │ ├── boundary.f90 │ ├── convert.f90 │ ├── dac_header.f90 │ ├── flux_calc.f90 │ ├── getNewdt.f90 │ ├── lr_state.f90 │ └── mpi_setup.f90 ├── md_OTvortex │ ├── Makefile │ ├── batch.pro │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptydir │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── md_gMRI │ ├── Makefile │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptydir │ ├── getEta.f90 │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── md_jet │ ├── Makefile │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptydir │ ├── getEta.f90 │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── md_jet_car │ ├── Makefile │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptydir │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── md_kh │ ├── Makefile │ ├── batch.pro │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptydir │ ├── getEta.f90 │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── md_mrx │ ├── Makefile │ ├── batch.pro │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptydir │ ├── getEta.f90 │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── md_parker │ ├── Makefile │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ │ └── .emptlydir │ ├── getEta.f90 │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 └── md_shktb │ ├── Makefile │ ├── batch.pro │ ├── bnd.f90 │ ├── const.f90 │ ├── data │ └── .emptydir │ ├── init.f90 │ ├── integrate.f90 │ ├── main.f90 │ ├── model.f90 │ └── openfile.f90 ├── README.md ├── idl ├── cyl2cart.pro ├── dac_read.pro ├── fft2d.pro ├── fftf.pro ├── field_lines_2d.pro ├── init.pro └── poisson_bp.pro ├── notebook ├── IDL_hands-on.ipynb ├── matplotlib_hands-on.ipynb ├── sample.dat └── sample_ro-time.dat └── python └── dac_read.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/.gitignore -------------------------------------------------------------------------------- /2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/Makefile -------------------------------------------------------------------------------- /2d/Makefile_inc: -------------------------------------------------------------------------------- 1 | FC = mpif90 2 | FFLAGS = -O2 3 | -------------------------------------------------------------------------------- /2d/common/.update: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2d/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/common/Makefile -------------------------------------------------------------------------------- /2d/common/boundary.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/common/boundary.f90 -------------------------------------------------------------------------------- /2d/common/convert.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/common/convert.f90 -------------------------------------------------------------------------------- /2d/common/dac_header.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/common/dac_header.f90 -------------------------------------------------------------------------------- /2d/common/flux_calc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/common/flux_calc.f90 -------------------------------------------------------------------------------- /2d/common/getNewdt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/common/getNewdt.f90 -------------------------------------------------------------------------------- /2d/common/lr_state.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/common/lr_state.f90 -------------------------------------------------------------------------------- /2d/common/mpi_setup.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/common/mpi_setup.f90 -------------------------------------------------------------------------------- /2d/md_OTvortex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_OTvortex/Makefile -------------------------------------------------------------------------------- /2d/md_OTvortex/batch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_OTvortex/batch.pro -------------------------------------------------------------------------------- /2d/md_OTvortex/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_OTvortex/bnd.f90 -------------------------------------------------------------------------------- /2d/md_OTvortex/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_OTvortex/const.f90 -------------------------------------------------------------------------------- /2d/md_OTvortex/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2d/md_OTvortex/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_OTvortex/init.f90 -------------------------------------------------------------------------------- /2d/md_OTvortex/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_OTvortex/integrate.f90 -------------------------------------------------------------------------------- /2d/md_OTvortex/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_OTvortex/main.f90 -------------------------------------------------------------------------------- /2d/md_OTvortex/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_OTvortex/model.f90 -------------------------------------------------------------------------------- /2d/md_OTvortex/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_OTvortex/openfile.f90 -------------------------------------------------------------------------------- /2d/md_jet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_jet/Makefile -------------------------------------------------------------------------------- /2d/md_jet/batch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_jet/batch.pro -------------------------------------------------------------------------------- /2d/md_jet/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_jet/bnd.f90 -------------------------------------------------------------------------------- /2d/md_jet/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_jet/const.f90 -------------------------------------------------------------------------------- /2d/md_jet/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2d/md_jet/getEta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_jet/getEta.f90 -------------------------------------------------------------------------------- /2d/md_jet/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_jet/init.f90 -------------------------------------------------------------------------------- /2d/md_jet/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_jet/integrate.f90 -------------------------------------------------------------------------------- /2d/md_jet/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_jet/main.f90 -------------------------------------------------------------------------------- /2d/md_jet/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_jet/model.f90 -------------------------------------------------------------------------------- /2d/md_jet/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_jet/openfile.f90 -------------------------------------------------------------------------------- /2d/md_kh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_kh/Makefile -------------------------------------------------------------------------------- /2d/md_kh/batch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_kh/batch.pro -------------------------------------------------------------------------------- /2d/md_kh/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_kh/bnd.f90 -------------------------------------------------------------------------------- /2d/md_kh/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_kh/const.f90 -------------------------------------------------------------------------------- /2d/md_kh/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2d/md_kh/getEta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_kh/getEta.f90 -------------------------------------------------------------------------------- /2d/md_kh/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_kh/init.f90 -------------------------------------------------------------------------------- /2d/md_kh/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_kh/integrate.f90 -------------------------------------------------------------------------------- /2d/md_kh/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_kh/main.f90 -------------------------------------------------------------------------------- /2d/md_kh/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_kh/model.f90 -------------------------------------------------------------------------------- /2d/md_kh/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_kh/openfile.f90 -------------------------------------------------------------------------------- /2d/md_mrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_mrx/Makefile -------------------------------------------------------------------------------- /2d/md_mrx/batch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_mrx/batch.pro -------------------------------------------------------------------------------- /2d/md_mrx/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_mrx/bnd.f90 -------------------------------------------------------------------------------- /2d/md_mrx/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_mrx/const.f90 -------------------------------------------------------------------------------- /2d/md_mrx/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2d/md_mrx/getEta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_mrx/getEta.f90 -------------------------------------------------------------------------------- /2d/md_mrx/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_mrx/init.f90 -------------------------------------------------------------------------------- /2d/md_mrx/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_mrx/integrate.f90 -------------------------------------------------------------------------------- /2d/md_mrx/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_mrx/main.f90 -------------------------------------------------------------------------------- /2d/md_mrx/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_mrx/model.f90 -------------------------------------------------------------------------------- /2d/md_mrx/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_mrx/openfile.f90 -------------------------------------------------------------------------------- /2d/md_parker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_parker/Makefile -------------------------------------------------------------------------------- /2d/md_parker/batch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_parker/batch.pro -------------------------------------------------------------------------------- /2d/md_parker/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_parker/bnd.f90 -------------------------------------------------------------------------------- /2d/md_parker/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_parker/const.f90 -------------------------------------------------------------------------------- /2d/md_parker/data/.emptlydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2d/md_parker/getEta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_parker/getEta.f90 -------------------------------------------------------------------------------- /2d/md_parker/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_parker/init.f90 -------------------------------------------------------------------------------- /2d/md_parker/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_parker/integrate.f90 -------------------------------------------------------------------------------- /2d/md_parker/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_parker/main.f90 -------------------------------------------------------------------------------- /2d/md_parker/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_parker/model.f90 -------------------------------------------------------------------------------- /2d/md_parker/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/2d/md_parker/openfile.f90 -------------------------------------------------------------------------------- /3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/Makefile -------------------------------------------------------------------------------- /3d/Makefile_inc: -------------------------------------------------------------------------------- 1 | FC = mpif90 2 | FFLAGS = -O2 3 | -------------------------------------------------------------------------------- /3d/common/.update: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/common/Makefile -------------------------------------------------------------------------------- /3d/common/boundary.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/common/boundary.f90 -------------------------------------------------------------------------------- /3d/common/convert.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/common/convert.f90 -------------------------------------------------------------------------------- /3d/common/dac_header.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/common/dac_header.f90 -------------------------------------------------------------------------------- /3d/common/flux_calc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/common/flux_calc.f90 -------------------------------------------------------------------------------- /3d/common/getNewdt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/common/getNewdt.f90 -------------------------------------------------------------------------------- /3d/common/lr_state.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/common/lr_state.f90 -------------------------------------------------------------------------------- /3d/common/mpi_setup.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/common/mpi_setup.f90 -------------------------------------------------------------------------------- /3d/md_OTvortex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_OTvortex/Makefile -------------------------------------------------------------------------------- /3d/md_OTvortex/batch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_OTvortex/batch.pro -------------------------------------------------------------------------------- /3d/md_OTvortex/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_OTvortex/bnd.f90 -------------------------------------------------------------------------------- /3d/md_OTvortex/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_OTvortex/const.f90 -------------------------------------------------------------------------------- /3d/md_OTvortex/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d/md_OTvortex/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_OTvortex/init.f90 -------------------------------------------------------------------------------- /3d/md_OTvortex/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_OTvortex/integrate.f90 -------------------------------------------------------------------------------- /3d/md_OTvortex/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_OTvortex/main.f90 -------------------------------------------------------------------------------- /3d/md_OTvortex/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_OTvortex/model.f90 -------------------------------------------------------------------------------- /3d/md_OTvortex/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_OTvortex/openfile.f90 -------------------------------------------------------------------------------- /3d/md_gMRI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_gMRI/Makefile -------------------------------------------------------------------------------- /3d/md_gMRI/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_gMRI/bnd.f90 -------------------------------------------------------------------------------- /3d/md_gMRI/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_gMRI/const.f90 -------------------------------------------------------------------------------- /3d/md_gMRI/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d/md_gMRI/getEta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_gMRI/getEta.f90 -------------------------------------------------------------------------------- /3d/md_gMRI/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_gMRI/init.f90 -------------------------------------------------------------------------------- /3d/md_gMRI/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_gMRI/integrate.f90 -------------------------------------------------------------------------------- /3d/md_gMRI/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_gMRI/main.f90 -------------------------------------------------------------------------------- /3d/md_gMRI/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_gMRI/model.f90 -------------------------------------------------------------------------------- /3d/md_gMRI/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_gMRI/openfile.f90 -------------------------------------------------------------------------------- /3d/md_jet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet/Makefile -------------------------------------------------------------------------------- /3d/md_jet/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet/bnd.f90 -------------------------------------------------------------------------------- /3d/md_jet/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet/const.f90 -------------------------------------------------------------------------------- /3d/md_jet/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d/md_jet/getEta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet/getEta.f90 -------------------------------------------------------------------------------- /3d/md_jet/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet/init.f90 -------------------------------------------------------------------------------- /3d/md_jet/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet/integrate.f90 -------------------------------------------------------------------------------- /3d/md_jet/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet/main.f90 -------------------------------------------------------------------------------- /3d/md_jet/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet/model.f90 -------------------------------------------------------------------------------- /3d/md_jet/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet/openfile.f90 -------------------------------------------------------------------------------- /3d/md_jet_car/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet_car/Makefile -------------------------------------------------------------------------------- /3d/md_jet_car/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet_car/bnd.f90 -------------------------------------------------------------------------------- /3d/md_jet_car/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet_car/const.f90 -------------------------------------------------------------------------------- /3d/md_jet_car/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d/md_jet_car/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet_car/init.f90 -------------------------------------------------------------------------------- /3d/md_jet_car/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet_car/integrate.f90 -------------------------------------------------------------------------------- /3d/md_jet_car/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet_car/main.f90 -------------------------------------------------------------------------------- /3d/md_jet_car/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet_car/model.f90 -------------------------------------------------------------------------------- /3d/md_jet_car/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_jet_car/openfile.f90 -------------------------------------------------------------------------------- /3d/md_kh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_kh/Makefile -------------------------------------------------------------------------------- /3d/md_kh/batch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_kh/batch.pro -------------------------------------------------------------------------------- /3d/md_kh/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_kh/bnd.f90 -------------------------------------------------------------------------------- /3d/md_kh/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_kh/const.f90 -------------------------------------------------------------------------------- /3d/md_kh/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d/md_kh/getEta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_kh/getEta.f90 -------------------------------------------------------------------------------- /3d/md_kh/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_kh/init.f90 -------------------------------------------------------------------------------- /3d/md_kh/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_kh/integrate.f90 -------------------------------------------------------------------------------- /3d/md_kh/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_kh/main.f90 -------------------------------------------------------------------------------- /3d/md_kh/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_kh/model.f90 -------------------------------------------------------------------------------- /3d/md_kh/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_kh/openfile.f90 -------------------------------------------------------------------------------- /3d/md_mrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_mrx/Makefile -------------------------------------------------------------------------------- /3d/md_mrx/batch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_mrx/batch.pro -------------------------------------------------------------------------------- /3d/md_mrx/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_mrx/bnd.f90 -------------------------------------------------------------------------------- /3d/md_mrx/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_mrx/const.f90 -------------------------------------------------------------------------------- /3d/md_mrx/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d/md_mrx/getEta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_mrx/getEta.f90 -------------------------------------------------------------------------------- /3d/md_mrx/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_mrx/init.f90 -------------------------------------------------------------------------------- /3d/md_mrx/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_mrx/integrate.f90 -------------------------------------------------------------------------------- /3d/md_mrx/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_mrx/main.f90 -------------------------------------------------------------------------------- /3d/md_mrx/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_mrx/model.f90 -------------------------------------------------------------------------------- /3d/md_mrx/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_mrx/openfile.f90 -------------------------------------------------------------------------------- /3d/md_parker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_parker/Makefile -------------------------------------------------------------------------------- /3d/md_parker/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_parker/bnd.f90 -------------------------------------------------------------------------------- /3d/md_parker/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_parker/const.f90 -------------------------------------------------------------------------------- /3d/md_parker/data/.emptlydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d/md_parker/getEta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_parker/getEta.f90 -------------------------------------------------------------------------------- /3d/md_parker/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_parker/init.f90 -------------------------------------------------------------------------------- /3d/md_parker/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_parker/integrate.f90 -------------------------------------------------------------------------------- /3d/md_parker/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_parker/main.f90 -------------------------------------------------------------------------------- /3d/md_parker/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_parker/model.f90 -------------------------------------------------------------------------------- /3d/md_parker/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_parker/openfile.f90 -------------------------------------------------------------------------------- /3d/md_shktb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_shktb/Makefile -------------------------------------------------------------------------------- /3d/md_shktb/batch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_shktb/batch.pro -------------------------------------------------------------------------------- /3d/md_shktb/bnd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_shktb/bnd.f90 -------------------------------------------------------------------------------- /3d/md_shktb/const.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_shktb/const.f90 -------------------------------------------------------------------------------- /3d/md_shktb/data/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d/md_shktb/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_shktb/init.f90 -------------------------------------------------------------------------------- /3d/md_shktb/integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_shktb/integrate.f90 -------------------------------------------------------------------------------- /3d/md_shktb/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_shktb/main.f90 -------------------------------------------------------------------------------- /3d/md_shktb/model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_shktb/model.f90 -------------------------------------------------------------------------------- /3d/md_shktb/openfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/3d/md_shktb/openfile.f90 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/README.md -------------------------------------------------------------------------------- /idl/cyl2cart.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/idl/cyl2cart.pro -------------------------------------------------------------------------------- /idl/dac_read.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/idl/dac_read.pro -------------------------------------------------------------------------------- /idl/fft2d.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/idl/fft2d.pro -------------------------------------------------------------------------------- /idl/fftf.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/idl/fftf.pro -------------------------------------------------------------------------------- /idl/field_lines_2d.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/idl/field_lines_2d.pro -------------------------------------------------------------------------------- /idl/init.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/idl/init.pro -------------------------------------------------------------------------------- /idl/poisson_bp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/idl/poisson_bp.pro -------------------------------------------------------------------------------- /notebook/IDL_hands-on.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/notebook/IDL_hands-on.ipynb -------------------------------------------------------------------------------- /notebook/matplotlib_hands-on.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/notebook/matplotlib_hands-on.ipynb -------------------------------------------------------------------------------- /notebook/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/notebook/sample.dat -------------------------------------------------------------------------------- /notebook/sample_ro-time.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/notebook/sample_ro-time.dat -------------------------------------------------------------------------------- /python/dac_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiba-aplab/cansplus/HEAD/python/dac_read.py --------------------------------------------------------------------------------