├── .github └── workflows │ └── unitTest_EnvironmentSetup.yml ├── .gitignore ├── Changelog.md ├── Distributions ├── Build │ ├── Machines │ │ ├── Makefile_delta-cyc_gcc │ │ ├── Makefile_frontier_cce │ │ ├── Makefile_frontier_gcc │ │ ├── Makefile_jaharris │ │ ├── Makefile_mac_gnu │ │ ├── Makefile_paullaiu_gnu │ │ ├── Makefile_sjdunham │ │ ├── Makefile_ubuntu │ │ └── Makefile_vass │ ├── Makefile_Build │ ├── Makefile_Compilers │ ├── Makefile_Defines │ ├── Makefile_GPU │ ├── Makefile_Path │ ├── Makefile_Suffixes │ ├── Makefile_WeakLib_Dependencies │ └── Makefile_WeakLib_ObjectFiles ├── EOSSource │ ├── Makefile_Depend │ ├── Makefile_EOSSource_Dependencies │ ├── Makefile_EOSSource_ObjectFiles │ ├── Makefile_Objects │ ├── wlEOSIOModuleHDF.f90 │ ├── wlEOSInterpolationModule.f90 │ ├── wlEOSInterpolationModule_Old.f90 │ ├── wlEOSInversionModule.F90 │ └── wlEquationOfStateTableModule.f90 ├── ExternalLibrary │ ├── CreateExternalLibrary.sh │ ├── Makefile │ └── Makefile.Flash ├── Library │ ├── Makefile_Depend │ ├── Makefile_Library_Dependencies │ ├── Makefile_Library_ObjectFiles │ ├── Makefile_Objects │ ├── wlDependentVariablesModule.f90 │ ├── wlGridModule.f90 │ ├── wlIOModuleHDF.F90 │ ├── wlInterpolationModule.F90 │ ├── wlInterpolationUtilitiesModule.F90 │ ├── wlKindModule.f90 │ ├── wlParallelModule.f90 │ └── wlThermoStateModule.f90 ├── Matlab │ ├── interpolate1D3D.m │ ├── interpolate2D2D.m │ ├── interpolate4D.m │ ├── interpolateDifferentiateEos.m │ ├── interpolateEos.m │ ├── readAbsorptionOpacityTable.m │ ├── readEosTable.m │ ├── readIsoScatteringOpacityTable.m │ └── readNesScatteringOpacityTable.m ├── OpacitySource │ ├── Makefile_OpacitySource_Dependencies │ ├── Makefile_OpacitySource_ObjectFiles │ ├── wlOpacityFieldsModule.f90 │ ├── wlOpacityInterpolationModule.f90 │ ├── wlOpacityTableIOModuleHDF.f90 │ └── wlOpacityTableModule.f90 ├── Tools │ └── WriteTxtForInterpolatingOverOpacityTables.sh ├── UnitTests │ ├── DependentVariables │ │ ├── Executables │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── Makefile.internal │ │ ├── Makefile_DependentVariables │ │ └── wlDependentVariablesTest.f90 │ ├── EquationOfState │ │ ├── Executables │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── Makefile.internal │ │ ├── Makefile_EquationOfState │ │ ├── wlEosPerformanceTest.f90 │ │ ├── wlEosQueryTest.F90 │ │ ├── wlReadEquationOfStateTest.f90 │ │ ├── wlRewriteEquationOfStateTest.f90 │ │ └── wlWriteEquationOfStateTest.f90 │ ├── Inversion │ │ ├── Executables │ │ │ └── Makefile │ │ ├── Makefile_Inversion │ │ ├── wlEosInversionQuery.F90 │ │ ├── wlEosInversionTest.F90 │ │ └── wlInversionTest.f90 │ ├── Opacities │ │ ├── Executables │ │ │ ├── Makefile │ │ │ ├── ProfileBruenn.d │ │ │ ├── f_profile.asc │ │ │ └── initial_model.d │ │ ├── Inputfile_stand.d │ │ ├── Inputfile_stand_NESK.d │ │ ├── Makefile.internal │ │ ├── Makefile_Opacities │ │ ├── ProfileExample.profile │ │ ├── README.md │ │ ├── WriteTxtForInterpolation.sh │ │ ├── plotInterpolatedCompactHDF.m │ │ ├── plotInterpolatedHDF.m │ │ ├── profile.d │ │ ├── wlInterpolateAb.f90 │ │ ├── wlInterpolateBrem.f90 │ │ ├── wlInterpolateIso.f90 │ │ ├── wlInterpolateNES.f90 │ │ ├── wlInterpolatePair.f90 │ │ ├── wlOpacityAlignTest.f90 │ │ ├── wlOpacityFieldsTest.f90 │ │ ├── wlOpacityPerformanceTest.F90 │ │ ├── wlOpacityTableResolutionTest.f90 │ │ └── wlReadOpacityTableTest.f90 │ ├── Profiles │ │ ├── CHIMERA │ │ │ ├── Chimera009ms.dat │ │ │ ├── Chimera100ms.dat │ │ │ ├── ChimeraBounce.dat │ │ │ └── ReadMe.txt │ │ ├── ExpandedProfiles │ │ │ ├── FidOutput0ms.d │ │ │ └── FidOutput100ms.d │ │ ├── README.txt │ │ └── SimpleProfiles │ │ │ ├── Output0ms.d │ │ │ ├── Output100ms.d │ │ │ └── wl-EOS-LS220-DirectCall-0msPostBounce.d │ └── ThermoState │ │ ├── Executables │ │ └── Makefile │ │ ├── Makefile │ │ ├── Makefile.internal │ │ ├── Makefile_ThermoState │ │ └── wlThermoStateTest.f90 └── Workflow │ └── SetEnvironment.sh ├── Documents └── Opacities.pdf ├── Guide_for_Developers.md ├── LICENSE ├── README.md └── TableCreator ├── Build ├── Makefile_Build ├── Makefile_Path └── Makefile_WeakLib_ObjectFiles ├── EOSSource ├── ChimeraModules │ └── wlIOModuleCHIMERA.f90 ├── EquationsOfState │ ├── BuildEoSTable.md │ └── LattimerSwesty │ │ ├── Executables │ │ └── Makefile │ │ ├── Makefile │ │ ├── Makefile.internal │ │ ├── Makefile_CreateTable │ │ ├── Makefile_EOS_ObjectFiles │ │ └── wlCreateEquationOfStateTable.f90 ├── TableOperations │ └── TableFinishing │ │ ├── Makefile │ │ ├── Makefile.internal │ │ └── wlTableFinisher.f90 └── UnitTests │ ├── ChimeraInterpolation │ └── wlChimeraInterpolationTest.f90 │ ├── ChimeraReader1D │ ├── Makefile │ ├── Makefile.internal │ └── wlChimeraProfileReader1DTest.f90 │ ├── EOSInterpolation │ ├── Makefile │ ├── Makefile.internal │ ├── backup.f90 │ └── wlInterpolationTest.f90 │ ├── GreyVariables │ ├── Makefile │ ├── Makefile.internal │ └── wlGreyVariablesTEST.f90 │ ├── HDFInversion │ └── wlHDFInversionTest.f90 │ ├── MaskTest │ └── wlMaskTest.f90 │ ├── OpacityInterpolation │ ├── wlOpacityDerivative.f90 │ └── wlOpacityInterpolationAccuracyTest.f90 │ ├── Parallel │ ├── Makefile │ ├── Makefile.internal │ └── wlParallelReadTest.f90 │ ├── PressureInversionComparison │ └── wlPressureInversionTest.f90 │ ├── ProfileInterpolationComparison │ ├── InterpolateAllTestCSeriesRes.d │ ├── InterpolateAllTestDoubleTCseries.d │ ├── Makefile │ ├── Makefile.internal │ ├── NeutronChemPotTest.d │ ├── Output0ms.d │ ├── SingleDerivativeTest.d │ ├── backup.f90 │ ├── chimerafile │ ├── dUdt.d │ ├── logfile │ └── wlProfileInterpolationTest.f90 │ ├── ProfileInversionComparison │ └── wlProfileInversionTest.f90 │ └── TableOrganization │ ├── Makefile │ ├── Makefile.internal │ └── wlTableOrganizationTest.f90 ├── Old ├── BCK │ ├── BCK_EoS.f │ ├── EOS_BCK_MODULE.f90 │ ├── Makefile_Dependencies │ └── net.f90 ├── COMPOSE │ └── HempelSteiner │ │ └── SFHoeos │ │ ├── README.txt │ │ ├── eos.nb │ │ ├── eos.pdf │ │ ├── eos.t │ │ └── eos.yq ├── EOSInterface │ ├── Build │ │ ├── Makefile │ │ └── Makefile.internal │ ├── Makefile_Dependencies │ ├── wlExtEOSWrapperModule.f90 │ ├── wlExtInitializeEOS.f90 │ └── wlInterrogateEOS.f90 ├── LS │ ├── Data │ │ ├── bd180.atb │ │ ├── bd220.atb │ │ ├── bd375.atb │ │ ├── fermi.atb │ │ ├── max180.atb │ │ ├── max220.atb │ │ └── max375.atb │ ├── EL_EOS_MODULE.f90 │ ├── EOS_M4C_MODULE.f90 │ ├── LattimerSwesty.f │ ├── MAXWEL_MODULE.f90 │ ├── Makefile_Dependencies │ ├── e_p_eos.f90 │ ├── el_eos.inc │ ├── eos_m4c.inc │ ├── force.inc │ ├── initferm.f │ └── loadmx.f ├── Math │ ├── Data │ │ ├── NES_RATES_EnergyBinCenter.dat │ │ ├── NES_RATES_EnergyBinWidth.dat │ │ ├── NES_RATES_R_In___001.dat │ │ ├── NES_RATES_R_In___002.dat │ │ ├── NES_RATES_R_In___003.dat │ │ ├── NES_RATES_R_In___004.dat │ │ ├── NES_RATES_R_In___005.dat │ │ ├── NES_RATES_R_Out__001.dat │ │ ├── NES_RATES_R_Out__002.dat │ │ ├── NES_RATES_R_Out__003.dat │ │ ├── NES_RATES_R_Out__004.dat │ │ └── NES_RATES_R_Out__005.dat │ └── MatlabCode │ │ ├── ComputeNesRate.m │ │ ├── ComputeNesRate_Symm.m │ │ ├── ComputeTempFromIntEnergy_Bisection.m │ │ ├── EnforceRinoutSym.m │ │ ├── F_FUN.m │ │ ├── F_JAC.m │ │ ├── InitializeNES.m │ │ ├── InitializeNES_Interp_rhoTYe.m │ │ ├── L_FUN.m │ │ ├── Newton.m │ │ ├── PenalizationAnalysis.m │ │ ├── ReadData1D.m │ │ ├── ReadData2D.m │ │ ├── Relaxation_Analytic.m │ │ ├── Relaxation_Analytic_001.mat │ │ ├── SolveNES_FD_SemiImplicit.m │ │ ├── UpdateNeqAnalysis.m │ │ ├── Update_ForwardEular.m │ │ ├── Update_ForwardEular_T.m │ │ ├── Update_ImplicitEuler.m │ │ ├── Update_ImplicitEuler_T.m │ │ ├── Update_NESKernel.m │ │ ├── Update_Neq_FD.m │ │ ├── Update_PenalizationMethod.m │ │ ├── Update_PenalizationMethod2.m │ │ ├── Update_PenalizationMethod_T.m │ │ ├── Update_PenalizationMethod_T_1stOrder.m │ │ ├── Update_PenalizationMethod_dCconstant.m │ │ ├── Update_PenalizationMethod_dCconstant_T.m │ │ ├── Update_SSPRK3.m │ │ ├── Update_SSPRK3_T.m │ │ ├── Update_SSPRK3_T2.m │ │ ├── Update_Temperature.m │ │ ├── determine_dt_forwardEular.m │ │ ├── determine_dt_penalization.m │ │ ├── isNeq.m │ │ └── plotLinearRelaxation.m └── Tables │ ├── EquationsOfState │ └── README.txt │ └── Opacities │ └── README.txt ├── OpacitySource ├── Bruenn85 │ ├── B85_Absorption.f90 │ ├── B85_pair.f90 │ ├── B85_scattIso.f90 │ ├── B85_scattNES.f90 │ ├── Chimera │ │ ├── Makefile_ObjectFiles │ │ ├── PRB_CNTL_MODULE.f90 │ │ ├── abem_cal_weaklib.f90 │ │ ├── abemfrnp.f90 │ │ ├── abemfrnpetanp.f90 │ │ ├── abemnc_weaklib.f90 │ │ ├── abemrgn_weaklib.f90 │ │ ├── etaxx.f90 │ │ ├── ff.f90 │ │ ├── gquad.f90 │ │ ├── kind_module.f90 │ │ ├── nes_module.f90 │ │ ├── numerical_module.f90 │ │ ├── pair_module.f90 │ │ ├── paircal_weaklib.f90 │ │ ├── physcnst_module.f90 │ │ ├── pr_w_gt_wp_e_lt_wp.f90 │ │ ├── pr_w_gt_wp_lt_e_lt_w.f90 │ │ ├── pr_w_gt_wp_w_lt_e.f90 │ │ ├── pr_w_lt_wp_e_lt_w.f90 │ │ ├── pr_w_lt_wp_e_lt_wp.f90 │ │ ├── pr_w_lt_wp_wp_lt_e.f90 │ │ ├── scatergn_weaklib.f90 │ │ ├── scatical_weaklib.f90 │ │ ├── sctlgndv_weaklib.f90 │ │ ├── w_gt_wp_e_gt_wp.f90 │ │ ├── w_gt_wp_e_lt_wp.f90 │ │ ├── w_gt_wp_e_to_inf.f90 │ │ ├── w_lt_wp_e_gt_wp.f90 │ │ ├── w_lt_wp_e_lt_wp.f90 │ │ └── w_lt_wp_e_to_inf.f90 │ ├── Executables │ │ └── Makefile │ ├── GreyVariables.f90 │ ├── Makefile.internal │ ├── Makefile_CreateTable │ ├── Makefile_OpacityBruenn85_ObjectFiles │ └── wlCreateOpacityTable.f90 ├── BuildOpacityTable.md └── FullWeakPhysics │ ├── Boltztran │ └── Makefile_ObjectFiles │ ├── Chimera │ ├── Makefile_Dependencies │ ├── Makefile_ObjectFiles │ ├── PRB_CNTL_MODULE.f90 │ ├── ReadMe │ ├── abem_cal_weaklib.f90 │ ├── abem_module_weaklib.f90 │ ├── abem_nuclei_Bruenn85_FFN_weaklib.f90 │ ├── abem_nucleons_Reddy_et_al_1998_weaklib.f90 │ ├── abem_nucleons_isoenergetic_weaklib.f90 │ ├── abemfrnp.f90 │ ├── abemfrnpetanp.f90 │ ├── abemnc_weaklib.f90 │ ├── abemrgn_weaklib.f90 │ ├── cc_weak_mag_weaklib.f90 │ ├── ec_table_module.f90 │ ├── etaxx.f90 │ ├── ff.f90 │ ├── gquad.f90 │ ├── ion_ion_corrections_weaklib.f90 │ ├── kind_module.f90 │ ├── load_polylog_weaklib.f90 │ ├── nc_many_body_corrections_weaklib.f90 │ ├── nc_weak_mag_weaklib.f90 │ ├── nes_module.f90 │ ├── numerical_module.f90 │ ├── pair_module.f90 │ ├── paircal_weaklib.f90 │ ├── physcnst_module.f90 │ ├── polylog.tab │ ├── polylog_module_weaklib.f90 │ ├── pr_w_gt_wp_e_lt_wp.f90 │ ├── pr_w_gt_wp_lt_e_lt_w.f90 │ ├── pr_w_gt_wp_w_lt_e.f90 │ ├── pr_w_lt_wp_e_lt_w.f90 │ ├── pr_w_lt_wp_e_lt_wp.f90 │ ├── pr_w_lt_wp_wp_lt_e.f90 │ ├── scatergn_weaklib.f90 │ ├── scatical_weaklib.f90 │ ├── sctlgndv_weaklib.f90 │ ├── w_gt_wp_e_gt_wp.f90 │ ├── w_gt_wp_e_lt_wp.f90 │ ├── w_gt_wp_e_to_inf.f90 │ ├── w_lt_wp_e_gt_wp.f90 │ ├── w_lt_wp_e_lt_wp.f90 │ └── w_lt_wp_e_to_inf.f90 │ ├── Executables │ ├── Makefile │ └── ec_table.d │ ├── Fischer │ ├── CC_module_weaklib.f90 │ ├── Makefile_Dependencies │ └── Makefile_ObjectFiles │ ├── HR98_Bremsstrahlung.f90 │ ├── Makefile_CreateTable │ ├── Makefile_Opacity_FullWeakPhysics_Dependencies │ ├── Makefile_Opacity_FullWeakPhysics_ObjectFiles │ └── wlCreateOpacityTable.F90 └── SharedModules ├── GaussianQuadrature.f90 ├── Makefile_SharedModules_Dependencies ├── Makefile_SharedModules_ObjectFiles ├── fexp.f90 ├── glaquad.f90 ├── wlExtNumericalModule.f90 ├── wlExtPhysicalConstantsModule.f90 └── wlExtTableFinishingModule.f90 /.github/workflows/unitTest_EnvironmentSetup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/.github/workflows/unitTest_EnvironmentSetup.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Changelog.md -------------------------------------------------------------------------------- /Distributions/Build/Machines/Makefile_delta-cyc_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Machines/Makefile_delta-cyc_gcc -------------------------------------------------------------------------------- /Distributions/Build/Machines/Makefile_frontier_cce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Machines/Makefile_frontier_cce -------------------------------------------------------------------------------- /Distributions/Build/Machines/Makefile_frontier_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Machines/Makefile_frontier_gcc -------------------------------------------------------------------------------- /Distributions/Build/Machines/Makefile_jaharris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Machines/Makefile_jaharris -------------------------------------------------------------------------------- /Distributions/Build/Machines/Makefile_mac_gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Machines/Makefile_mac_gnu -------------------------------------------------------------------------------- /Distributions/Build/Machines/Makefile_paullaiu_gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Machines/Makefile_paullaiu_gnu -------------------------------------------------------------------------------- /Distributions/Build/Machines/Makefile_sjdunham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Machines/Makefile_sjdunham -------------------------------------------------------------------------------- /Distributions/Build/Machines/Makefile_ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Machines/Makefile_ubuntu -------------------------------------------------------------------------------- /Distributions/Build/Machines/Makefile_vass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Machines/Makefile_vass -------------------------------------------------------------------------------- /Distributions/Build/Makefile_Build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Makefile_Build -------------------------------------------------------------------------------- /Distributions/Build/Makefile_Compilers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Makefile_Compilers -------------------------------------------------------------------------------- /Distributions/Build/Makefile_Defines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Makefile_Defines -------------------------------------------------------------------------------- /Distributions/Build/Makefile_GPU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Makefile_GPU -------------------------------------------------------------------------------- /Distributions/Build/Makefile_Path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Makefile_Path -------------------------------------------------------------------------------- /Distributions/Build/Makefile_Suffixes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Makefile_Suffixes -------------------------------------------------------------------------------- /Distributions/Build/Makefile_WeakLib_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Makefile_WeakLib_Dependencies -------------------------------------------------------------------------------- /Distributions/Build/Makefile_WeakLib_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Build/Makefile_WeakLib_ObjectFiles -------------------------------------------------------------------------------- /Distributions/EOSSource/Makefile_Depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/EOSSource/Makefile_Depend -------------------------------------------------------------------------------- /Distributions/EOSSource/Makefile_EOSSource_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/EOSSource/Makefile_EOSSource_Dependencies -------------------------------------------------------------------------------- /Distributions/EOSSource/Makefile_EOSSource_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/EOSSource/Makefile_EOSSource_ObjectFiles -------------------------------------------------------------------------------- /Distributions/EOSSource/Makefile_Objects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/EOSSource/Makefile_Objects -------------------------------------------------------------------------------- /Distributions/EOSSource/wlEOSIOModuleHDF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/EOSSource/wlEOSIOModuleHDF.f90 -------------------------------------------------------------------------------- /Distributions/EOSSource/wlEOSInterpolationModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/EOSSource/wlEOSInterpolationModule.f90 -------------------------------------------------------------------------------- /Distributions/EOSSource/wlEOSInterpolationModule_Old.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/EOSSource/wlEOSInterpolationModule_Old.f90 -------------------------------------------------------------------------------- /Distributions/EOSSource/wlEOSInversionModule.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/EOSSource/wlEOSInversionModule.F90 -------------------------------------------------------------------------------- /Distributions/EOSSource/wlEquationOfStateTableModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/EOSSource/wlEquationOfStateTableModule.f90 -------------------------------------------------------------------------------- /Distributions/ExternalLibrary/CreateExternalLibrary.sh: -------------------------------------------------------------------------------- 1 | ar crv weaklib.a *.o 2 | -------------------------------------------------------------------------------- /Distributions/ExternalLibrary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/ExternalLibrary/Makefile -------------------------------------------------------------------------------- /Distributions/ExternalLibrary/Makefile.Flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/ExternalLibrary/Makefile.Flash -------------------------------------------------------------------------------- /Distributions/Library/Makefile_Depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/Makefile_Depend -------------------------------------------------------------------------------- /Distributions/Library/Makefile_Library_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/Makefile_Library_Dependencies -------------------------------------------------------------------------------- /Distributions/Library/Makefile_Library_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/Makefile_Library_ObjectFiles -------------------------------------------------------------------------------- /Distributions/Library/Makefile_Objects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/Makefile_Objects -------------------------------------------------------------------------------- /Distributions/Library/wlDependentVariablesModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/wlDependentVariablesModule.f90 -------------------------------------------------------------------------------- /Distributions/Library/wlGridModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/wlGridModule.f90 -------------------------------------------------------------------------------- /Distributions/Library/wlIOModuleHDF.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/wlIOModuleHDF.F90 -------------------------------------------------------------------------------- /Distributions/Library/wlInterpolationModule.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/wlInterpolationModule.F90 -------------------------------------------------------------------------------- /Distributions/Library/wlInterpolationUtilitiesModule.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/wlInterpolationUtilitiesModule.F90 -------------------------------------------------------------------------------- /Distributions/Library/wlKindModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/wlKindModule.f90 -------------------------------------------------------------------------------- /Distributions/Library/wlParallelModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/wlParallelModule.f90 -------------------------------------------------------------------------------- /Distributions/Library/wlThermoStateModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Library/wlThermoStateModule.f90 -------------------------------------------------------------------------------- /Distributions/Matlab/interpolate1D3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Matlab/interpolate1D3D.m -------------------------------------------------------------------------------- /Distributions/Matlab/interpolate2D2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Matlab/interpolate2D2D.m -------------------------------------------------------------------------------- /Distributions/Matlab/interpolate4D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Matlab/interpolate4D.m -------------------------------------------------------------------------------- /Distributions/Matlab/interpolateDifferentiateEos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Matlab/interpolateDifferentiateEos.m -------------------------------------------------------------------------------- /Distributions/Matlab/interpolateEos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Matlab/interpolateEos.m -------------------------------------------------------------------------------- /Distributions/Matlab/readAbsorptionOpacityTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Matlab/readAbsorptionOpacityTable.m -------------------------------------------------------------------------------- /Distributions/Matlab/readEosTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Matlab/readEosTable.m -------------------------------------------------------------------------------- /Distributions/Matlab/readIsoScatteringOpacityTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Matlab/readIsoScatteringOpacityTable.m -------------------------------------------------------------------------------- /Distributions/Matlab/readNesScatteringOpacityTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Matlab/readNesScatteringOpacityTable.m -------------------------------------------------------------------------------- /Distributions/OpacitySource/Makefile_OpacitySource_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/OpacitySource/Makefile_OpacitySource_Dependencies -------------------------------------------------------------------------------- /Distributions/OpacitySource/Makefile_OpacitySource_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/OpacitySource/Makefile_OpacitySource_ObjectFiles -------------------------------------------------------------------------------- /Distributions/OpacitySource/wlOpacityFieldsModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/OpacitySource/wlOpacityFieldsModule.f90 -------------------------------------------------------------------------------- /Distributions/OpacitySource/wlOpacityInterpolationModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/OpacitySource/wlOpacityInterpolationModule.f90 -------------------------------------------------------------------------------- /Distributions/OpacitySource/wlOpacityTableIOModuleHDF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/OpacitySource/wlOpacityTableIOModuleHDF.f90 -------------------------------------------------------------------------------- /Distributions/OpacitySource/wlOpacityTableModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/OpacitySource/wlOpacityTableModule.f90 -------------------------------------------------------------------------------- /Distributions/Tools/WriteTxtForInterpolatingOverOpacityTables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Tools/WriteTxtForInterpolatingOverOpacityTables.sh -------------------------------------------------------------------------------- /Distributions/UnitTests/DependentVariables/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/DependentVariables/Executables/Makefile -------------------------------------------------------------------------------- /Distributions/UnitTests/DependentVariables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/DependentVariables/Makefile -------------------------------------------------------------------------------- /Distributions/UnitTests/DependentVariables/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/DependentVariables/Makefile.internal -------------------------------------------------------------------------------- /Distributions/UnitTests/DependentVariables/Makefile_DependentVariables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/DependentVariables/Makefile_DependentVariables -------------------------------------------------------------------------------- /Distributions/UnitTests/DependentVariables/wlDependentVariablesTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/DependentVariables/wlDependentVariablesTest.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/EquationOfState/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/EquationOfState/Executables/Makefile -------------------------------------------------------------------------------- /Distributions/UnitTests/EquationOfState/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/EquationOfState/Makefile -------------------------------------------------------------------------------- /Distributions/UnitTests/EquationOfState/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/EquationOfState/Makefile.internal -------------------------------------------------------------------------------- /Distributions/UnitTests/EquationOfState/Makefile_EquationOfState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/EquationOfState/Makefile_EquationOfState -------------------------------------------------------------------------------- /Distributions/UnitTests/EquationOfState/wlEosPerformanceTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/EquationOfState/wlEosPerformanceTest.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/EquationOfState/wlEosQueryTest.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/EquationOfState/wlEosQueryTest.F90 -------------------------------------------------------------------------------- /Distributions/UnitTests/EquationOfState/wlReadEquationOfStateTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/EquationOfState/wlReadEquationOfStateTest.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/EquationOfState/wlRewriteEquationOfStateTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/EquationOfState/wlRewriteEquationOfStateTest.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/EquationOfState/wlWriteEquationOfStateTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/EquationOfState/wlWriteEquationOfStateTest.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Inversion/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Inversion/Executables/Makefile -------------------------------------------------------------------------------- /Distributions/UnitTests/Inversion/Makefile_Inversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Inversion/Makefile_Inversion -------------------------------------------------------------------------------- /Distributions/UnitTests/Inversion/wlEosInversionQuery.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Inversion/wlEosInversionQuery.F90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Inversion/wlEosInversionTest.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Inversion/wlEosInversionTest.F90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Inversion/wlInversionTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Inversion/wlInversionTest.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/Executables/Makefile -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/Executables/ProfileBruenn.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/Executables/ProfileBruenn.d -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/Executables/f_profile.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/Executables/f_profile.asc -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/Executables/initial_model.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/Executables/initial_model.d -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/Inputfile_stand.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/Inputfile_stand.d -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/Inputfile_stand_NESK.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/Inputfile_stand_NESK.d -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/Makefile.internal -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/Makefile_Opacities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/Makefile_Opacities -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/ProfileExample.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/ProfileExample.profile -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/README.md -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/WriteTxtForInterpolation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/WriteTxtForInterpolation.sh -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/plotInterpolatedCompactHDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/plotInterpolatedCompactHDF.m -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/plotInterpolatedHDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/plotInterpolatedHDF.m -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/profile.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/profile.d -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/wlInterpolateAb.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/wlInterpolateAb.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/wlInterpolateBrem.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/wlInterpolateBrem.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/wlInterpolateIso.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/wlInterpolateIso.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/wlInterpolateNES.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/wlInterpolateNES.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/wlInterpolatePair.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/wlInterpolatePair.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/wlOpacityAlignTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/wlOpacityAlignTest.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/wlOpacityFieldsTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/wlOpacityFieldsTest.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/wlOpacityPerformanceTest.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/wlOpacityPerformanceTest.F90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/wlOpacityTableResolutionTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/wlOpacityTableResolutionTest.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Opacities/wlReadOpacityTableTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Opacities/wlReadOpacityTableTest.f90 -------------------------------------------------------------------------------- /Distributions/UnitTests/Profiles/CHIMERA/Chimera009ms.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Profiles/CHIMERA/Chimera009ms.dat -------------------------------------------------------------------------------- /Distributions/UnitTests/Profiles/CHIMERA/Chimera100ms.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Profiles/CHIMERA/Chimera100ms.dat -------------------------------------------------------------------------------- /Distributions/UnitTests/Profiles/CHIMERA/ChimeraBounce.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Profiles/CHIMERA/ChimeraBounce.dat -------------------------------------------------------------------------------- /Distributions/UnitTests/Profiles/CHIMERA/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Profiles/CHIMERA/ReadMe.txt -------------------------------------------------------------------------------- /Distributions/UnitTests/Profiles/ExpandedProfiles/FidOutput0ms.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Profiles/ExpandedProfiles/FidOutput0ms.d -------------------------------------------------------------------------------- /Distributions/UnitTests/Profiles/ExpandedProfiles/FidOutput100ms.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Profiles/ExpandedProfiles/FidOutput100ms.d -------------------------------------------------------------------------------- /Distributions/UnitTests/Profiles/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Profiles/README.txt -------------------------------------------------------------------------------- /Distributions/UnitTests/Profiles/SimpleProfiles/Output0ms.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Profiles/SimpleProfiles/Output0ms.d -------------------------------------------------------------------------------- /Distributions/UnitTests/Profiles/SimpleProfiles/Output100ms.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Profiles/SimpleProfiles/Output100ms.d -------------------------------------------------------------------------------- /Distributions/UnitTests/Profiles/SimpleProfiles/wl-EOS-LS220-DirectCall-0msPostBounce.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/Profiles/SimpleProfiles/wl-EOS-LS220-DirectCall-0msPostBounce.d -------------------------------------------------------------------------------- /Distributions/UnitTests/ThermoState/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/ThermoState/Executables/Makefile -------------------------------------------------------------------------------- /Distributions/UnitTests/ThermoState/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/ThermoState/Makefile -------------------------------------------------------------------------------- /Distributions/UnitTests/ThermoState/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/ThermoState/Makefile.internal -------------------------------------------------------------------------------- /Distributions/UnitTests/ThermoState/Makefile_ThermoState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/ThermoState/Makefile_ThermoState -------------------------------------------------------------------------------- /Distributions/UnitTests/ThermoState/wlThermoStateTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/UnitTests/ThermoState/wlThermoStateTest.f90 -------------------------------------------------------------------------------- /Distributions/Workflow/SetEnvironment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Distributions/Workflow/SetEnvironment.sh -------------------------------------------------------------------------------- /Documents/Opacities.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Documents/Opacities.pdf -------------------------------------------------------------------------------- /Guide_for_Developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/Guide_for_Developers.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/README.md -------------------------------------------------------------------------------- /TableCreator/Build/Makefile_Build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Build/Makefile_Build -------------------------------------------------------------------------------- /TableCreator/Build/Makefile_Path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Build/Makefile_Path -------------------------------------------------------------------------------- /TableCreator/Build/Makefile_WeakLib_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Build/Makefile_WeakLib_ObjectFiles -------------------------------------------------------------------------------- /TableCreator/EOSSource/ChimeraModules/wlIOModuleCHIMERA.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/ChimeraModules/wlIOModuleCHIMERA.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/EquationsOfState/BuildEoSTable.md: -------------------------------------------------------------------------------- 1 | ## Buid EoS Table 2 | -------------------------------------------------------------------------------- /TableCreator/EOSSource/EquationsOfState/LattimerSwesty/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/EquationsOfState/LattimerSwesty/Executables/Makefile -------------------------------------------------------------------------------- /TableCreator/EOSSource/EquationsOfState/LattimerSwesty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/EquationsOfState/LattimerSwesty/Makefile -------------------------------------------------------------------------------- /TableCreator/EOSSource/EquationsOfState/LattimerSwesty/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/EquationsOfState/LattimerSwesty/Makefile.internal -------------------------------------------------------------------------------- /TableCreator/EOSSource/EquationsOfState/LattimerSwesty/Makefile_CreateTable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/EquationsOfState/LattimerSwesty/Makefile_CreateTable -------------------------------------------------------------------------------- /TableCreator/EOSSource/EquationsOfState/LattimerSwesty/Makefile_EOS_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/EquationsOfState/LattimerSwesty/Makefile_EOS_ObjectFiles -------------------------------------------------------------------------------- /TableCreator/EOSSource/EquationsOfState/LattimerSwesty/wlCreateEquationOfStateTable.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/EquationsOfState/LattimerSwesty/wlCreateEquationOfStateTable.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/TableOperations/TableFinishing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/TableOperations/TableFinishing/Makefile -------------------------------------------------------------------------------- /TableCreator/EOSSource/TableOperations/TableFinishing/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/TableOperations/TableFinishing/Makefile.internal -------------------------------------------------------------------------------- /TableCreator/EOSSource/TableOperations/TableFinishing/wlTableFinisher.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/TableOperations/TableFinishing/wlTableFinisher.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ChimeraInterpolation/wlChimeraInterpolationTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ChimeraInterpolation/wlChimeraInterpolationTest.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ChimeraReader1D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ChimeraReader1D/Makefile -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ChimeraReader1D/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ChimeraReader1D/Makefile.internal -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ChimeraReader1D/wlChimeraProfileReader1DTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ChimeraReader1D/wlChimeraProfileReader1DTest.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/EOSInterpolation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/EOSInterpolation/Makefile -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/EOSInterpolation/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/EOSInterpolation/Makefile.internal -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/EOSInterpolation/backup.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/EOSInterpolation/backup.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/EOSInterpolation/wlInterpolationTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/EOSInterpolation/wlInterpolationTest.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/GreyVariables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/GreyVariables/Makefile -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/GreyVariables/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/GreyVariables/Makefile.internal -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/GreyVariables/wlGreyVariablesTEST.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/GreyVariables/wlGreyVariablesTEST.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/HDFInversion/wlHDFInversionTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/HDFInversion/wlHDFInversionTest.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/MaskTest/wlMaskTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/MaskTest/wlMaskTest.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/OpacityInterpolation/wlOpacityDerivative.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/OpacityInterpolation/wlOpacityDerivative.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/OpacityInterpolation/wlOpacityInterpolationAccuracyTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/OpacityInterpolation/wlOpacityInterpolationAccuracyTest.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/Parallel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/Parallel/Makefile -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/Parallel/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/Parallel/Makefile.internal -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/Parallel/wlParallelReadTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/Parallel/wlParallelReadTest.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/PressureInversionComparison/wlPressureInversionTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/PressureInversionComparison/wlPressureInversionTest.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/InterpolateAllTestCSeriesRes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/InterpolateAllTestCSeriesRes.d -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/InterpolateAllTestDoubleTCseries.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/InterpolateAllTestDoubleTCseries.d -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/Makefile -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/Makefile.internal -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/NeutronChemPotTest.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/NeutronChemPotTest.d -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/Output0ms.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/Output0ms.d -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/SingleDerivativeTest.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/SingleDerivativeTest.d -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/backup.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/backup.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/chimerafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/chimerafile -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/dUdt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/dUdt.d -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/logfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/logfile -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/wlProfileInterpolationTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInterpolationComparison/wlProfileInterpolationTest.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/ProfileInversionComparison/wlProfileInversionTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/ProfileInversionComparison/wlProfileInversionTest.f90 -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/TableOrganization/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/TableOrganization/Makefile -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/TableOrganization/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/TableOrganization/Makefile.internal -------------------------------------------------------------------------------- /TableCreator/EOSSource/UnitTests/TableOrganization/wlTableOrganizationTest.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/EOSSource/UnitTests/TableOrganization/wlTableOrganizationTest.f90 -------------------------------------------------------------------------------- /TableCreator/Old/BCK/BCK_EoS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/BCK/BCK_EoS.f -------------------------------------------------------------------------------- /TableCreator/Old/BCK/EOS_BCK_MODULE.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/BCK/EOS_BCK_MODULE.f90 -------------------------------------------------------------------------------- /TableCreator/Old/BCK/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/BCK/Makefile_Dependencies -------------------------------------------------------------------------------- /TableCreator/Old/BCK/net.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/BCK/net.f90 -------------------------------------------------------------------------------- /TableCreator/Old/COMPOSE/HempelSteiner/SFHoeos/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/COMPOSE/HempelSteiner/SFHoeos/README.txt -------------------------------------------------------------------------------- /TableCreator/Old/COMPOSE/HempelSteiner/SFHoeos/eos.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/COMPOSE/HempelSteiner/SFHoeos/eos.nb -------------------------------------------------------------------------------- /TableCreator/Old/COMPOSE/HempelSteiner/SFHoeos/eos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/COMPOSE/HempelSteiner/SFHoeos/eos.pdf -------------------------------------------------------------------------------- /TableCreator/Old/COMPOSE/HempelSteiner/SFHoeos/eos.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/COMPOSE/HempelSteiner/SFHoeos/eos.t -------------------------------------------------------------------------------- /TableCreator/Old/COMPOSE/HempelSteiner/SFHoeos/eos.yq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/COMPOSE/HempelSteiner/SFHoeos/eos.yq -------------------------------------------------------------------------------- /TableCreator/Old/EOSInterface/Build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/EOSInterface/Build/Makefile -------------------------------------------------------------------------------- /TableCreator/Old/EOSInterface/Build/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/EOSInterface/Build/Makefile.internal -------------------------------------------------------------------------------- /TableCreator/Old/EOSInterface/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/EOSInterface/Makefile_Dependencies -------------------------------------------------------------------------------- /TableCreator/Old/EOSInterface/wlExtEOSWrapperModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/EOSInterface/wlExtEOSWrapperModule.f90 -------------------------------------------------------------------------------- /TableCreator/Old/EOSInterface/wlExtInitializeEOS.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/EOSInterface/wlExtInitializeEOS.f90 -------------------------------------------------------------------------------- /TableCreator/Old/EOSInterface/wlInterrogateEOS.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/EOSInterface/wlInterrogateEOS.f90 -------------------------------------------------------------------------------- /TableCreator/Old/LS/Data/bd180.atb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/Data/bd180.atb -------------------------------------------------------------------------------- /TableCreator/Old/LS/Data/bd220.atb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/Data/bd220.atb -------------------------------------------------------------------------------- /TableCreator/Old/LS/Data/bd375.atb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/Data/bd375.atb -------------------------------------------------------------------------------- /TableCreator/Old/LS/Data/fermi.atb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/Data/fermi.atb -------------------------------------------------------------------------------- /TableCreator/Old/LS/Data/max180.atb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/Data/max180.atb -------------------------------------------------------------------------------- /TableCreator/Old/LS/Data/max220.atb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/Data/max220.atb -------------------------------------------------------------------------------- /TableCreator/Old/LS/Data/max375.atb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/Data/max375.atb -------------------------------------------------------------------------------- /TableCreator/Old/LS/EL_EOS_MODULE.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/EL_EOS_MODULE.f90 -------------------------------------------------------------------------------- /TableCreator/Old/LS/EOS_M4C_MODULE.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/EOS_M4C_MODULE.f90 -------------------------------------------------------------------------------- /TableCreator/Old/LS/LattimerSwesty.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/LattimerSwesty.f -------------------------------------------------------------------------------- /TableCreator/Old/LS/MAXWEL_MODULE.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/MAXWEL_MODULE.f90 -------------------------------------------------------------------------------- /TableCreator/Old/LS/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/Makefile_Dependencies -------------------------------------------------------------------------------- /TableCreator/Old/LS/e_p_eos.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/e_p_eos.f90 -------------------------------------------------------------------------------- /TableCreator/Old/LS/el_eos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/el_eos.inc -------------------------------------------------------------------------------- /TableCreator/Old/LS/eos_m4c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/eos_m4c.inc -------------------------------------------------------------------------------- /TableCreator/Old/LS/force.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/force.inc -------------------------------------------------------------------------------- /TableCreator/Old/LS/initferm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/initferm.f -------------------------------------------------------------------------------- /TableCreator/Old/LS/loadmx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/LS/loadmx.f -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_EnergyBinCenter.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_EnergyBinCenter.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_EnergyBinWidth.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_EnergyBinWidth.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_R_In___001.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_R_In___001.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_R_In___002.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_R_In___002.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_R_In___003.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_R_In___003.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_R_In___004.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_R_In___004.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_R_In___005.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_R_In___005.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_R_Out__001.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_R_Out__001.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_R_Out__002.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_R_Out__002.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_R_Out__003.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_R_Out__003.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_R_Out__004.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_R_Out__004.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/Data/NES_RATES_R_Out__005.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/Data/NES_RATES_R_Out__005.dat -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/ComputeNesRate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/ComputeNesRate.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/ComputeNesRate_Symm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/ComputeNesRate_Symm.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/ComputeTempFromIntEnergy_Bisection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/ComputeTempFromIntEnergy_Bisection.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/EnforceRinoutSym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/EnforceRinoutSym.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/F_FUN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/F_FUN.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/F_JAC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/F_JAC.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/InitializeNES.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/InitializeNES.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/InitializeNES_Interp_rhoTYe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/InitializeNES_Interp_rhoTYe.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/L_FUN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/L_FUN.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Newton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Newton.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/PenalizationAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/PenalizationAnalysis.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/ReadData1D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/ReadData1D.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/ReadData2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/ReadData2D.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Relaxation_Analytic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Relaxation_Analytic.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Relaxation_Analytic_001.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Relaxation_Analytic_001.mat -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/SolveNES_FD_SemiImplicit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/SolveNES_FD_SemiImplicit.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/UpdateNeqAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/UpdateNeqAnalysis.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_ForwardEular.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_ForwardEular.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_ForwardEular_T.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_ForwardEular_T.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_ImplicitEuler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_ImplicitEuler.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_ImplicitEuler_T.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_ImplicitEuler_T.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_NESKernel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_NESKernel.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_Neq_FD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_Neq_FD.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod2.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod_T.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod_T.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod_T_1stOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod_T_1stOrder.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod_dCconstant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod_dCconstant.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod_dCconstant_T.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_PenalizationMethod_dCconstant_T.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_SSPRK3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_SSPRK3.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_SSPRK3_T.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_SSPRK3_T.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_SSPRK3_T2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_SSPRK3_T2.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/Update_Temperature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/Update_Temperature.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/determine_dt_forwardEular.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/determine_dt_forwardEular.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/determine_dt_penalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/determine_dt_penalization.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/isNeq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/isNeq.m -------------------------------------------------------------------------------- /TableCreator/Old/Math/MatlabCode/plotLinearRelaxation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Math/MatlabCode/plotLinearRelaxation.m -------------------------------------------------------------------------------- /TableCreator/Old/Tables/EquationsOfState/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Tables/EquationsOfState/README.txt -------------------------------------------------------------------------------- /TableCreator/Old/Tables/Opacities/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/Old/Tables/Opacities/README.txt -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/B85_Absorption.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/B85_Absorption.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/B85_pair.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/B85_pair.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/B85_scattIso.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/B85_scattIso.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/B85_scattNES.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/B85_scattNES.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/Makefile_ObjectFiles -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/PRB_CNTL_MODULE.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/PRB_CNTL_MODULE.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/abem_cal_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/abem_cal_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/abemfrnp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/abemfrnp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/abemfrnpetanp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/abemfrnpetanp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/abemnc_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/abemnc_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/abemrgn_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/abemrgn_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/etaxx.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/etaxx.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/ff.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/ff.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/gquad.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/gquad.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/kind_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/kind_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/nes_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/nes_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/numerical_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/numerical_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/pair_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/pair_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/paircal_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/paircal_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/physcnst_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/physcnst_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_gt_wp_e_lt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_gt_wp_e_lt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_gt_wp_lt_e_lt_w.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_gt_wp_lt_e_lt_w.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_gt_wp_w_lt_e.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_gt_wp_w_lt_e.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_lt_wp_e_lt_w.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_lt_wp_e_lt_w.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_lt_wp_e_lt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_lt_wp_e_lt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_lt_wp_wp_lt_e.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/pr_w_lt_wp_wp_lt_e.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/scatergn_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/scatergn_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/scatical_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/scatical_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/sctlgndv_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/sctlgndv_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/w_gt_wp_e_gt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/w_gt_wp_e_gt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/w_gt_wp_e_lt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/w_gt_wp_e_lt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/w_gt_wp_e_to_inf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/w_gt_wp_e_to_inf.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/w_lt_wp_e_gt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/w_lt_wp_e_gt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/w_lt_wp_e_lt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/w_lt_wp_e_lt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Chimera/w_lt_wp_e_to_inf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Chimera/w_lt_wp_e_to_inf.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Executables/Makefile -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/GreyVariables.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/GreyVariables.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Makefile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Makefile.internal -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Makefile_CreateTable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Makefile_CreateTable -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/Makefile_OpacityBruenn85_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/Makefile_OpacityBruenn85_ObjectFiles -------------------------------------------------------------------------------- /TableCreator/OpacitySource/Bruenn85/wlCreateOpacityTable.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/Bruenn85/wlCreateOpacityTable.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/BuildOpacityTable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/BuildOpacityTable.md -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Boltztran/Makefile_ObjectFiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/Makefile_Dependencies -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/Makefile_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/Makefile_ObjectFiles -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/PRB_CNTL_MODULE.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/PRB_CNTL_MODULE.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/ReadMe: -------------------------------------------------------------------------------- 1 | This directory needs to be checked with Chimera code 2 | -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/abem_cal_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/abem_cal_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/abem_module_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/abem_module_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/abem_nuclei_Bruenn85_FFN_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/abem_nuclei_Bruenn85_FFN_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/abem_nucleons_Reddy_et_al_1998_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/abem_nucleons_Reddy_et_al_1998_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/abem_nucleons_isoenergetic_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/abem_nucleons_isoenergetic_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/abemfrnp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/abemfrnp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/abemfrnpetanp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/abemfrnpetanp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/abemnc_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/abemnc_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/abemrgn_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/abemrgn_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/cc_weak_mag_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/cc_weak_mag_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/ec_table_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/ec_table_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/etaxx.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/etaxx.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/ff.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/ff.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/gquad.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/gquad.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/ion_ion_corrections_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/ion_ion_corrections_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/kind_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/kind_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/load_polylog_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/load_polylog_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/nc_many_body_corrections_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/nc_many_body_corrections_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/nc_weak_mag_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/nc_weak_mag_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/nes_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/nes_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/numerical_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/numerical_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/pair_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/pair_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/paircal_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/paircal_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/physcnst_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/physcnst_module.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/polylog.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/polylog.tab -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/polylog_module_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/polylog_module_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_gt_wp_e_lt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_gt_wp_e_lt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_gt_wp_lt_e_lt_w.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_gt_wp_lt_e_lt_w.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_gt_wp_w_lt_e.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_gt_wp_w_lt_e.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_lt_wp_e_lt_w.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_lt_wp_e_lt_w.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_lt_wp_e_lt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_lt_wp_e_lt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_lt_wp_wp_lt_e.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/pr_w_lt_wp_wp_lt_e.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/scatergn_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/scatergn_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/scatical_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/scatical_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/sctlgndv_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/sctlgndv_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_gt_wp_e_gt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_gt_wp_e_gt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_gt_wp_e_lt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_gt_wp_e_lt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_gt_wp_e_to_inf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_gt_wp_e_to_inf.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_lt_wp_e_gt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_lt_wp_e_gt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_lt_wp_e_lt_wp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_lt_wp_e_lt_wp.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_lt_wp_e_to_inf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Chimera/w_lt_wp_e_to_inf.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Executables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Executables/Makefile -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Executables/ec_table.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Executables/ec_table.d -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Fischer/CC_module_weaklib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Fischer/CC_module_weaklib.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Fischer/Makefile_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Fischer/Makefile_Dependencies -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Fischer/Makefile_ObjectFiles: -------------------------------------------------------------------------------- 1 | FULL_KINEMATICS = \ 2 | CC_module_weaklib.o 3 | -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/HR98_Bremsstrahlung.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/HR98_Bremsstrahlung.f90 -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Makefile_CreateTable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Makefile_CreateTable -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Makefile_Opacity_FullWeakPhysics_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Makefile_Opacity_FullWeakPhysics_Dependencies -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/Makefile_Opacity_FullWeakPhysics_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/Makefile_Opacity_FullWeakPhysics_ObjectFiles -------------------------------------------------------------------------------- /TableCreator/OpacitySource/FullWeakPhysics/wlCreateOpacityTable.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/OpacitySource/FullWeakPhysics/wlCreateOpacityTable.F90 -------------------------------------------------------------------------------- /TableCreator/SharedModules/GaussianQuadrature.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/SharedModules/GaussianQuadrature.f90 -------------------------------------------------------------------------------- /TableCreator/SharedModules/Makefile_SharedModules_Dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/SharedModules/Makefile_SharedModules_Dependencies -------------------------------------------------------------------------------- /TableCreator/SharedModules/Makefile_SharedModules_ObjectFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/SharedModules/Makefile_SharedModules_ObjectFiles -------------------------------------------------------------------------------- /TableCreator/SharedModules/fexp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/SharedModules/fexp.f90 -------------------------------------------------------------------------------- /TableCreator/SharedModules/glaquad.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/SharedModules/glaquad.f90 -------------------------------------------------------------------------------- /TableCreator/SharedModules/wlExtNumericalModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/SharedModules/wlExtNumericalModule.f90 -------------------------------------------------------------------------------- /TableCreator/SharedModules/wlExtPhysicalConstantsModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/SharedModules/wlExtPhysicalConstantsModule.f90 -------------------------------------------------------------------------------- /TableCreator/SharedModules/wlExtTableFinishingModule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkiller-astro/weaklib/HEAD/TableCreator/SharedModules/wlExtTableFinishingModule.f90 --------------------------------------------------------------------------------