├── .gitignore ├── COPYING ├── Makefile ├── README ├── common.inc ├── doc ├── Makefile ├── common.tex ├── depend.inc ├── doit ├── equations │ ├── xrtm_adding.tex │ ├── xrtm_brdf_kernels.tex │ ├── xrtm_common.tex │ ├── xrtm_delta_m_scaling.tex │ ├── xrtm_discrete_ordinate_method.tex │ ├── xrtm_doubling.tex │ ├── xrtm_eigen_problem.tex │ ├── xrtm_four_stream.tex │ ├── xrtm_global_r_and_t.tex │ ├── xrtm_local_r_and_t.tex │ ├── xrtm_matrix_exponential_method.tex │ ├── xrtm_pade_approximation.tex │ ├── xrtm_phase_matrices.tex │ ├── xrtm_radiance.tex │ ├── xrtm_single_scattering.tex │ ├── xrtm_six_stream.tex │ ├── xrtm_solar_source.tex │ ├── xrtm_sos.tex │ ├── xrtm_source_function_integration.tex │ ├── xrtm_thermal_source.tex │ ├── xrtm_two_os.tex │ └── xrtm_two_stream.tex ├── fdl.tex ├── index.html ├── notes.txt ├── refs.html ├── sec1.html ├── sec2.html ├── sec3.html ├── sec4.html ├── style.css ├── xrtm.bib ├── xrtm.pdf ├── xrtm.tex └── xrtm_equations.tex ├── examples ├── 2_250000_miam00.gc ├── 2_250000_rayleigh.gc ├── Makefile ├── calllmie.txt ├── callxrtm.out ├── callxrtm.txt ├── depend.inc ├── doit_example_idl.pro ├── doit_example_py ├── example.xif ├── example_brdf_c.c ├── example_brdf_c.out ├── example_c.c ├── example_cpp.cpp ├── example_cxx.out ├── example_f77.f ├── example_f90.f90 ├── example_fxx.out ├── example_idl.out ├── example_idl.pro ├── example_jl.jl ├── example_m.m └── example_py.py ├── interfaces ├── Makefile ├── XRTM.jl ├── depend.inc ├── write_int_def.c ├── xrtm_fd_int_cpp.cpp ├── xrtm_fd_int_cpp.h ├── xrtm_fd_int_defs.def ├── xrtm_fd_int_f77.f ├── xrtm_fd_int_f77.inc ├── xrtm_fd_int_f77_util.c ├── xrtm_fd_int_f90.f90 ├── xrtm_fd_int_f90_util.c ├── xrtm_fd_interface.def ├── xrtm_int_cpp.cpp ├── xrtm_int_cpp.h ├── xrtm_int_defs.def ├── xrtm_int_f77.f ├── xrtm_int_f77.inc ├── xrtm_int_f77_util.c ├── xrtm_int_f90.f90 ├── xrtm_int_f90_util.c ├── xrtm_int_idl.c ├── xrtm_int_idl.dlm ├── xrtm_int_jl_util.c ├── xrtm_int_py.c └── xrtm_interface.def ├── make.inc.example ├── misc ├── Makefile ├── README ├── depend.inc ├── galloc.h ├── gindex_name_value.c ├── gindex_name_value.h ├── glist.c ├── glist.h ├── gmath.h ├── gmath_mat2d3d.c ├── gmath_matrix.c ├── gmath_matrix.h ├── gmath_vector.c ├── gmatrix.h ├── gstruct.c ├── gstruct.h ├── gstruct_aatree.h ├── gstruct_dclist.h ├── gutil.h ├── gutil_alloc.c ├── gutil_cmp.c ├── gutil_error.c ├── gutil_parse.c ├── gutil_sort.c ├── gutil_string.c ├── gvector.h ├── rtutil_math.c ├── rtutil_math.h ├── rtutil_scat_fft.c ├── rtutil_scat_fft.h ├── rtutil_scat_io.c ├── rtutil_scat_io.h ├── rtutil_size_dist.c ├── rtutil_size_dist.h ├── rtutil_support.c ├── rtutil_support.h ├── zeroin.c └── zeroin.h ├── readme_source.txt ├── src ├── Makefile ├── dasymtx.f ├── depend.inc ├── pade_table.h ├── pade_table_l.h ├── pentdag.f ├── prototypes │ ├── xrtm_adding_a_p.h │ ├── xrtm_adding_p.h │ ├── xrtm_brdf_a_p.h │ ├── xrtm_brdf_p.h │ ├── xrtm_derivs_p.h │ ├── xrtm_doub_rts_p.h │ ├── xrtm_doubling_p.h │ ├── xrtm_eig_bvp_a_p.h │ ├── xrtm_eig_bvp_p.h │ ├── xrtm_eig_rts_a_p.h │ ├── xrtm_eig_rts_p.h │ ├── xrtm_eig_util_a_p.h │ ├── xrtm_eig_util_p.h │ ├── xrtm_external_p.h │ ├── xrtm_fd_interface_p.h │ ├── xrtm_four_stream_p.h │ ├── xrtm_interface_p.h │ ├── xrtm_matrix_p.h │ ├── xrtm_mem_bvp_p.h │ ├── xrtm_model_a_p.h │ ├── xrtm_model_p.h │ ├── xrtm_pade_rts_p.h │ ├── xrtm_radiance_a_p.h │ ├── xrtm_radiance_p.h │ ├── xrtm_save_tree_p.h │ ├── xrtm_scatter_a_p.h │ ├── xrtm_scatter_p.h │ ├── xrtm_sfi_p.h │ ├── xrtm_single_a_p.h │ ├── xrtm_single_p.h │ ├── xrtm_six_stream_p.h │ ├── xrtm_sos_p.h │ ├── xrtm_source_a_p.h │ ├── xrtm_source_p.h │ ├── xrtm_stacks_p.h │ ├── xrtm_support_p.h │ ├── xrtm_two_os_p.h │ ├── xrtm_two_stream_p.h │ ├── xrtm_utility_a_p.h │ ├── xrtm_utility_p.h │ └── xrtm_work_p.h ├── rdi1mach.f ├── scratch.txt ├── sfi_block.h ├── type_set.h ├── type_unset.h ├── version.h ├── xrtm.h ├── xrtm_adding.c ├── xrtm_adding.h ├── xrtm_adding_a.c ├── xrtm_adding_a.h ├── xrtm_brdf.c ├── xrtm_brdf.h ├── xrtm_brdf_a.c ├── xrtm_brdf_a.h ├── xrtm_derivs.c ├── xrtm_derivs.h ├── xrtm_doub_rts.c ├── xrtm_doub_rts.h ├── xrtm_doubling.c ├── xrtm_doubling.h ├── xrtm_eig_bvp.c ├── xrtm_eig_bvp.h ├── xrtm_eig_bvp_a.c ├── xrtm_eig_bvp_a.h ├── xrtm_eig_bvp_x.c ├── xrtm_eig_bvp_x_a.c ├── xrtm_eig_rts.c ├── xrtm_eig_rts.h ├── xrtm_eig_rts_a.c ├── xrtm_eig_rts_a.h ├── xrtm_eig_rts_x.c ├── xrtm_eig_rts_x_a.c ├── xrtm_eig_util.c ├── xrtm_eig_util.h ├── xrtm_eig_util_a.c ├── xrtm_eig_util_a.h ├── xrtm_external.c ├── xrtm_external.h ├── xrtm_fd_interface.c ├── xrtm_fd_interface.h ├── xrtm_four_stream.c ├── xrtm_four_stream.h ├── xrtm_interface.c ├── xrtm_interface.h ├── xrtm_matrix.c ├── xrtm_matrix.h ├── xrtm_mem_bvp.c ├── xrtm_mem_bvp.h ├── xrtm_mem_bvp_x.c ├── xrtm_model.c ├── xrtm_model.h ├── xrtm_model_a.c ├── xrtm_model_a.h ├── xrtm_pade_rts.c ├── xrtm_pade_rts.h ├── xrtm_radiance.c ├── xrtm_radiance.h ├── xrtm_radiance_a.c ├── xrtm_radiance_a.h ├── xrtm_save_tree.c ├── xrtm_save_tree.h ├── xrtm_scatter.c ├── xrtm_scatter.h ├── xrtm_scatter_a.c ├── xrtm_scatter_a.h ├── xrtm_sfi.c ├── xrtm_sfi.h ├── xrtm_sfi_x.c ├── xrtm_single.c ├── xrtm_single.h ├── xrtm_single_a.c ├── xrtm_single_a.h ├── xrtm_six_stream.c ├── xrtm_six_stream.h ├── xrtm_sos.c ├── xrtm_sos.h ├── xrtm_source.c ├── xrtm_source.h ├── xrtm_source_a.c ├── xrtm_source_a.h ├── xrtm_source_x.c ├── xrtm_stacks.c ├── xrtm_stacks.h ├── xrtm_support.c ├── xrtm_support.h ├── xrtm_two_os.c ├── xrtm_two_os.h ├── xrtm_two_stream.c ├── xrtm_two_stream.h ├── xrtm_utility.c ├── xrtm_utility.h ├── xrtm_utility_a.c ├── xrtm_utility_a.h ├── xrtm_work.c └── xrtm_work.h ├── src2 ├── dgeev2.f ├── dgetrs2.f ├── dsyev2.f ├── dtrsm2.f ├── ext_2stream.f90 ├── ext_lidort.f ├── ext_lidort2.f90 ├── ext_lrad.f90 ├── ext_polrad.f ├── ext_radiant.f90 ├── ext_soi.f90 ├── ext_vlidort-2.3.f ├── ext_vlidort-2.4.f ├── ext_vlidort-2.4RT.f ├── ext_vlidort.f ├── layer_double_cuda.c ├── rs2.f ├── xrtm2.h ├── xrtm_adding2.c ├── xrtm_adding_a2.c ├── xrtm_doub_rts2.c ├── xrtm_doubling2.c ├── xrtm_eig_bvp_a2.c ├── xrtm_eig_bvp_x_a2.c ├── xrtm_eig_rts_a2.c ├── xrtm_eig_rts_x_a2.c ├── xrtm_eig_util2.c ├── xrtm_eig_util2.h ├── xrtm_eig_util_a2.c ├── xrtm_external2.c ├── xrtm_interface2.c ├── xrtm_interface2.h ├── xrtm_matrix2.c ├── xrtm_model2.c ├── xrtm_model_a2.c ├── xrtm_pade_rts2.c ├── xrtm_radiance2.c ├── xrtm_radiance_a2.c ├── xrtm_scatter2.c ├── xrtm_scatter_a2.c ├── xrtm_single_a2.c ├── xrtm_source_a2.c ├── xrtm_support2.c ├── xrtm_support2.h └── xrtm_utility_a2.c ├── utils ├── Makefile ├── callxrtm.c ├── depend.inc ├── input_local.h ├── input_util.c ├── input_util.h ├── input_yylex.c ├── input_yylex.h ├── input_yylex.l ├── parse_data.h ├── prototypes │ ├── test_core_p.h │ ├── test_execute_p.h │ ├── test_loop_p.h │ ├── test_result_p.h │ ├── test_util_p.h │ ├── test_write_p.h │ └── test_xrtm_p.h ├── test.h ├── test_core.c ├── test_core.h ├── test_execute.c ├── test_execute.h ├── test_loop.c ├── test_loop.h ├── test_macros.h ├── test_result.c ├── test_result.h ├── test_util.c ├── test_util.h ├── test_write.c ├── test_write.h ├── test_xrtm.c ├── test_xrtm.h └── testxrtm.c └── utils2 └── test2.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/README -------------------------------------------------------------------------------- /common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/common.inc -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/common.tex -------------------------------------------------------------------------------- /doc/depend.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/doit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/doit -------------------------------------------------------------------------------- /doc/equations/xrtm_adding.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_adding.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_brdf_kernels.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_brdf_kernels.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_common.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_delta_m_scaling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_delta_m_scaling.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_discrete_ordinate_method.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_discrete_ordinate_method.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_doubling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_doubling.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_eigen_problem.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_eigen_problem.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_four_stream.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_four_stream.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_global_r_and_t.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_global_r_and_t.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_local_r_and_t.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_local_r_and_t.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_matrix_exponential_method.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_matrix_exponential_method.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_pade_approximation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_pade_approximation.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_phase_matrices.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_phase_matrices.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_radiance.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_radiance.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_single_scattering.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_single_scattering.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_six_stream.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_six_stream.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_solar_source.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_solar_source.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_sos.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_sos.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_source_function_integration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_source_function_integration.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_thermal_source.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_thermal_source.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_two_os.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_two_os.tex -------------------------------------------------------------------------------- /doc/equations/xrtm_two_stream.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/equations/xrtm_two_stream.tex -------------------------------------------------------------------------------- /doc/fdl.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/fdl.tex -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/notes.txt -------------------------------------------------------------------------------- /doc/refs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/refs.html -------------------------------------------------------------------------------- /doc/sec1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/sec1.html -------------------------------------------------------------------------------- /doc/sec2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/sec2.html -------------------------------------------------------------------------------- /doc/sec3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/sec3.html -------------------------------------------------------------------------------- /doc/sec4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/sec4.html -------------------------------------------------------------------------------- /doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/style.css -------------------------------------------------------------------------------- /doc/xrtm.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/xrtm.bib -------------------------------------------------------------------------------- /doc/xrtm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/xrtm.pdf -------------------------------------------------------------------------------- /doc/xrtm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/xrtm.tex -------------------------------------------------------------------------------- /doc/xrtm_equations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/doc/xrtm_equations.tex -------------------------------------------------------------------------------- /examples/2_250000_miam00.gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/2_250000_miam00.gc -------------------------------------------------------------------------------- /examples/2_250000_rayleigh.gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/2_250000_rayleigh.gc -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/calllmie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/calllmie.txt -------------------------------------------------------------------------------- /examples/callxrtm.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/callxrtm.out -------------------------------------------------------------------------------- /examples/callxrtm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/callxrtm.txt -------------------------------------------------------------------------------- /examples/depend.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/depend.inc -------------------------------------------------------------------------------- /examples/doit_example_idl.pro: -------------------------------------------------------------------------------- 1 | example_idl 2 | 3 | exit 4 | -------------------------------------------------------------------------------- /examples/doit_example_py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/doit_example_py -------------------------------------------------------------------------------- /examples/example.xif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example.xif -------------------------------------------------------------------------------- /examples/example_brdf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_brdf_c.c -------------------------------------------------------------------------------- /examples/example_brdf_c.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_brdf_c.out -------------------------------------------------------------------------------- /examples/example_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_c.c -------------------------------------------------------------------------------- /examples/example_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_cpp.cpp -------------------------------------------------------------------------------- /examples/example_cxx.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_cxx.out -------------------------------------------------------------------------------- /examples/example_f77.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_f77.f -------------------------------------------------------------------------------- /examples/example_f90.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_f90.f90 -------------------------------------------------------------------------------- /examples/example_fxx.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_fxx.out -------------------------------------------------------------------------------- /examples/example_idl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_idl.out -------------------------------------------------------------------------------- /examples/example_idl.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_idl.pro -------------------------------------------------------------------------------- /examples/example_jl.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_jl.jl -------------------------------------------------------------------------------- /examples/example_m.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_m.m -------------------------------------------------------------------------------- /examples/example_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/examples/example_py.py -------------------------------------------------------------------------------- /interfaces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/Makefile -------------------------------------------------------------------------------- /interfaces/XRTM.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/XRTM.jl -------------------------------------------------------------------------------- /interfaces/depend.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/depend.inc -------------------------------------------------------------------------------- /interfaces/write_int_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/write_int_def.c -------------------------------------------------------------------------------- /interfaces/xrtm_fd_int_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_fd_int_cpp.cpp -------------------------------------------------------------------------------- /interfaces/xrtm_fd_int_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_fd_int_cpp.h -------------------------------------------------------------------------------- /interfaces/xrtm_fd_int_defs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_fd_int_defs.def -------------------------------------------------------------------------------- /interfaces/xrtm_fd_int_f77.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_fd_int_f77.f -------------------------------------------------------------------------------- /interfaces/xrtm_fd_int_f77.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_fd_int_f77.inc -------------------------------------------------------------------------------- /interfaces/xrtm_fd_int_f77_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_fd_int_f77_util.c -------------------------------------------------------------------------------- /interfaces/xrtm_fd_int_f90.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_fd_int_f90.f90 -------------------------------------------------------------------------------- /interfaces/xrtm_fd_int_f90_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_fd_int_f90_util.c -------------------------------------------------------------------------------- /interfaces/xrtm_fd_interface.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_fd_interface.def -------------------------------------------------------------------------------- /interfaces/xrtm_int_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_cpp.cpp -------------------------------------------------------------------------------- /interfaces/xrtm_int_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_cpp.h -------------------------------------------------------------------------------- /interfaces/xrtm_int_defs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_defs.def -------------------------------------------------------------------------------- /interfaces/xrtm_int_f77.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_f77.f -------------------------------------------------------------------------------- /interfaces/xrtm_int_f77.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_f77.inc -------------------------------------------------------------------------------- /interfaces/xrtm_int_f77_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_f77_util.c -------------------------------------------------------------------------------- /interfaces/xrtm_int_f90.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_f90.f90 -------------------------------------------------------------------------------- /interfaces/xrtm_int_f90_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_f90_util.c -------------------------------------------------------------------------------- /interfaces/xrtm_int_idl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_idl.c -------------------------------------------------------------------------------- /interfaces/xrtm_int_idl.dlm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_idl.dlm -------------------------------------------------------------------------------- /interfaces/xrtm_int_jl_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_jl_util.c -------------------------------------------------------------------------------- /interfaces/xrtm_int_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_int_py.c -------------------------------------------------------------------------------- /interfaces/xrtm_interface.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/interfaces/xrtm_interface.def -------------------------------------------------------------------------------- /make.inc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/make.inc.example -------------------------------------------------------------------------------- /misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/Makefile -------------------------------------------------------------------------------- /misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/README -------------------------------------------------------------------------------- /misc/depend.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/depend.inc -------------------------------------------------------------------------------- /misc/galloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/galloc.h -------------------------------------------------------------------------------- /misc/gindex_name_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gindex_name_value.c -------------------------------------------------------------------------------- /misc/gindex_name_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gindex_name_value.h -------------------------------------------------------------------------------- /misc/glist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/glist.c -------------------------------------------------------------------------------- /misc/glist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/glist.h -------------------------------------------------------------------------------- /misc/gmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gmath.h -------------------------------------------------------------------------------- /misc/gmath_mat2d3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gmath_mat2d3d.c -------------------------------------------------------------------------------- /misc/gmath_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gmath_matrix.c -------------------------------------------------------------------------------- /misc/gmath_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gmath_matrix.h -------------------------------------------------------------------------------- /misc/gmath_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gmath_vector.c -------------------------------------------------------------------------------- /misc/gmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gmatrix.h -------------------------------------------------------------------------------- /misc/gstruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gstruct.c -------------------------------------------------------------------------------- /misc/gstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gstruct.h -------------------------------------------------------------------------------- /misc/gstruct_aatree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gstruct_aatree.h -------------------------------------------------------------------------------- /misc/gstruct_dclist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gstruct_dclist.h -------------------------------------------------------------------------------- /misc/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gutil.h -------------------------------------------------------------------------------- /misc/gutil_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gutil_alloc.c -------------------------------------------------------------------------------- /misc/gutil_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gutil_cmp.c -------------------------------------------------------------------------------- /misc/gutil_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gutil_error.c -------------------------------------------------------------------------------- /misc/gutil_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gutil_parse.c -------------------------------------------------------------------------------- /misc/gutil_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gutil_sort.c -------------------------------------------------------------------------------- /misc/gutil_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gutil_string.c -------------------------------------------------------------------------------- /misc/gvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/gvector.h -------------------------------------------------------------------------------- /misc/rtutil_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/rtutil_math.c -------------------------------------------------------------------------------- /misc/rtutil_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/rtutil_math.h -------------------------------------------------------------------------------- /misc/rtutil_scat_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/rtutil_scat_fft.c -------------------------------------------------------------------------------- /misc/rtutil_scat_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/rtutil_scat_fft.h -------------------------------------------------------------------------------- /misc/rtutil_scat_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/rtutil_scat_io.c -------------------------------------------------------------------------------- /misc/rtutil_scat_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/rtutil_scat_io.h -------------------------------------------------------------------------------- /misc/rtutil_size_dist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/rtutil_size_dist.c -------------------------------------------------------------------------------- /misc/rtutil_size_dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/rtutil_size_dist.h -------------------------------------------------------------------------------- /misc/rtutil_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/rtutil_support.c -------------------------------------------------------------------------------- /misc/rtutil_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/rtutil_support.h -------------------------------------------------------------------------------- /misc/zeroin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/zeroin.c -------------------------------------------------------------------------------- /misc/zeroin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/misc/zeroin.h -------------------------------------------------------------------------------- /readme_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/readme_source.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/dasymtx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/dasymtx.f -------------------------------------------------------------------------------- /src/depend.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/depend.inc -------------------------------------------------------------------------------- /src/pade_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/pade_table.h -------------------------------------------------------------------------------- /src/pade_table_l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/pade_table_l.h -------------------------------------------------------------------------------- /src/pentdag.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/pentdag.f -------------------------------------------------------------------------------- /src/prototypes/xrtm_adding_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_adding_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_adding_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_adding_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_brdf_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_brdf_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_brdf_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_brdf_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_derivs_p.h: -------------------------------------------------------------------------------- 1 | /* xrtm_derivs.c */ 2 | -------------------------------------------------------------------------------- /src/prototypes/xrtm_doub_rts_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_doub_rts_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_doubling_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_doubling_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_eig_bvp_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_eig_bvp_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_eig_bvp_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_eig_bvp_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_eig_rts_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_eig_rts_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_eig_rts_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_eig_rts_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_eig_util_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_eig_util_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_eig_util_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_eig_util_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_external_p.h: -------------------------------------------------------------------------------- 1 | /* xrtm_external.c */ 2 | -------------------------------------------------------------------------------- /src/prototypes/xrtm_fd_interface_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_fd_interface_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_four_stream_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_four_stream_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_interface_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_interface_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_matrix_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_matrix_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_mem_bvp_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_mem_bvp_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_model_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_model_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_model_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_model_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_pade_rts_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_pade_rts_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_radiance_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_radiance_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_radiance_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_radiance_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_save_tree_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_save_tree_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_scatter_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_scatter_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_scatter_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_scatter_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_sfi_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_sfi_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_single_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_single_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_single_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_single_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_six_stream_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_six_stream_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_sos_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_sos_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_source_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_source_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_source_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_source_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_stacks_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_stacks_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_support_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_support_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_two_os_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_two_os_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_two_stream_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_two_stream_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_utility_a_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_utility_a_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_utility_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_utility_p.h -------------------------------------------------------------------------------- /src/prototypes/xrtm_work_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/prototypes/xrtm_work_p.h -------------------------------------------------------------------------------- /src/rdi1mach.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/rdi1mach.f -------------------------------------------------------------------------------- /src/scratch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/scratch.txt -------------------------------------------------------------------------------- /src/sfi_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/sfi_block.h -------------------------------------------------------------------------------- /src/type_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/type_set.h -------------------------------------------------------------------------------- /src/type_unset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/type_unset.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/version.h -------------------------------------------------------------------------------- /src/xrtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm.h -------------------------------------------------------------------------------- /src/xrtm_adding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_adding.c -------------------------------------------------------------------------------- /src/xrtm_adding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_adding.h -------------------------------------------------------------------------------- /src/xrtm_adding_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_adding_a.c -------------------------------------------------------------------------------- /src/xrtm_adding_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_adding_a.h -------------------------------------------------------------------------------- /src/xrtm_brdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_brdf.c -------------------------------------------------------------------------------- /src/xrtm_brdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_brdf.h -------------------------------------------------------------------------------- /src/xrtm_brdf_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_brdf_a.c -------------------------------------------------------------------------------- /src/xrtm_brdf_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_brdf_a.h -------------------------------------------------------------------------------- /src/xrtm_derivs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_derivs.c -------------------------------------------------------------------------------- /src/xrtm_derivs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_derivs.h -------------------------------------------------------------------------------- /src/xrtm_doub_rts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_doub_rts.c -------------------------------------------------------------------------------- /src/xrtm_doub_rts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_doub_rts.h -------------------------------------------------------------------------------- /src/xrtm_doubling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_doubling.c -------------------------------------------------------------------------------- /src/xrtm_doubling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_doubling.h -------------------------------------------------------------------------------- /src/xrtm_eig_bvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_bvp.c -------------------------------------------------------------------------------- /src/xrtm_eig_bvp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_bvp.h -------------------------------------------------------------------------------- /src/xrtm_eig_bvp_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_bvp_a.c -------------------------------------------------------------------------------- /src/xrtm_eig_bvp_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_bvp_a.h -------------------------------------------------------------------------------- /src/xrtm_eig_bvp_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_bvp_x.c -------------------------------------------------------------------------------- /src/xrtm_eig_bvp_x_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_bvp_x_a.c -------------------------------------------------------------------------------- /src/xrtm_eig_rts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_rts.c -------------------------------------------------------------------------------- /src/xrtm_eig_rts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_rts.h -------------------------------------------------------------------------------- /src/xrtm_eig_rts_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_rts_a.c -------------------------------------------------------------------------------- /src/xrtm_eig_rts_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_rts_a.h -------------------------------------------------------------------------------- /src/xrtm_eig_rts_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_rts_x.c -------------------------------------------------------------------------------- /src/xrtm_eig_rts_x_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_rts_x_a.c -------------------------------------------------------------------------------- /src/xrtm_eig_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_util.c -------------------------------------------------------------------------------- /src/xrtm_eig_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_util.h -------------------------------------------------------------------------------- /src/xrtm_eig_util_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_util_a.c -------------------------------------------------------------------------------- /src/xrtm_eig_util_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_eig_util_a.h -------------------------------------------------------------------------------- /src/xrtm_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_external.c -------------------------------------------------------------------------------- /src/xrtm_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_external.h -------------------------------------------------------------------------------- /src/xrtm_fd_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_fd_interface.c -------------------------------------------------------------------------------- /src/xrtm_fd_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_fd_interface.h -------------------------------------------------------------------------------- /src/xrtm_four_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_four_stream.c -------------------------------------------------------------------------------- /src/xrtm_four_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_four_stream.h -------------------------------------------------------------------------------- /src/xrtm_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_interface.c -------------------------------------------------------------------------------- /src/xrtm_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_interface.h -------------------------------------------------------------------------------- /src/xrtm_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_matrix.c -------------------------------------------------------------------------------- /src/xrtm_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_matrix.h -------------------------------------------------------------------------------- /src/xrtm_mem_bvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_mem_bvp.c -------------------------------------------------------------------------------- /src/xrtm_mem_bvp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_mem_bvp.h -------------------------------------------------------------------------------- /src/xrtm_mem_bvp_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_mem_bvp_x.c -------------------------------------------------------------------------------- /src/xrtm_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_model.c -------------------------------------------------------------------------------- /src/xrtm_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_model.h -------------------------------------------------------------------------------- /src/xrtm_model_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_model_a.c -------------------------------------------------------------------------------- /src/xrtm_model_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_model_a.h -------------------------------------------------------------------------------- /src/xrtm_pade_rts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_pade_rts.c -------------------------------------------------------------------------------- /src/xrtm_pade_rts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_pade_rts.h -------------------------------------------------------------------------------- /src/xrtm_radiance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_radiance.c -------------------------------------------------------------------------------- /src/xrtm_radiance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_radiance.h -------------------------------------------------------------------------------- /src/xrtm_radiance_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_radiance_a.c -------------------------------------------------------------------------------- /src/xrtm_radiance_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_radiance_a.h -------------------------------------------------------------------------------- /src/xrtm_save_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_save_tree.c -------------------------------------------------------------------------------- /src/xrtm_save_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_save_tree.h -------------------------------------------------------------------------------- /src/xrtm_scatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_scatter.c -------------------------------------------------------------------------------- /src/xrtm_scatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_scatter.h -------------------------------------------------------------------------------- /src/xrtm_scatter_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_scatter_a.c -------------------------------------------------------------------------------- /src/xrtm_scatter_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_scatter_a.h -------------------------------------------------------------------------------- /src/xrtm_sfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_sfi.c -------------------------------------------------------------------------------- /src/xrtm_sfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_sfi.h -------------------------------------------------------------------------------- /src/xrtm_sfi_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_sfi_x.c -------------------------------------------------------------------------------- /src/xrtm_single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_single.c -------------------------------------------------------------------------------- /src/xrtm_single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_single.h -------------------------------------------------------------------------------- /src/xrtm_single_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_single_a.c -------------------------------------------------------------------------------- /src/xrtm_single_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_single_a.h -------------------------------------------------------------------------------- /src/xrtm_six_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_six_stream.c -------------------------------------------------------------------------------- /src/xrtm_six_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_six_stream.h -------------------------------------------------------------------------------- /src/xrtm_sos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_sos.c -------------------------------------------------------------------------------- /src/xrtm_sos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_sos.h -------------------------------------------------------------------------------- /src/xrtm_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_source.c -------------------------------------------------------------------------------- /src/xrtm_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_source.h -------------------------------------------------------------------------------- /src/xrtm_source_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_source_a.c -------------------------------------------------------------------------------- /src/xrtm_source_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_source_a.h -------------------------------------------------------------------------------- /src/xrtm_source_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_source_x.c -------------------------------------------------------------------------------- /src/xrtm_stacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_stacks.c -------------------------------------------------------------------------------- /src/xrtm_stacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_stacks.h -------------------------------------------------------------------------------- /src/xrtm_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_support.c -------------------------------------------------------------------------------- /src/xrtm_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_support.h -------------------------------------------------------------------------------- /src/xrtm_two_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_two_os.c -------------------------------------------------------------------------------- /src/xrtm_two_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_two_os.h -------------------------------------------------------------------------------- /src/xrtm_two_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_two_stream.c -------------------------------------------------------------------------------- /src/xrtm_two_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_two_stream.h -------------------------------------------------------------------------------- /src/xrtm_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_utility.c -------------------------------------------------------------------------------- /src/xrtm_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_utility.h -------------------------------------------------------------------------------- /src/xrtm_utility_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_utility_a.c -------------------------------------------------------------------------------- /src/xrtm_utility_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_utility_a.h -------------------------------------------------------------------------------- /src/xrtm_work.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_work.c -------------------------------------------------------------------------------- /src/xrtm_work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src/xrtm_work.h -------------------------------------------------------------------------------- /src2/dgeev2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/dgeev2.f -------------------------------------------------------------------------------- /src2/dgetrs2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/dgetrs2.f -------------------------------------------------------------------------------- /src2/dsyev2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/dsyev2.f -------------------------------------------------------------------------------- /src2/dtrsm2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/dtrsm2.f -------------------------------------------------------------------------------- /src2/ext_2stream.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/ext_2stream.f90 -------------------------------------------------------------------------------- /src2/ext_lidort.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/ext_lidort.f -------------------------------------------------------------------------------- /src2/ext_lidort2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/ext_lidort2.f90 -------------------------------------------------------------------------------- /src2/ext_lrad.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/ext_lrad.f90 -------------------------------------------------------------------------------- /src2/ext_polrad.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/ext_polrad.f -------------------------------------------------------------------------------- /src2/ext_radiant.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/ext_radiant.f90 -------------------------------------------------------------------------------- /src2/ext_soi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/ext_soi.f90 -------------------------------------------------------------------------------- /src2/ext_vlidort-2.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/ext_vlidort-2.3.f -------------------------------------------------------------------------------- /src2/ext_vlidort-2.4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/ext_vlidort-2.4.f -------------------------------------------------------------------------------- /src2/ext_vlidort-2.4RT.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/ext_vlidort-2.4RT.f -------------------------------------------------------------------------------- /src2/ext_vlidort.f: -------------------------------------------------------------------------------- 1 | ext_vlidort-2.3.f -------------------------------------------------------------------------------- /src2/layer_double_cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/layer_double_cuda.c -------------------------------------------------------------------------------- /src2/rs2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/rs2.f -------------------------------------------------------------------------------- /src2/xrtm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm2.h -------------------------------------------------------------------------------- /src2/xrtm_adding2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_adding2.c -------------------------------------------------------------------------------- /src2/xrtm_adding_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_adding_a2.c -------------------------------------------------------------------------------- /src2/xrtm_doub_rts2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_doub_rts2.c -------------------------------------------------------------------------------- /src2/xrtm_doubling2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_doubling2.c -------------------------------------------------------------------------------- /src2/xrtm_eig_bvp_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_eig_bvp_a2.c -------------------------------------------------------------------------------- /src2/xrtm_eig_bvp_x_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_eig_bvp_x_a2.c -------------------------------------------------------------------------------- /src2/xrtm_eig_rts_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_eig_rts_a2.c -------------------------------------------------------------------------------- /src2/xrtm_eig_rts_x_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_eig_rts_x_a2.c -------------------------------------------------------------------------------- /src2/xrtm_eig_util2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_eig_util2.c -------------------------------------------------------------------------------- /src2/xrtm_eig_util2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_eig_util2.h -------------------------------------------------------------------------------- /src2/xrtm_eig_util_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_eig_util_a2.c -------------------------------------------------------------------------------- /src2/xrtm_external2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_external2.c -------------------------------------------------------------------------------- /src2/xrtm_interface2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_interface2.c -------------------------------------------------------------------------------- /src2/xrtm_interface2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_interface2.h -------------------------------------------------------------------------------- /src2/xrtm_matrix2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_matrix2.c -------------------------------------------------------------------------------- /src2/xrtm_model2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_model2.c -------------------------------------------------------------------------------- /src2/xrtm_model_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_model_a2.c -------------------------------------------------------------------------------- /src2/xrtm_pade_rts2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_pade_rts2.c -------------------------------------------------------------------------------- /src2/xrtm_radiance2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_radiance2.c -------------------------------------------------------------------------------- /src2/xrtm_radiance_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_radiance_a2.c -------------------------------------------------------------------------------- /src2/xrtm_scatter2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_scatter2.c -------------------------------------------------------------------------------- /src2/xrtm_scatter_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_scatter_a2.c -------------------------------------------------------------------------------- /src2/xrtm_single_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_single_a2.c -------------------------------------------------------------------------------- /src2/xrtm_source_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_source_a2.c -------------------------------------------------------------------------------- /src2/xrtm_support2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_support2.c -------------------------------------------------------------------------------- /src2/xrtm_support2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_support2.h -------------------------------------------------------------------------------- /src2/xrtm_utility_a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/src2/xrtm_utility_a2.c -------------------------------------------------------------------------------- /utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/Makefile -------------------------------------------------------------------------------- /utils/callxrtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/callxrtm.c -------------------------------------------------------------------------------- /utils/depend.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/depend.inc -------------------------------------------------------------------------------- /utils/input_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/input_local.h -------------------------------------------------------------------------------- /utils/input_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/input_util.c -------------------------------------------------------------------------------- /utils/input_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/input_util.h -------------------------------------------------------------------------------- /utils/input_yylex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/input_yylex.c -------------------------------------------------------------------------------- /utils/input_yylex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/input_yylex.h -------------------------------------------------------------------------------- /utils/input_yylex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/input_yylex.l -------------------------------------------------------------------------------- /utils/parse_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/parse_data.h -------------------------------------------------------------------------------- /utils/prototypes/test_core_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/prototypes/test_core_p.h -------------------------------------------------------------------------------- /utils/prototypes/test_execute_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/prototypes/test_execute_p.h -------------------------------------------------------------------------------- /utils/prototypes/test_loop_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/prototypes/test_loop_p.h -------------------------------------------------------------------------------- /utils/prototypes/test_result_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/prototypes/test_result_p.h -------------------------------------------------------------------------------- /utils/prototypes/test_util_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/prototypes/test_util_p.h -------------------------------------------------------------------------------- /utils/prototypes/test_write_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/prototypes/test_write_p.h -------------------------------------------------------------------------------- /utils/prototypes/test_xrtm_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/prototypes/test_xrtm_p.h -------------------------------------------------------------------------------- /utils/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test.h -------------------------------------------------------------------------------- /utils/test_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_core.c -------------------------------------------------------------------------------- /utils/test_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_core.h -------------------------------------------------------------------------------- /utils/test_execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_execute.c -------------------------------------------------------------------------------- /utils/test_execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_execute.h -------------------------------------------------------------------------------- /utils/test_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_loop.c -------------------------------------------------------------------------------- /utils/test_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_loop.h -------------------------------------------------------------------------------- /utils/test_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_macros.h -------------------------------------------------------------------------------- /utils/test_result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_result.c -------------------------------------------------------------------------------- /utils/test_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_result.h -------------------------------------------------------------------------------- /utils/test_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_util.c -------------------------------------------------------------------------------- /utils/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_util.h -------------------------------------------------------------------------------- /utils/test_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_write.c -------------------------------------------------------------------------------- /utils/test_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_write.h -------------------------------------------------------------------------------- /utils/test_xrtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_xrtm.c -------------------------------------------------------------------------------- /utils/test_xrtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/test_xrtm.h -------------------------------------------------------------------------------- /utils/testxrtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils/testxrtm.c -------------------------------------------------------------------------------- /utils2/test2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmcgarragh/xrtm/HEAD/utils2/test2.h --------------------------------------------------------------------------------