├── Makefile ├── NOTICE.ibm ├── README ├── README.DA ├── README.NMM ├── README.SSIB ├── README.hydro ├── README.ibm ├── README.io_config ├── README.rsl_output ├── README.station_hist ├── README.windturbine ├── README_test_cases ├── Registry ├── Registry.CONVERT ├── Registry.EM ├── Registry.EM_CHEM ├── Registry.EM_COMMON ├── Registry.EM_COMMON.var ├── Registry.NMM ├── Registry.wrfvar ├── registry.afwa ├── registry.avgflx ├── registry.bdy_perturb ├── registry.cam ├── registry.chem ├── registry.clm ├── registry.diags ├── registry.dimspec ├── registry.elec ├── registry.fire ├── registry.io_boilerplate ├── registry.lake ├── registry.les ├── registry.sbm ├── registry.ssib ├── registry.stoch ├── registry.tornado ├── registry.tracker ├── registry.var └── registry.var_chem ├── arch ├── Config.pl ├── Config_new.pl ├── Config_old.pl ├── README.canonical_stanza ├── SOURCEME_WINCCS_WRF ├── archive_configure.defaults ├── conf_tokens ├── config_old ├── configure_new.defaults ├── configure_old.defaults ├── cray_csd.sed ├── md_calls.inc ├── no_file_line.sed ├── noopt_exceptions ├── noopt_exceptions_f ├── postamble_new ├── postamble_old ├── preamble_new ├── preamble_old ├── standard.sed └── win_mpif.h ├── clean ├── compile ├── configure ├── dyn_em ├── Makefile ├── README.tenddec ├── adapt_timestep_em.F ├── couple_or_uncouple_em.F ├── depend.dyn_em ├── init_modules_em.F ├── interp_domain_em.F ├── module_advect_em.F ├── module_after_all_rk_steps.F ├── module_avgflx_em.F ├── module_bc_em.F ├── module_big_step_utilities_em.F ├── module_convtrans_prep.F ├── module_damping_em.F ├── module_diffusion_em.F ├── module_em.F ├── module_first_rk_step_part1.F ├── module_first_rk_step_part2.F ├── module_force_scm.F ├── module_ibm.F ├── module_init_utilities.F ├── module_initialize_b_wave.F ├── module_initialize_convrad.F ├── module_initialize_fire.F ├── module_initialize_grav2d_x.F ├── module_initialize_heldsuarez.F ├── module_initialize_hill2d_x.F ├── module_initialize_les.F ├── module_initialize_quarter_ss.F ├── module_initialize_real.F ├── module_initialize_scm_xy.F ├── module_initialize_seabreeze2d_x.F ├── module_initialize_squall2d_x.F ├── module_initialize_squall2d_y.F ├── module_initialize_tropical_cyclone.F ├── module_polarfft.F ├── module_positive_definite.F ├── module_ranarray.F ├── module_sfs_driver.F ├── module_sfs_nba.F ├── module_small_step_em.F ├── module_solvedebug_em.F ├── module_stoch.F ├── module_stoch_les_inflow_perts.F ├── module_wps_io_arw.F ├── namelist_remappings_em.h ├── nest_init_utils.F ├── shift_domain_em.F ├── solve_em.F └── start_em.F ├── dyn_exp ├── Makefile ├── README ├── init_modules_exp.F ├── module_exp.F ├── module_initialize_exp.F └── solve_exp.F ├── dyn_nmm ├── BALANCE_COMS.F ├── BALANCE_PARS.F ├── BUCKETS.F ├── CLTEND.F ├── DSTRB.F ├── Makefile ├── NMM_NEST_UTILS1.F ├── RDTEMP.F ├── adve_optim.h ├── adve_orig.h ├── depend.dyn_nmm ├── init_modules_nmm.F ├── module_ADVECTION.F ├── module_BC_NMM.F ├── module_BNDRY_COND.F ├── module_CLDWTR.F ├── module_CTLBLK.F ├── module_DIFFUSION_NMM.F ├── module_GWD.F ├── module_HIFREQ.F ├── module_IGWAVE_ADJUST.F ├── module_INDX.F ├── module_MPP.F ├── module_MPPINIT.F ├── module_NEST_UTIL.F ├── module_NONHY_DYNAM.F ├── module_PHYSICS_CALLS.F ├── module_PRECIP_ADJUST.F ├── module_SMOOTH_TERRAIN.F ├── module_STATS_FOR_MOVE.F ├── module_TERRAIN.F ├── module_TIMERS.F ├── module_ZEROX.F ├── module_initialize_real.F ├── module_initialize_tropical_cyclone.F ├── module_membrane_mslp.F ├── module_relax.F ├── module_si_io_nmm.F ├── module_swath.F ├── module_tornado_genesis.F ├── module_tracker.F ├── nmm_get_cpu.c ├── nmm_loop_basemacros.h ├── nmm_loop_macros.h ├── shift_domain_nmm.F ├── solve_nmm.F └── start_domain_nmm.F ├── external ├── IOAPI ├── Makefile ├── RSL_LITE │ ├── buf_for_proc.c │ ├── c_code.c │ ├── cycle.c │ ├── f_pack.F90 │ ├── f_xpose.F90 │ ├── gen_comms.c │ ├── makefile │ ├── module_dm.F │ ├── period.c │ ├── rsl_bcast.c │ ├── rsl_lite.h │ ├── rsl_malloc.c │ ├── swap.c │ ├── task_for_point.c │ └── tfp_tester.F ├── atm_ocn │ ├── Makefile │ ├── atm_comm.F │ ├── atm_comm_pom.F │ ├── atm_tiles.F │ ├── cmpcomm.F │ ├── module_PATCH_QUILT.F │ └── mpi_more.F ├── esmf_time_f90 │ ├── ESMF_Alarm.F90 │ ├── ESMF_AlarmClock.F90 │ ├── ESMF_Base.F90 │ ├── ESMF_BaseTime.F90 │ ├── ESMF_Calendar.F90 │ ├── ESMF_Clock.F90 │ ├── ESMF_Fraction.F90 │ ├── ESMF_Macros.inc │ ├── ESMF_Mod.F90 │ ├── ESMF_Stubs.F90 │ ├── ESMF_Time.F90 │ ├── ESMF_TimeInterval.F90 │ ├── ESMF_TimeMgr.inc │ ├── Makefile │ ├── Meat.F90 │ ├── Test1.F90 │ ├── Test1.out.correct │ ├── module_symbols_util.F90 │ ├── module_utility.F90 │ └── testall.csh ├── fftpack │ ├── 77to90.csh │ ├── README │ ├── f90split.f90 │ ├── f90split.sh │ └── fftpack5 │ │ ├── Makefile │ │ ├── c1f2kb.F │ │ ├── c1f2kf.F │ │ ├── c1f3kb.F │ │ ├── c1f3kf.F │ │ ├── c1f4kb.F │ │ ├── c1f4kf.F │ │ ├── c1f5kb.F │ │ ├── c1f5kf.F │ │ ├── c1fgkb.F │ │ ├── c1fgkf.F │ │ ├── c1fm1b.F │ │ ├── c1fm1f.F │ │ ├── cfft1b.F │ │ ├── cfft1f.F │ │ ├── cfft1i.F │ │ ├── cfft2b.F │ │ ├── cfft2f.F │ │ ├── cfft2i.F │ │ ├── cfftmb.F │ │ ├── cfftmf.F │ │ ├── cfftmi.F │ │ ├── cmf2kb.F │ │ ├── cmf2kf.F │ │ ├── cmf3kb.F │ │ ├── cmf3kf.F │ │ ├── cmf4kb.F │ │ ├── cmf4kf.F │ │ ├── cmf5kb.F │ │ ├── cmf5kf.F │ │ ├── cmfgkb.F │ │ ├── cmfgkf.F │ │ ├── cmfm1b.F │ │ ├── cmfm1f.F │ │ ├── cosq1b.F │ │ ├── cosq1f.F │ │ ├── cosq1i.F │ │ ├── cosqb1.F │ │ ├── cosqf1.F │ │ ├── cosqmb.F │ │ ├── cosqmf.F │ │ ├── cosqmi.F │ │ ├── cost1b.F │ │ ├── cost1f.F │ │ ├── cost1i.F │ │ ├── costb1.F │ │ ├── costf1.F │ │ ├── costmb.F │ │ ├── costmf.F │ │ ├── costmi.F │ │ ├── d1f2kb.F │ │ ├── d1f2kf.F │ │ ├── d1f3kb.F │ │ ├── d1f3kf.F │ │ ├── d1f4kb.F │ │ ├── d1f4kf.F │ │ ├── d1f5kb.F │ │ ├── d1f5kf.F │ │ ├── d1fgkb.F │ │ ├── d1fgkf.F │ │ ├── dcosq1b.F │ │ ├── dcosq1f.F │ │ ├── dcosq1i.F │ │ ├── dcosqb1.F │ │ ├── dcosqf1.F │ │ ├── dcost1b.F │ │ ├── dcost1f.F │ │ ├── dcost1i.F │ │ ├── dcostb1.F │ │ ├── dcostf1.F │ │ ├── dfft1b.F │ │ ├── dfft1f.F │ │ ├── dfft1i.F │ │ ├── dfftb1.F │ │ ├── dfftf1.F │ │ ├── dffti1.F │ │ ├── dsint1b.F │ │ ├── dsint1f.F │ │ ├── dsint1i.F │ │ ├── dsintb1.F │ │ ├── dsintf1.F │ │ ├── factor.F │ │ ├── mcfti1.F │ │ ├── mcsqb1.F │ │ ├── mcsqf1.F │ │ ├── mcstb1.F │ │ ├── mcstf1.F │ │ ├── mradb2.F │ │ ├── mradb3.F │ │ ├── mradb4.F │ │ ├── mradb5.F │ │ ├── mradbg.F │ │ ├── mradf2.F │ │ ├── mradf3.F │ │ ├── mradf4.F │ │ ├── mradf5.F │ │ ├── mradfg.F │ │ ├── mrftb1.F │ │ ├── mrftf1.F │ │ ├── mrfti1.F │ │ ├── msntb1.F │ │ ├── msntf1.F │ │ ├── r1f2kb.F │ │ ├── r1f2kf.F │ │ ├── r1f3kb.F │ │ ├── r1f3kf.F │ │ ├── r1f4kb.F │ │ ├── r1f4kf.F │ │ ├── r1f5kb.F │ │ ├── r1f5kf.F │ │ ├── r1fgkb.F │ │ ├── r1fgkf.F │ │ ├── r4_factor.F │ │ ├── r4_mcfti1.F │ │ ├── r4_tables.F │ │ ├── r8_factor.F │ │ ├── r8_mcfti1.F │ │ ├── r8_tables.F │ │ ├── rfft1b.F │ │ ├── rfft1f.F │ │ ├── rfft1i.F │ │ ├── rfft2b.F │ │ ├── rfft2f.F │ │ ├── rfft2i.F │ │ ├── rfftb1.F │ │ ├── rfftf1.F │ │ ├── rffti1.F │ │ ├── rfftmb.F │ │ ├── rfftmf.F │ │ ├── rfftmi.F │ │ ├── sinq1b.F │ │ ├── sinq1f.F │ │ ├── sinq1i.F │ │ ├── sinqmb.F │ │ ├── sinqmf.F │ │ ├── sinqmi.F │ │ ├── sint1b.F │ │ ├── sint1f.F │ │ ├── sint1i.F │ │ ├── sintb1.F │ │ ├── sintf1.F │ │ ├── sintmb.F │ │ ├── sintmf.F │ │ ├── sintmi.F │ │ ├── tables.F │ │ ├── xercon.F │ │ ├── xerfft.F │ │ ├── z1f2kb.F │ │ ├── z1f2kf.F │ │ ├── z1f3kb.F │ │ ├── z1f3kf.F │ │ ├── z1f4kb.F │ │ ├── z1f4kf.F │ │ ├── z1f5kb.F │ │ ├── z1f5kf.F │ │ ├── z1fgkb.F │ │ ├── z1fgkf.F │ │ ├── z1fm1b.F │ │ ├── z1fm1f.F │ │ ├── zfft1b.F │ │ ├── zfft1f.F │ │ ├── zfft1i.F │ │ ├── zfft2b.F │ │ ├── zfft2f.F │ │ ├── zfft2i.F │ │ ├── zfftmb.F │ │ ├── zfftmf.F │ │ ├── zfftmi.F │ │ ├── zmf2kb.F │ │ ├── zmf2kf.F │ │ ├── zmf3kb.F │ │ ├── zmf3kf.F │ │ ├── zmf4kb.F │ │ ├── zmf4kf.F │ │ ├── zmf5kb.F │ │ ├── zmf5kf.F │ │ ├── zmfgkb.F │ │ ├── zmfgkf.F │ │ ├── zmfm1b.F │ │ └── zmfm1f.F ├── io_esmf │ ├── README.io_esmf │ ├── TODO.list │ ├── ext_esmf_open_for_read.F90 │ ├── ext_esmf_open_for_write.F90 │ ├── ext_esmf_read_field.F90 │ ├── ext_esmf_write_field.F90 │ ├── io_esmf.F90 │ ├── makefile │ ├── module_esmf_extensions.F90 │ ├── module_symbols_util.F90 │ └── module_utility.F90 ├── io_grib1 │ ├── MEL_grib1 │ │ ├── FTP_getfile.c │ │ ├── Makefile │ │ ├── README │ │ ├── apply_bitmap.c │ │ ├── display_gribhdr.c │ │ ├── dprints.h │ │ ├── gbyte.c │ │ ├── grib.h │ │ ├── grib_dec.c │ │ ├── grib_enc.c │ │ ├── grib_lookup.h │ │ ├── grib_seek.c │ │ ├── grib_uthin.c │ │ ├── gribfuncs.h │ │ ├── gribgetbds.c │ │ ├── gribgetbms.c │ │ ├── gribgetgds.c │ │ ├── gribgetpds.c │ │ ├── gribhdr2file.c │ │ ├── gribputbds.c │ │ ├── gribputgds.c │ │ ├── gribputpds.c │ │ ├── hdr_print.c │ │ ├── init_dec_struct.c │ │ ├── init_enc_struct.c │ │ ├── init_gribhdr.c │ │ ├── init_struct.c │ │ ├── input.h │ │ ├── isdb.h │ │ ├── ld_dec_lookup.c │ │ ├── ld_enc_input.c │ │ ├── ld_enc_lookup.c │ │ ├── ld_grib_origctrs.c │ │ ├── make_default_grbfn.c │ │ ├── make_grib_log.c │ │ ├── map_lvl.c │ │ ├── map_parm.c │ │ ├── pack_spatial.c │ │ ├── prt_badmsg.c │ │ ├── prt_inp_struct.c │ │ ├── set_bytes.c │ │ ├── swap.c │ │ ├── test_set_bytes.c │ │ └── upd_child_errmsg.c │ ├── Makefile │ ├── README.io_grib1 │ ├── WGRIB │ │ ├── BDSunpk.c │ │ ├── Changes │ │ ├── Makefile │ │ ├── PDS_date.c │ │ ├── PDStimes.c │ │ ├── README │ │ ├── bds.h │ │ ├── bms.h │ │ ├── cnames.c │ │ ├── cnames.h │ │ ├── cptectable_254.c │ │ ├── dwdtable_002.c │ │ ├── dwdtable_201.c │ │ ├── dwdtable_202.c │ │ ├── dwdtable_203.c │ │ ├── ec_ext.c │ │ ├── ectable_128.c │ │ ├── ectable_129.c │ │ ├── ectable_130.c │ │ ├── ectable_131.c │ │ ├── ectable_140.c │ │ ├── ectable_150.c │ │ ├── ectable_151.c │ │ ├── ectable_160.c │ │ ├── ectable_170.c │ │ ├── ectable_180.c │ │ ├── ensemble.c │ │ ├── flt2ieee.c │ │ ├── gds.h │ │ ├── gds_grid.c │ │ ├── grib.h │ │ ├── gribtable.c │ │ ├── ibm2flt.c │ │ ├── intpower.c │ │ ├── levels.c │ │ ├── missing.c │ │ ├── nceptab_129.c │ │ ├── nceptab_130.c │ │ ├── nceptab_131.c │ │ ├── nceptable_opn.c │ │ ├── nceptable_reanal.c │ │ ├── ombtable.c │ │ ├── pds4.h │ │ ├── readgrib.c │ │ ├── seekgrib.c │ │ ├── src2all │ │ ├── wgrib_main.c │ │ └── wrtieee.c │ ├── diffwrf │ ├── grib1_routines.c │ ├── grib1_routines.h │ ├── grib1_util │ │ ├── Makefile │ │ ├── alloc_2d.c │ │ ├── alloc_2d.h │ │ ├── cfortran.h │ │ ├── dump │ │ ├── gribsize.incl │ │ ├── read_grib.c │ │ ├── read_grib.h │ │ ├── test_advance_time_str.c │ │ ├── test_rg_gribmap.c │ │ └── write_grib.c │ ├── gribmap.c │ ├── gribmap.h │ ├── io_grib1.F │ ├── test.grb │ ├── test_grib1_routines.F │ ├── test_gribmap.F90 │ ├── test_grid_info.F90 │ ├── test_io_grib1.F │ ├── test_read_gribmap.c │ ├── test_write_grib.c │ ├── trim.c │ └── wrf_status_codes.h ├── io_grib2 │ ├── Makefile │ ├── README.io_grib2 │ ├── bacio-1.3 │ │ ├── Makefile │ │ ├── README │ │ ├── bacio.v1.3.c │ │ ├── baciof.F │ │ ├── baciof.h │ │ └── clib.h │ ├── g2lib │ │ ├── CHANGES │ │ ├── Makefile │ │ ├── README │ │ ├── addfield.F │ │ ├── addgrid.F │ │ ├── addlocal.F │ │ ├── cmplxpack.F │ │ ├── compack.F │ │ ├── comunpack.F │ │ ├── dec_jpeg2000.c │ │ ├── dec_png.c │ │ ├── drstemplates.F │ │ ├── enc_jpeg2000.c │ │ ├── enc_png.c │ │ ├── g2grids.F │ │ ├── gb_info.F │ │ ├── gbytesc.F │ │ ├── gdt2gds.F │ │ ├── getdim.F │ │ ├── getfield.F │ │ ├── getg2i.F │ │ ├── getg2ir.F │ │ ├── getgb2.F │ │ ├── getgb2l.F │ │ ├── getgb2p.F │ │ ├── getgb2r.F │ │ ├── getgb2rp.F │ │ ├── getgb2s.F │ │ ├── getidx.F │ │ ├── getlocal.F │ │ ├── getpoly.F │ │ ├── gettemplates.F │ │ ├── gf_free.F │ │ ├── gf_getfld.F │ │ ├── gf_unpack1.F │ │ ├── gf_unpack2.F │ │ ├── gf_unpack3.F │ │ ├── gf_unpack4.F │ │ ├── gf_unpack5.F │ │ ├── gf_unpack6.F │ │ ├── gf_unpack7.F │ │ ├── grib2.doc │ │ ├── gribcreate.F │ │ ├── gribend.F │ │ ├── gribinfo.F │ │ ├── gribmod.F │ │ ├── gridtemplates.F │ │ ├── ixgb2.F │ │ ├── jpcpack.F │ │ ├── jpcunpack.F │ │ ├── misspack.F │ │ ├── mkieee.F │ │ ├── mova2i.c │ │ ├── pack_gp.F │ │ ├── params.F │ │ ├── pdstemplates.F │ │ ├── pngpack.F │ │ ├── pngunpack.F │ │ ├── proto.h │ │ ├── putgb2.F │ │ ├── rdieee.F │ │ ├── realloc.F │ │ ├── reduce.F │ │ ├── simpack.F │ │ ├── simunpack.F │ │ ├── skgb.F │ │ ├── specpack.F │ │ ├── specunpack.F │ │ └── utest │ │ │ ├── Makefile │ │ │ └── test_g2lib.F │ ├── grib2tbls_types.F │ ├── io_grib2.F │ ├── read_grib2map.F │ └── test_read_grib2map.F ├── io_grib_share │ ├── Makefile │ ├── TEST_RESULTS │ ├── build │ │ ├── application_rules.mk │ │ ├── binary_rules.mk │ │ ├── compile_rules.mk │ │ ├── config_rules.mk │ │ ├── depend_rules.mk │ │ ├── library_rules.mk │ │ ├── package_rules.mk │ │ ├── script_rules.mk │ │ ├── tcl_script_rules.mk │ │ ├── utest_rules.mk │ │ └── utility_rules.mk │ ├── get_region_center.c │ ├── get_region_center.h │ ├── gridnav.c │ ├── gridnav.h │ ├── io_grib_share.F │ ├── open_file.c │ ├── wrf_io_flags.h │ ├── wrf_projection.h │ └── wrf_status_codes.h ├── io_int │ ├── diffwrf.F90 │ ├── io_int.F90 │ ├── io_int_idx.c │ ├── io_int_idx.h │ ├── makefile │ ├── module_io_int_idx.F90 │ ├── module_io_int_read.F90 │ ├── test_io_idx.F90 │ └── test_io_mpi.f90 ├── io_mcel │ ├── configure.wrf.example │ ├── ext_mcel_open_for_read.F90 │ ├── ext_mcel_open_for_write.F90 │ ├── ext_mcel_read_field.F90 │ ├── ext_mcel_write_field.F90 │ ├── io_mcel.F90 │ ├── makefile │ └── timeconvert.c ├── io_netcdf │ ├── README │ ├── WRFIO.doc │ ├── diffwrf.F90 │ ├── ext_ncd_get_dom_ti.code │ ├── ext_ncd_get_var_td.code │ ├── ext_ncd_get_var_ti.code │ ├── ext_ncd_put_dom_ti.code │ ├── ext_ncd_put_var_td.code │ ├── ext_ncd_put_var_ti.code │ ├── field_routines.F90 │ ├── makefile │ ├── module_wrfsi_static.F90 │ ├── testWRFRead.F90 │ ├── testWRFWrite.F90 │ ├── transpose.code │ ├── vort.F90 │ └── wrf_io.F90 ├── io_phdf5 │ ├── INSTALL.htm │ ├── Makefile │ ├── README.phdf5 │ ├── wrf-phdf5.F90 │ ├── wrf-phdf5attr.F90 │ ├── wrf-phdf5attr.F90btg │ └── wrf-phdf5support.F90 ├── io_pio │ ├── Makefile │ ├── field_routines.F90 │ ├── module_wrfsi_static.F90 │ ├── pio_routines.F90 │ ├── read_bdy_routines.F90 │ ├── wrf_data_pio.F90 │ └── wrf_io.F90 ├── io_pnetcdf │ ├── Makefile │ ├── README │ ├── WRFIO.doc │ ├── ext_pnc_get_dom_ti.code │ ├── ext_pnc_get_var_td.code │ ├── ext_pnc_get_var_ti.code │ ├── ext_pnc_put_dom_ti.code │ ├── ext_pnc_put_var_td.code │ ├── ext_pnc_put_var_ti.code │ ├── field_routines.F90 │ ├── module_wrfsi_static.F90 │ ├── testWRFRead.F90 │ ├── testWRFWrite.F90 │ ├── transpose.code │ └── wrf_io.F90 └── ioapi_share │ ├── makefile │ ├── wrf_io_flags.h │ └── wrf_status_codes.h ├── frame ├── Makefile ├── clog.c ├── collect_on_comm.c ├── hires_timer.c ├── libmassv.F ├── loop_based_x_shift_code.h ├── loop_based_y_shift_code.h ├── md_calls.m4 ├── module_alloc_space.h ├── module_alloc_space_0.F ├── module_alloc_space_1.F ├── module_alloc_space_2.F ├── module_alloc_space_3.F ├── module_alloc_space_4.F ├── module_alloc_space_5.F ├── module_alloc_space_6.F ├── module_alloc_space_7.F ├── module_alloc_space_8.F ├── module_alloc_space_9.F ├── module_bdywrite.F ├── module_clear_halos.F ├── module_comm_dm.F ├── module_comm_dm_0.F ├── module_comm_dm_1.F ├── module_comm_dm_2.F ├── module_comm_dm_3.F ├── module_comm_dm_4.F ├── module_comm_nesting_dm.F ├── module_configure.F ├── module_cpl.F ├── module_cpl_oasis3.F ├── module_dm_stubs.F ├── module_dm_warning ├── module_domain.F ├── module_domain_type.F ├── module_driver_constants.F ├── module_integrate.F ├── module_intermediate_nmm.F ├── module_internal_header_util.F ├── module_io.F ├── module_io_quilt.F ├── module_io_quilt_new.F ├── module_io_quilt_old.F ├── module_machine.F ├── module_nesting.F ├── module_quilt_outbuf_ops.F ├── module_sm.F ├── module_streams.F ├── module_tiles.F ├── module_timing.F ├── module_wrf_error.F ├── nl_access_routines.F ├── nl_get_0_routines.F ├── nl_get_1_routines.F ├── nl_get_2_routines.F ├── nl_get_3_routines.F ├── nl_get_4_routines.F ├── nl_get_5_routines.F ├── nl_get_6_routines.F ├── nl_get_7_routines.F ├── nl_set_0_routines.F ├── nl_set_1_routines.F ├── nl_set_2_routines.F ├── nl_set_3_routines.F ├── nl_set_4_routines.F ├── nl_set_5_routines.F ├── nl_set_6_routines.F ├── nl_set_7_routines.F ├── pack_utils.c ├── wrf_debug.F ├── wrf_num_bytes_between.c ├── wrf_shutdown.F └── xxx_template_ioapi.F ├── inc ├── bench_solve_em_def.h ├── bench_solve_em_end.h ├── bench_solve_em_init.h ├── deref_kludge.h ├── intio_tags.h ├── rsl_cpp_flags ├── streams.h └── version_decl ├── main ├── Makefile ├── convert_em.F ├── depend.common ├── ideal_em.F ├── ideal_nmm.F ├── module_wrf_top.F ├── ndown_em.F ├── nup_em.F ├── real_em.F ├── real_nmm.F ├── tc_em.F ├── wrf.F ├── wrf_ESMFMod.F └── wrf_SST_ESMF.F ├── phys ├── Makefile ├── fr_fire_params_args.h ├── fr_fire_params_decl.h ├── mic-wsm5-3-5-callsite.h ├── mic-wsm5-3-5-code.h ├── mic-wsm5-3-5-locvar.h ├── module_bl_acm.F ├── module_bl_boulac.F ├── module_bl_camuwpbl_driver.F ├── module_bl_fogdes.F ├── module_bl_gbmpbl.F ├── module_bl_gfs.F ├── module_bl_gfs2011.F ├── module_bl_gwdo.F ├── module_bl_mfshconvpbl.F ├── module_bl_mrf.F ├── module_bl_myjpbl.F ├── module_bl_myjurb.F ├── module_bl_mynn.F ├── module_bl_qnsepbl.F ├── module_bl_shinhong.F ├── module_bl_temf.F ├── module_bl_ysu.F ├── module_cam_bl_diffusion_solver.F ├── module_cam_bl_eddy_diff.F ├── module_cam_cldwat.F ├── module_cam_constituents.F ├── module_cam_error_function.F ├── module_cam_esinti.F ├── module_cam_gffgch.F ├── module_cam_infnan.F ├── module_cam_molec_diff.F ├── module_cam_mp_cldwat2m_micro.F ├── module_cam_mp_conv_water.F ├── module_cam_mp_microp_aero.F ├── module_cam_mp_modal_aero_initialize_data_phys.F ├── module_cam_mp_ndrop.F ├── module_cam_mp_qneg3.F ├── module_cam_mp_radconstants.F ├── module_cam_physconst.F ├── module_cam_shr_const_mod.F ├── module_cam_shr_kind_mod.F ├── module_cam_support.F ├── module_cam_trb_mtn_stress.F ├── module_cam_upper_bc.F ├── module_cam_wv_saturation.F ├── module_cu_bmj.F ├── module_cu_camzm.F ├── module_cu_camzm_driver.F ├── module_cu_g3.F ├── module_cu_gd.F ├── module_cu_gf.F ├── module_cu_kf.F ├── module_cu_kfcup.F ├── module_cu_kfeta.F ├── module_cu_mesosas.F ├── module_cu_mskf.F ├── module_cu_nsas.F ├── module_cu_ntiedtke.F ├── module_cu_osas.F ├── module_cu_sas.F ├── module_cu_tiedtke.F ├── module_cumulus_driver.F ├── module_data_cam_mam_aero.F ├── module_data_cam_mam_asect.F ├── module_data_gocart_dust.F ├── module_diag_afwa.F ├── module_diag_afwa_hail.F ├── module_diag_cl.F ├── module_diag_misc.F ├── module_diag_pld.F ├── module_diag_refl.F ├── module_diag_zld.F ├── module_diagnostics_driver.F ├── module_fdda_psufddagd.F ├── module_fdda_spnudging.F ├── module_fddagd_driver.F ├── module_fddaobs_driver.F ├── module_fddaobs_rtfdda.F ├── module_fr_fire_atm.F ├── module_fr_fire_core.F ├── module_fr_fire_driver.F ├── module_fr_fire_driver_wrf.F ├── module_fr_fire_model.F ├── module_fr_fire_phys.F ├── module_fr_fire_util.F ├── module_gfs_funcphys.F ├── module_gfs_machine.F ├── module_gfs_physcons.F ├── module_gocart_seasalt.F ├── module_lightning_driver.F ├── module_ltng_cpmpr92z.F ├── module_ltng_crmpr92.F ├── module_ltng_iccg.F ├── module_ltng_lpi.F ├── module_microphysics_driver.F ├── module_microphysics_zero_out.F ├── module_mixactivate.F ├── module_mp_HWRF.F ├── module_mp_cammgmp_driver.F ├── module_mp_etanew.F ├── module_mp_fast_sbm.F ├── module_mp_fer_hires.F ├── module_mp_full_sbm.F ├── module_mp_gsfcgce.F ├── module_mp_kessler.F ├── module_mp_lin.F ├── module_mp_milbrandt2mom.F ├── module_mp_morr_two_moment.F ├── module_mp_nssl_2mom.F ├── module_mp_radar.F ├── module_mp_sbu_ylin.F ├── module_mp_thompson.F ├── module_mp_wdm5.F ├── module_mp_wdm6.F ├── module_mp_wsm3.F ├── module_mp_wsm3_accel.F ├── module_mp_wsm5.F ├── module_mp_wsm5_accel.F ├── module_mp_wsm6.F ├── module_pbl_driver.F ├── module_physics_addtendc.F ├── module_physics_init.F ├── module_progtm.F ├── module_ra_HWRF.F ├── module_ra_aerosol.F ├── module_ra_cam.F ├── module_ra_cam_support.F ├── module_ra_clWRF_support.F ├── module_ra_flg.F ├── module_ra_gfdleta.F ├── module_ra_goddard.F ├── module_ra_gsfcsw.F ├── module_ra_hs.F ├── module_ra_rrtm.F ├── module_ra_rrtmg_lw.F ├── module_ra_rrtmg_lwf.F ├── module_ra_rrtmg_sw.F ├── module_ra_rrtmg_swf.F ├── module_ra_sw.F ├── module_radiation_driver.F ├── module_sf_3dpwp.F ├── module_sf_bem.F ├── module_sf_bep.F ├── module_sf_bep_bem.F ├── module_sf_clm.F ├── module_sf_exchcoef.F ├── module_sf_fogdes.F ├── module_sf_gfdl.F ├── module_sf_gfs.F ├── module_sf_idealscmsfclay.F ├── module_sf_lake.F ├── module_sf_myjsfc.F ├── module_sf_mynn.F ├── module_sf_noah_seaice.F ├── module_sf_noah_seaice_drv.F ├── module_sf_noahdrv.F ├── module_sf_noahlsm.F ├── module_sf_noahlsm_glacial_only.F ├── module_sf_noahmp_glacier.F ├── module_sf_noahmp_groundwater.F ├── module_sf_noahmpdrv.F ├── module_sf_noahmplsm.F ├── module_sf_ocean_driver.F ├── module_sf_oml.F ├── module_sf_pxlsm.F ├── module_sf_pxlsm_data.F ├── module_sf_pxsfclay.F ├── module_sf_qnsesfc.F ├── module_sf_ruclsm.F ├── module_sf_scmflux.F ├── module_sf_scmskintemp.F ├── module_sf_sfcdiags.F ├── module_sf_sfcdiags_ruclsm.F ├── module_sf_sfclay.F ├── module_sf_sfclayrev.F ├── module_sf_slab.F ├── module_sf_ssib.F ├── module_sf_sstskin.F ├── module_sf_temfsfclay.F ├── module_sf_tmnupdate.F ├── module_sf_urban.F ├── module_shallowcu_driver.F ├── module_shcu_camuwshcu.F ├── module_shcu_camuwshcu_driver.F ├── module_shcu_grims.F ├── module_surface_driver.F ├── module_tracer_driver.F ├── module_wind_fitch.F ├── rrtmg_lw_cpu_args.h ├── rrtmg_lw_cpu_defs.h ├── taug_cpu_args.h ├── taug_cpu_defs.h ├── wsm5.cu.c └── wsm5_gpu.cu.c ├── run ├── CAM_ABS_DATA ├── CAM_AEROPT_DATA ├── CAMtr_volume_mixing_ratio.A1B ├── CAMtr_volume_mixing_ratio.A2 ├── CAMtr_volume_mixing_ratio.RCP4.5 ├── CAMtr_volume_mixing_ratio.RCP6 ├── CAMtr_volume_mixing_ratio.RCP8.5 ├── CCN_ACTIVATE.BIN ├── CLM_ALB_ICE_DFS_DATA ├── CLM_ALB_ICE_DRC_DATA ├── CLM_ASM_ICE_DFS_DATA ├── CLM_ASM_ICE_DRC_DATA ├── CLM_DRDSDT0_DATA ├── CLM_EXT_ICE_DFS_DATA ├── CLM_EXT_ICE_DRC_DATA ├── CLM_KAPPA_DATA ├── CLM_TAU_DATA ├── ETAMPNEW_DATA ├── ETAMPNEW_DATA.expanded_rain ├── ETAMPNEW_DATA.expanded_rain_DBL ├── ETAMPNEW_DATA_DBL ├── GENPARM.TBL ├── LANDUSE.TBL ├── MPTABLE.TBL ├── README.namelist ├── README.tslist ├── RRTMG_LW_DATA ├── RRTMG_LW_DATA_DBL ├── RRTMG_SW_DATA ├── RRTMG_SW_DATA_DBL ├── RRTM_DATA ├── RRTM_DATA_DBL ├── SOILPARM.TBL ├── URBPARM.TBL ├── URBPARM_UZE.TBL ├── VEGPARM.TBL ├── aerosol.formatted ├── aerosol_lat.formatted ├── aerosol_lon.formatted ├── aerosol_plev.formatted ├── bulkdens.asc_s_0_03_0_9 ├── bulkradii.asc_s_0_03_0_9 ├── capacity.asc ├── co2_trans ├── coeff_p.asc ├── coeff_q.asc ├── constants.asc ├── grib2map.tbl ├── gribmap.txt ├── kernels.asc_s_0_03_0_9 ├── kernels_z.asc ├── masses.asc ├── ozone.formatted ├── ozone_lat.formatted ├── ozone_plev.formatted ├── termvels.asc ├── tr49t67 ├── tr49t85 ├── tr67t85 └── wind-turbine-1.tbl ├── share ├── Makefile ├── bobrand.c ├── dfi.F ├── init_modules.F ├── input_wrf.F ├── interp_fcn.F ├── landread.c ├── landread.c.dist ├── landread.h ├── mediation_feedback_domain.F ├── mediation_force_domain.F ├── mediation_integrate.F ├── mediation_interp_domain.F ├── mediation_nest_move.F ├── mediation_wrfmain.F ├── module_MPP.F ├── module_bc.F ├── module_bc_time_utilities.F ├── module_check_a_mundo.F ├── module_compute_geop.F ├── module_date_time.F ├── module_get_file_names.F ├── module_interp_fcn.F ├── module_interp_nmm.F ├── module_interp_store.F ├── module_io_domain.F ├── module_io_domain_defs.m4 ├── module_io_wrf.F ├── module_llxy.F ├── module_model_constants.F ├── module_optional_input.F ├── module_random.F ├── module_soil_pre.F ├── output_wrf.F ├── set_timekeeping.F ├── set_timekeeping_alarms.m4 ├── set_timekeeping_defs.m4 ├── setfeenv.c ├── sint.F ├── solve_em.int ├── solve_interface.F ├── solve_nmm.int ├── start_domain.F ├── start_domain_em.int ├── start_domain_nmm.int ├── track_driver.F ├── track_input.F ├── wrf_bdyin.F ├── wrf_bdyout.F ├── wrf_ext_read_field.F ├── wrf_ext_write_field.F ├── wrf_fddaobs_in.F ├── wrf_restartin.F ├── wrf_restartout.F ├── wrf_timeseries.F └── wrf_tsin.F ├── test ├── em_b_wave │ ├── input_jet │ ├── namelist.input │ ├── namelist.input.backwards │ ├── run_me_first.csh │ └── run_restart.tar ├── em_convrad │ ├── README.convrad │ ├── input_sounding │ ├── namelist.input │ └── run_me_first.csh ├── em_esmf_exp │ ├── README_WRF_CPL_SST.txt │ ├── WRF_CPL_SST.tar.gz │ ├── namelist.input.jan00.ESMFSST │ └── namelist.input.jan00.NETCDFSST ├── em_fire │ ├── README.txt │ ├── create_links.sh │ ├── hill_simple │ │ ├── input_sounding │ │ ├── namelist.fire │ │ └── namelist.input │ ├── namelist.fire │ └── two_fires │ │ ├── input_sounding │ │ ├── namelist.fire │ │ └── namelist.input ├── em_grav2d_x │ ├── README.grav2d_x │ ├── input_sounding │ ├── input_sounding.um=0 │ ├── input_sounding.um=20 │ ├── namelist.input │ ├── namelist.input.100m │ ├── namelist.input.200m │ └── namelist.input.400m ├── em_heldsuarez │ ├── README.heldsuarez │ └── namelist.input ├── em_hill2d_x │ ├── input_sounding │ └── namelist.input ├── em_les │ ├── README.les │ ├── input_sounding │ ├── input_sounding.SGP │ ├── input_sounding_free │ ├── input_sounding_meanwind │ ├── input_sounding_shalconv │ ├── namelist.input │ ├── namelist.input.SGP │ └── namelist.input_shalconv ├── em_quarter_ss │ ├── README.quarter_ss │ ├── input_sounding │ ├── input_sounding_preWRFV3.6 │ ├── namelist.input │ ├── namelist.input_2to1 │ ├── namelist.input_3to1 │ ├── namelist.input_4to1 │ ├── namelist.input_5to1 │ └── run_me_first.csh ├── em_real │ ├── README.grid_fdda │ ├── README.obs_fdda │ ├── examples.namelist │ ├── landFilenames │ ├── namelist.input │ ├── namelist.input.4km │ ├── namelist.input.chem │ ├── namelist.input.diags │ ├── namelist.input.fire │ ├── namelist.input.global │ ├── namelist.input.jan00 │ ├── namelist.input.jun01 │ ├── namelist.input.ndown_1 │ ├── namelist.input.ndown_2 │ ├── namelist.input.ndown_3 │ ├── namelist.input.volc │ ├── run_1way.tar │ ├── run_2way.tar │ ├── run_restart.tar │ ├── sample.txt │ ├── wind-turbine-1.tbl │ └── windturbines.txt ├── em_scm_xy │ ├── GABLS_II_forcing.txt │ ├── README.scm │ ├── force_ideal.nc │ ├── forcing_file.cdl │ ├── input_soil │ ├── input_sounding │ ├── make_scm_forcing.ncl │ ├── namelist.input │ └── run_me_first.csh ├── em_seabreeze2d_x │ ├── README.seabreeze │ ├── input_sounding │ ├── namelist.input │ ├── namelist.input.windfarm │ └── run_me_first.csh ├── em_squall2d_x │ ├── input_sounding │ └── namelist.input ├── em_squall2d_y │ ├── input_sounding │ └── namelist.input ├── em_tropical_cyclone │ ├── README.tropical_cyclone │ ├── input_sounding │ ├── namelist.input │ └── run_me_first.csh ├── exp_real │ └── namelist.input ├── ibm_examples │ ├── README.ibm_test_cases │ ├── input_sounding_idealized_3d_hill │ ├── input_sounding_okc │ ├── namelist.input.idealized_3d_hill_GP │ ├── namelist.input.idealized_3d_hill_SR │ ├── namelist.input.idealized_3d_hill_VR │ ├── namelist.input.okc │ ├── okc_bld.nc │ └── run_ibm_test.moab ├── nmm_real │ ├── namelist.input │ ├── namelist.input.HWRF │ └── tomorrow └── nmm_tropical_cyclone │ ├── README.NMM.TROPICAL_CYCLONE │ ├── input.d │ ├── namelist.input │ ├── namelist.wps │ ├── sigma.d │ ├── sound.d │ ├── sound_gfdl.d │ ├── sound_jordan.d │ ├── sound_wet.d │ └── storm.center └── tools ├── CodeBase ├── Makefile ├── callgraph.c ├── deftab.c ├── nocontf90.c ├── subinfo_calls.c ├── sym.c ├── sym.h ├── symtab_gen.c ├── util.c └── wrfvar.c ├── DOMAIN_TIME_TEST ├── DOMAIN_TIME_TEST.csh └── DOMAIN_TIME_TEST.jan00_12hr.correct ├── Makefile ├── all_reg.csh ├── build_codebase ├── build_test.csh ├── callgraph.page1 ├── callgraph.page2 ├── check_for_bad_includes.pl ├── collapsd.gif ├── commit_form.txt ├── danger ├── data.c ├── data.h ├── daughter.gif ├── debug_macro_toolchest ├── exploded.gif ├── fortran_2003_fflush_test.F ├── fortran_2003_flush_test.F ├── fortran_2003_ieee_test.F ├── fortran_2003_iso_c_test.F ├── four2eight.c ├── fseek_test.c ├── gen_allocs.c ├── gen_args.c ├── gen_comms.stub ├── gen_comms_warning ├── gen_config.c ├── gen_defs.c ├── gen_interp.c ├── gen_mod_state_descr.c ├── gen_model_data_ord.c ├── gen_scalar_derefs.c ├── gen_scalar_indices.c ├── gen_streams.c ├── gen_wrf_io.c ├── index.page ├── link_codebase_to_wrfbrowser ├── misc.c ├── mpi2_test.c ├── mpi2_thread_test.c ├── my_strtok.c ├── nc4_test.c ├── nest_test.tar ├── protos.h ├── reg_parse.c ├── registry.c ├── registry.h ├── regtest.csh ├── regtest_esmf.csh ├── regtest_hwrf.csh ├── regtest_nmmnest.csh ├── safe ├── set_dim_strs.c ├── source_for_pgi_windows.bash ├── source_for_pgi_windows.csh ├── standard.c ├── subinfo ├── sym.c ├── sym.h ├── symtab_gen.c ├── test4_0_ESMFSST.lsf.csh ├── test_compile.csh ├── testomatic └── type.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.ibm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/NOTICE.ibm -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README -------------------------------------------------------------------------------- /README.DA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README.DA -------------------------------------------------------------------------------- /README.NMM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README.NMM -------------------------------------------------------------------------------- /README.SSIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README.SSIB -------------------------------------------------------------------------------- /README.hydro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README.hydro -------------------------------------------------------------------------------- /README.ibm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README.ibm -------------------------------------------------------------------------------- /README.io_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README.io_config -------------------------------------------------------------------------------- /README.rsl_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README.rsl_output -------------------------------------------------------------------------------- /README.station_hist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README.station_hist -------------------------------------------------------------------------------- /README.windturbine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README.windturbine -------------------------------------------------------------------------------- /README_test_cases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/README_test_cases -------------------------------------------------------------------------------- /Registry/Registry.CONVERT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/Registry.CONVERT -------------------------------------------------------------------------------- /Registry/Registry.EM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/Registry.EM -------------------------------------------------------------------------------- /Registry/Registry.EM_CHEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/Registry.EM_CHEM -------------------------------------------------------------------------------- /Registry/Registry.EM_COMMON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/Registry.EM_COMMON -------------------------------------------------------------------------------- /Registry/Registry.EM_COMMON.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/Registry.EM_COMMON.var -------------------------------------------------------------------------------- /Registry/Registry.NMM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/Registry.NMM -------------------------------------------------------------------------------- /Registry/Registry.wrfvar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/Registry.wrfvar -------------------------------------------------------------------------------- /Registry/registry.afwa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.afwa -------------------------------------------------------------------------------- /Registry/registry.avgflx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.avgflx -------------------------------------------------------------------------------- /Registry/registry.bdy_perturb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.bdy_perturb -------------------------------------------------------------------------------- /Registry/registry.cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.cam -------------------------------------------------------------------------------- /Registry/registry.chem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.chem -------------------------------------------------------------------------------- /Registry/registry.clm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.clm -------------------------------------------------------------------------------- /Registry/registry.diags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.diags -------------------------------------------------------------------------------- /Registry/registry.dimspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.dimspec -------------------------------------------------------------------------------- /Registry/registry.elec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.elec -------------------------------------------------------------------------------- /Registry/registry.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.fire -------------------------------------------------------------------------------- /Registry/registry.io_boilerplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.io_boilerplate -------------------------------------------------------------------------------- /Registry/registry.lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.lake -------------------------------------------------------------------------------- /Registry/registry.les: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.les -------------------------------------------------------------------------------- /Registry/registry.sbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.sbm -------------------------------------------------------------------------------- /Registry/registry.ssib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.ssib -------------------------------------------------------------------------------- /Registry/registry.stoch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.stoch -------------------------------------------------------------------------------- /Registry/registry.tornado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.tornado -------------------------------------------------------------------------------- /Registry/registry.tracker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.tracker -------------------------------------------------------------------------------- /Registry/registry.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.var -------------------------------------------------------------------------------- /Registry/registry.var_chem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/Registry/registry.var_chem -------------------------------------------------------------------------------- /arch/Config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/Config.pl -------------------------------------------------------------------------------- /arch/Config_new.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/Config_new.pl -------------------------------------------------------------------------------- /arch/Config_old.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/Config_old.pl -------------------------------------------------------------------------------- /arch/README.canonical_stanza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/README.canonical_stanza -------------------------------------------------------------------------------- /arch/SOURCEME_WINCCS_WRF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/SOURCEME_WINCCS_WRF -------------------------------------------------------------------------------- /arch/archive_configure.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/archive_configure.defaults -------------------------------------------------------------------------------- /arch/conf_tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/conf_tokens -------------------------------------------------------------------------------- /arch/config_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/config_old -------------------------------------------------------------------------------- /arch/configure_new.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/configure_new.defaults -------------------------------------------------------------------------------- /arch/configure_old.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/configure_old.defaults -------------------------------------------------------------------------------- /arch/cray_csd.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/cray_csd.sed -------------------------------------------------------------------------------- /arch/md_calls.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/md_calls.inc -------------------------------------------------------------------------------- /arch/no_file_line.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/no_file_line.sed -------------------------------------------------------------------------------- /arch/noopt_exceptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/noopt_exceptions -------------------------------------------------------------------------------- /arch/noopt_exceptions_f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/noopt_exceptions_f -------------------------------------------------------------------------------- /arch/postamble_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/postamble_new -------------------------------------------------------------------------------- /arch/postamble_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/postamble_old -------------------------------------------------------------------------------- /arch/preamble_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/preamble_new -------------------------------------------------------------------------------- /arch/preamble_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/preamble_old -------------------------------------------------------------------------------- /arch/standard.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/standard.sed -------------------------------------------------------------------------------- /arch/win_mpif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/arch/win_mpif.h -------------------------------------------------------------------------------- /clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/clean -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/compile -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/configure -------------------------------------------------------------------------------- /dyn_em/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/Makefile -------------------------------------------------------------------------------- /dyn_em/README.tenddec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/README.tenddec -------------------------------------------------------------------------------- /dyn_em/adapt_timestep_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/adapt_timestep_em.F -------------------------------------------------------------------------------- /dyn_em/couple_or_uncouple_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/couple_or_uncouple_em.F -------------------------------------------------------------------------------- /dyn_em/depend.dyn_em: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/depend.dyn_em -------------------------------------------------------------------------------- /dyn_em/init_modules_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/init_modules_em.F -------------------------------------------------------------------------------- /dyn_em/interp_domain_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/interp_domain_em.F -------------------------------------------------------------------------------- /dyn_em/module_advect_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_advect_em.F -------------------------------------------------------------------------------- /dyn_em/module_after_all_rk_steps.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_after_all_rk_steps.F -------------------------------------------------------------------------------- /dyn_em/module_avgflx_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_avgflx_em.F -------------------------------------------------------------------------------- /dyn_em/module_bc_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_bc_em.F -------------------------------------------------------------------------------- /dyn_em/module_convtrans_prep.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_convtrans_prep.F -------------------------------------------------------------------------------- /dyn_em/module_damping_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_damping_em.F -------------------------------------------------------------------------------- /dyn_em/module_diffusion_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_diffusion_em.F -------------------------------------------------------------------------------- /dyn_em/module_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_em.F -------------------------------------------------------------------------------- /dyn_em/module_first_rk_step_part1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_first_rk_step_part1.F -------------------------------------------------------------------------------- /dyn_em/module_first_rk_step_part2.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_first_rk_step_part2.F -------------------------------------------------------------------------------- /dyn_em/module_force_scm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_force_scm.F -------------------------------------------------------------------------------- /dyn_em/module_ibm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_ibm.F -------------------------------------------------------------------------------- /dyn_em/module_init_utilities.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_init_utilities.F -------------------------------------------------------------------------------- /dyn_em/module_initialize_b_wave.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_initialize_b_wave.F -------------------------------------------------------------------------------- /dyn_em/module_initialize_convrad.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_initialize_convrad.F -------------------------------------------------------------------------------- /dyn_em/module_initialize_fire.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_initialize_fire.F -------------------------------------------------------------------------------- /dyn_em/module_initialize_grav2d_x.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_initialize_grav2d_x.F -------------------------------------------------------------------------------- /dyn_em/module_initialize_hill2d_x.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_initialize_hill2d_x.F -------------------------------------------------------------------------------- /dyn_em/module_initialize_les.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_initialize_les.F -------------------------------------------------------------------------------- /dyn_em/module_initialize_real.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_initialize_real.F -------------------------------------------------------------------------------- /dyn_em/module_initialize_scm_xy.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_initialize_scm_xy.F -------------------------------------------------------------------------------- /dyn_em/module_polarfft.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_polarfft.F -------------------------------------------------------------------------------- /dyn_em/module_positive_definite.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_positive_definite.F -------------------------------------------------------------------------------- /dyn_em/module_ranarray.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_ranarray.F -------------------------------------------------------------------------------- /dyn_em/module_sfs_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_sfs_driver.F -------------------------------------------------------------------------------- /dyn_em/module_sfs_nba.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_sfs_nba.F -------------------------------------------------------------------------------- /dyn_em/module_small_step_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_small_step_em.F -------------------------------------------------------------------------------- /dyn_em/module_solvedebug_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_solvedebug_em.F -------------------------------------------------------------------------------- /dyn_em/module_stoch.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_stoch.F -------------------------------------------------------------------------------- /dyn_em/module_wps_io_arw.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/module_wps_io_arw.F -------------------------------------------------------------------------------- /dyn_em/namelist_remappings_em.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/namelist_remappings_em.h -------------------------------------------------------------------------------- /dyn_em/nest_init_utils.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/nest_init_utils.F -------------------------------------------------------------------------------- /dyn_em/shift_domain_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/shift_domain_em.F -------------------------------------------------------------------------------- /dyn_em/solve_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/solve_em.F -------------------------------------------------------------------------------- /dyn_em/start_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_em/start_em.F -------------------------------------------------------------------------------- /dyn_exp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_exp/Makefile -------------------------------------------------------------------------------- /dyn_exp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_exp/README -------------------------------------------------------------------------------- /dyn_exp/init_modules_exp.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_exp/init_modules_exp.F -------------------------------------------------------------------------------- /dyn_exp/module_exp.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_exp/module_exp.F -------------------------------------------------------------------------------- /dyn_exp/module_initialize_exp.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_exp/module_initialize_exp.F -------------------------------------------------------------------------------- /dyn_exp/solve_exp.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_exp/solve_exp.F -------------------------------------------------------------------------------- /dyn_nmm/BALANCE_COMS.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/BALANCE_COMS.F -------------------------------------------------------------------------------- /dyn_nmm/BALANCE_PARS.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/BALANCE_PARS.F -------------------------------------------------------------------------------- /dyn_nmm/BUCKETS.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/BUCKETS.F -------------------------------------------------------------------------------- /dyn_nmm/CLTEND.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/CLTEND.F -------------------------------------------------------------------------------- /dyn_nmm/DSTRB.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/DSTRB.F -------------------------------------------------------------------------------- /dyn_nmm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/Makefile -------------------------------------------------------------------------------- /dyn_nmm/NMM_NEST_UTILS1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/NMM_NEST_UTILS1.F -------------------------------------------------------------------------------- /dyn_nmm/RDTEMP.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/RDTEMP.F -------------------------------------------------------------------------------- /dyn_nmm/adve_optim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/adve_optim.h -------------------------------------------------------------------------------- /dyn_nmm/adve_orig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/adve_orig.h -------------------------------------------------------------------------------- /dyn_nmm/depend.dyn_nmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/depend.dyn_nmm -------------------------------------------------------------------------------- /dyn_nmm/init_modules_nmm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/init_modules_nmm.F -------------------------------------------------------------------------------- /dyn_nmm/module_ADVECTION.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_ADVECTION.F -------------------------------------------------------------------------------- /dyn_nmm/module_BC_NMM.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_BC_NMM.F -------------------------------------------------------------------------------- /dyn_nmm/module_BNDRY_COND.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_BNDRY_COND.F -------------------------------------------------------------------------------- /dyn_nmm/module_CLDWTR.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_CLDWTR.F -------------------------------------------------------------------------------- /dyn_nmm/module_CTLBLK.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_CTLBLK.F -------------------------------------------------------------------------------- /dyn_nmm/module_DIFFUSION_NMM.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_DIFFUSION_NMM.F -------------------------------------------------------------------------------- /dyn_nmm/module_GWD.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_GWD.F -------------------------------------------------------------------------------- /dyn_nmm/module_HIFREQ.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_HIFREQ.F -------------------------------------------------------------------------------- /dyn_nmm/module_IGWAVE_ADJUST.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_IGWAVE_ADJUST.F -------------------------------------------------------------------------------- /dyn_nmm/module_INDX.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_INDX.F -------------------------------------------------------------------------------- /dyn_nmm/module_MPP.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_MPP.F -------------------------------------------------------------------------------- /dyn_nmm/module_MPPINIT.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_MPPINIT.F -------------------------------------------------------------------------------- /dyn_nmm/module_NEST_UTIL.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_NEST_UTIL.F -------------------------------------------------------------------------------- /dyn_nmm/module_NONHY_DYNAM.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_NONHY_DYNAM.F -------------------------------------------------------------------------------- /dyn_nmm/module_PHYSICS_CALLS.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_PHYSICS_CALLS.F -------------------------------------------------------------------------------- /dyn_nmm/module_PRECIP_ADJUST.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_PRECIP_ADJUST.F -------------------------------------------------------------------------------- /dyn_nmm/module_SMOOTH_TERRAIN.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_SMOOTH_TERRAIN.F -------------------------------------------------------------------------------- /dyn_nmm/module_STATS_FOR_MOVE.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_STATS_FOR_MOVE.F -------------------------------------------------------------------------------- /dyn_nmm/module_TERRAIN.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_TERRAIN.F -------------------------------------------------------------------------------- /dyn_nmm/module_TIMERS.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_TIMERS.F -------------------------------------------------------------------------------- /dyn_nmm/module_ZEROX.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_ZEROX.F -------------------------------------------------------------------------------- /dyn_nmm/module_initialize_real.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_initialize_real.F -------------------------------------------------------------------------------- /dyn_nmm/module_membrane_mslp.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_membrane_mslp.F -------------------------------------------------------------------------------- /dyn_nmm/module_relax.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_relax.F -------------------------------------------------------------------------------- /dyn_nmm/module_si_io_nmm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_si_io_nmm.F -------------------------------------------------------------------------------- /dyn_nmm/module_swath.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_swath.F -------------------------------------------------------------------------------- /dyn_nmm/module_tornado_genesis.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_tornado_genesis.F -------------------------------------------------------------------------------- /dyn_nmm/module_tracker.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/module_tracker.F -------------------------------------------------------------------------------- /dyn_nmm/nmm_get_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/nmm_get_cpu.c -------------------------------------------------------------------------------- /dyn_nmm/nmm_loop_basemacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/nmm_loop_basemacros.h -------------------------------------------------------------------------------- /dyn_nmm/nmm_loop_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/nmm_loop_macros.h -------------------------------------------------------------------------------- /dyn_nmm/shift_domain_nmm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/shift_domain_nmm.F -------------------------------------------------------------------------------- /dyn_nmm/solve_nmm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/solve_nmm.F -------------------------------------------------------------------------------- /dyn_nmm/start_domain_nmm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/dyn_nmm/start_domain_nmm.F -------------------------------------------------------------------------------- /external/IOAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/IOAPI -------------------------------------------------------------------------------- /external/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/Makefile -------------------------------------------------------------------------------- /external/RSL_LITE/buf_for_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/buf_for_proc.c -------------------------------------------------------------------------------- /external/RSL_LITE/c_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/c_code.c -------------------------------------------------------------------------------- /external/RSL_LITE/cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/cycle.c -------------------------------------------------------------------------------- /external/RSL_LITE/f_pack.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/f_pack.F90 -------------------------------------------------------------------------------- /external/RSL_LITE/f_xpose.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/f_xpose.F90 -------------------------------------------------------------------------------- /external/RSL_LITE/gen_comms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/gen_comms.c -------------------------------------------------------------------------------- /external/RSL_LITE/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/makefile -------------------------------------------------------------------------------- /external/RSL_LITE/module_dm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/module_dm.F -------------------------------------------------------------------------------- /external/RSL_LITE/period.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/period.c -------------------------------------------------------------------------------- /external/RSL_LITE/rsl_bcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/rsl_bcast.c -------------------------------------------------------------------------------- /external/RSL_LITE/rsl_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/rsl_lite.h -------------------------------------------------------------------------------- /external/RSL_LITE/rsl_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/rsl_malloc.c -------------------------------------------------------------------------------- /external/RSL_LITE/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/swap.c -------------------------------------------------------------------------------- /external/RSL_LITE/task_for_point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/task_for_point.c -------------------------------------------------------------------------------- /external/RSL_LITE/tfp_tester.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/RSL_LITE/tfp_tester.F -------------------------------------------------------------------------------- /external/atm_ocn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/atm_ocn/Makefile -------------------------------------------------------------------------------- /external/atm_ocn/atm_comm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/atm_ocn/atm_comm.F -------------------------------------------------------------------------------- /external/atm_ocn/atm_comm_pom.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/atm_ocn/atm_comm_pom.F -------------------------------------------------------------------------------- /external/atm_ocn/atm_tiles.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/atm_ocn/atm_tiles.F -------------------------------------------------------------------------------- /external/atm_ocn/cmpcomm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/atm_ocn/cmpcomm.F -------------------------------------------------------------------------------- /external/atm_ocn/mpi_more.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/atm_ocn/mpi_more.F -------------------------------------------------------------------------------- /external/esmf_time_f90/ESMF_Mod.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/esmf_time_f90/ESMF_Mod.F90 -------------------------------------------------------------------------------- /external/esmf_time_f90/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/esmf_time_f90/Makefile -------------------------------------------------------------------------------- /external/esmf_time_f90/Meat.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/esmf_time_f90/Meat.F90 -------------------------------------------------------------------------------- /external/esmf_time_f90/Test1.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/esmf_time_f90/Test1.F90 -------------------------------------------------------------------------------- /external/esmf_time_f90/testall.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/esmf_time_f90/testall.csh -------------------------------------------------------------------------------- /external/fftpack/77to90.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/77to90.csh -------------------------------------------------------------------------------- /external/fftpack/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/README -------------------------------------------------------------------------------- /external/fftpack/f90split.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/f90split.f90 -------------------------------------------------------------------------------- /external/fftpack/f90split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/f90split.sh -------------------------------------------------------------------------------- /external/fftpack/fftpack5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/Makefile -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1f2kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1f2kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1f2kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1f2kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1f3kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1f3kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1f3kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1f3kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1f4kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1f4kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1f4kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1f4kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1f5kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1f5kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1f5kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1f5kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1fgkb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1fgkb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1fgkf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1fgkf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1fm1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1fm1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/c1fm1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/c1fm1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cfft1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cfft1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cfft1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cfft1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cfft1i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cfft1i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cfft2b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cfft2b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cfft2f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cfft2f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cfft2i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cfft2i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cfftmb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cfftmb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cfftmf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cfftmf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cfftmi.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cfftmi.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmf2kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmf2kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmf2kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmf2kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmf3kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmf3kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmf3kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmf3kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmf4kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmf4kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmf4kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmf4kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmf5kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmf5kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmf5kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmf5kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmfgkb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmfgkb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmfgkf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmfgkf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmfm1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmfm1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cmfm1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cmfm1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cosq1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cosq1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cosq1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cosq1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cosq1i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cosq1i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cosqb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cosqb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cosqf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cosqf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cosqmb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cosqmb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cosqmf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cosqmf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cosqmi.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cosqmi.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cost1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cost1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cost1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cost1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/cost1i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/cost1i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/costb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/costb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/costf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/costf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/costmb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/costmb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/costmf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/costmf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/costmi.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/costmi.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/d1f2kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/d1f2kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/d1f2kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/d1f2kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/d1f3kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/d1f3kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/d1f3kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/d1f3kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/d1f4kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/d1f4kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/d1f4kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/d1f4kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/d1f5kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/d1f5kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/d1f5kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/d1f5kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/d1fgkb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/d1fgkb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/d1fgkf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/d1fgkf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dcosq1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dcosq1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dcosq1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dcosq1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dcosq1i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dcosq1i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dcosqb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dcosqb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dcosqf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dcosqf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dcost1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dcost1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dcost1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dcost1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dcost1i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dcost1i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dcostb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dcostb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dcostf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dcostf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dfft1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dfft1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dfft1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dfft1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dfft1i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dfft1i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dfftb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dfftb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dfftf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dfftf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dffti1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dffti1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dsint1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dsint1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dsint1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dsint1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dsint1i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dsint1i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dsintb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dsintb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/dsintf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/dsintf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/factor.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/factor.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mcfti1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mcfti1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mcsqb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mcsqb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mcsqf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mcsqf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mcstb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mcstb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mcstf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mcstf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mradb2.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mradb2.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mradb3.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mradb3.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mradb4.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mradb4.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mradb5.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mradb5.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mradbg.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mradbg.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mradf2.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mradf2.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mradf3.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mradf3.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mradf4.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mradf4.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mradf5.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mradf5.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mradfg.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mradfg.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mrftb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mrftb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mrftf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mrftf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/mrfti1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/mrfti1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/msntb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/msntb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/msntf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/msntf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/r1f2kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/r1f2kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/r1f2kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/r1f2kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/r1f3kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/r1f3kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/r1f3kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/r1f3kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/r1f4kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/r1f4kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/r1f4kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/r1f4kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/r1f5kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/r1f5kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/r1f5kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/r1f5kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/r1fgkb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/r1fgkb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/r1fgkf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/r1fgkf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfft1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfft1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfft1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfft1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfft1i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfft1i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfft2b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfft2b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfft2f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfft2f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfft2i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfft2i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfftb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfftb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfftf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfftf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rffti1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rffti1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfftmb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfftmb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfftmf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfftmf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/rfftmi.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/rfftmi.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sinq1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sinq1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sinq1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sinq1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sinq1i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sinq1i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sinqmb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sinqmb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sinqmf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sinqmf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sinqmi.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sinqmi.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sint1b.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sint1b.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sint1f.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sint1f.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sint1i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sint1i.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sintb1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sintb1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sintf1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sintf1.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sintmb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sintmb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sintmf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sintmf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/sintmi.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/sintmi.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/tables.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/tables.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/xercon.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/xercon.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/xerfft.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/xerfft.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/z1f2kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/z1f2kb.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/z1f2kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/z1f2kf.F -------------------------------------------------------------------------------- /external/fftpack/fftpack5/z1f3kb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/fftpack/fftpack5/z1f3kb.F -------------------------------------------------------------------------------- /external/io_esmf/README.io_esmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_esmf/README.io_esmf -------------------------------------------------------------------------------- /external/io_esmf/TODO.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_esmf/TODO.list -------------------------------------------------------------------------------- /external/io_esmf/io_esmf.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_esmf/io_esmf.F90 -------------------------------------------------------------------------------- /external/io_esmf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_esmf/makefile -------------------------------------------------------------------------------- /external/io_grib1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/Makefile -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/Changes -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/Makefile -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/README -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/bds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/bds.h -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/bms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/bms.h -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/cnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/cnames.c -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/cnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/cnames.h -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/ec_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/ec_ext.c -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/gds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/gds.h -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/grib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/grib.h -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/levels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/levels.c -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/pds4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/pds4.h -------------------------------------------------------------------------------- /external/io_grib1/WGRIB/src2all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/WGRIB/src2all -------------------------------------------------------------------------------- /external/io_grib1/diffwrf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/diffwrf -------------------------------------------------------------------------------- /external/io_grib1/gribmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/gribmap.c -------------------------------------------------------------------------------- /external/io_grib1/gribmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/gribmap.h -------------------------------------------------------------------------------- /external/io_grib1/io_grib1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/io_grib1.F -------------------------------------------------------------------------------- /external/io_grib1/test.grb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/test.grb -------------------------------------------------------------------------------- /external/io_grib1/trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib1/trim.c -------------------------------------------------------------------------------- /external/io_grib2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/Makefile -------------------------------------------------------------------------------- /external/io_grib2/g2lib/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/CHANGES -------------------------------------------------------------------------------- /external/io_grib2/g2lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/Makefile -------------------------------------------------------------------------------- /external/io_grib2/g2lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/README -------------------------------------------------------------------------------- /external/io_grib2/g2lib/getdim.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/getdim.F -------------------------------------------------------------------------------- /external/io_grib2/g2lib/getg2i.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/getg2i.F -------------------------------------------------------------------------------- /external/io_grib2/g2lib/getgb2.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/getgb2.F -------------------------------------------------------------------------------- /external/io_grib2/g2lib/getidx.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/getidx.F -------------------------------------------------------------------------------- /external/io_grib2/g2lib/ixgb2.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/ixgb2.F -------------------------------------------------------------------------------- /external/io_grib2/g2lib/mkieee.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/mkieee.F -------------------------------------------------------------------------------- /external/io_grib2/g2lib/mova2i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/mova2i.c -------------------------------------------------------------------------------- /external/io_grib2/g2lib/params.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/params.F -------------------------------------------------------------------------------- /external/io_grib2/g2lib/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/proto.h -------------------------------------------------------------------------------- /external/io_grib2/g2lib/putgb2.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/putgb2.F -------------------------------------------------------------------------------- /external/io_grib2/g2lib/rdieee.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/rdieee.F -------------------------------------------------------------------------------- /external/io_grib2/g2lib/reduce.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/reduce.F -------------------------------------------------------------------------------- /external/io_grib2/g2lib/skgb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/g2lib/skgb.F -------------------------------------------------------------------------------- /external/io_grib2/io_grib2.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib2/io_grib2.F -------------------------------------------------------------------------------- /external/io_grib_share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib_share/Makefile -------------------------------------------------------------------------------- /external/io_grib_share/gridnav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib_share/gridnav.c -------------------------------------------------------------------------------- /external/io_grib_share/gridnav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_grib_share/gridnav.h -------------------------------------------------------------------------------- /external/io_int/diffwrf.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_int/diffwrf.F90 -------------------------------------------------------------------------------- /external/io_int/io_int.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_int/io_int.F90 -------------------------------------------------------------------------------- /external/io_int/io_int_idx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_int/io_int_idx.c -------------------------------------------------------------------------------- /external/io_int/io_int_idx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_int/io_int_idx.h -------------------------------------------------------------------------------- /external/io_int/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_int/makefile -------------------------------------------------------------------------------- /external/io_int/test_io_idx.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_int/test_io_idx.F90 -------------------------------------------------------------------------------- /external/io_int/test_io_mpi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_int/test_io_mpi.f90 -------------------------------------------------------------------------------- /external/io_mcel/io_mcel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_mcel/io_mcel.F90 -------------------------------------------------------------------------------- /external/io_mcel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_mcel/makefile -------------------------------------------------------------------------------- /external/io_mcel/timeconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_mcel/timeconvert.c -------------------------------------------------------------------------------- /external/io_netcdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_netcdf/README -------------------------------------------------------------------------------- /external/io_netcdf/WRFIO.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_netcdf/WRFIO.doc -------------------------------------------------------------------------------- /external/io_netcdf/diffwrf.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_netcdf/diffwrf.F90 -------------------------------------------------------------------------------- /external/io_netcdf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_netcdf/makefile -------------------------------------------------------------------------------- /external/io_netcdf/vort.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_netcdf/vort.F90 -------------------------------------------------------------------------------- /external/io_netcdf/wrf_io.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_netcdf/wrf_io.F90 -------------------------------------------------------------------------------- /external/io_phdf5/INSTALL.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_phdf5/INSTALL.htm -------------------------------------------------------------------------------- /external/io_phdf5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_phdf5/Makefile -------------------------------------------------------------------------------- /external/io_phdf5/README.phdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_phdf5/README.phdf5 -------------------------------------------------------------------------------- /external/io_phdf5/wrf-phdf5.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_phdf5/wrf-phdf5.F90 -------------------------------------------------------------------------------- /external/io_pio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_pio/Makefile -------------------------------------------------------------------------------- /external/io_pio/pio_routines.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_pio/pio_routines.F90 -------------------------------------------------------------------------------- /external/io_pio/wrf_data_pio.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_pio/wrf_data_pio.F90 -------------------------------------------------------------------------------- /external/io_pio/wrf_io.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_pio/wrf_io.F90 -------------------------------------------------------------------------------- /external/io_pnetcdf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_pnetcdf/Makefile -------------------------------------------------------------------------------- /external/io_pnetcdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_pnetcdf/README -------------------------------------------------------------------------------- /external/io_pnetcdf/WRFIO.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_pnetcdf/WRFIO.doc -------------------------------------------------------------------------------- /external/io_pnetcdf/wrf_io.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/io_pnetcdf/wrf_io.F90 -------------------------------------------------------------------------------- /external/ioapi_share/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/external/ioapi_share/makefile -------------------------------------------------------------------------------- /frame/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/Makefile -------------------------------------------------------------------------------- /frame/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/clog.c -------------------------------------------------------------------------------- /frame/collect_on_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/collect_on_comm.c -------------------------------------------------------------------------------- /frame/hires_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/hires_timer.c -------------------------------------------------------------------------------- /frame/libmassv.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/libmassv.F -------------------------------------------------------------------------------- /frame/loop_based_x_shift_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/loop_based_x_shift_code.h -------------------------------------------------------------------------------- /frame/loop_based_y_shift_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/loop_based_y_shift_code.h -------------------------------------------------------------------------------- /frame/md_calls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/md_calls.m4 -------------------------------------------------------------------------------- /frame/module_alloc_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space.h -------------------------------------------------------------------------------- /frame/module_alloc_space_0.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space_0.F -------------------------------------------------------------------------------- /frame/module_alloc_space_1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space_1.F -------------------------------------------------------------------------------- /frame/module_alloc_space_2.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space_2.F -------------------------------------------------------------------------------- /frame/module_alloc_space_3.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space_3.F -------------------------------------------------------------------------------- /frame/module_alloc_space_4.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space_4.F -------------------------------------------------------------------------------- /frame/module_alloc_space_5.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space_5.F -------------------------------------------------------------------------------- /frame/module_alloc_space_6.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space_6.F -------------------------------------------------------------------------------- /frame/module_alloc_space_7.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space_7.F -------------------------------------------------------------------------------- /frame/module_alloc_space_8.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space_8.F -------------------------------------------------------------------------------- /frame/module_alloc_space_9.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_alloc_space_9.F -------------------------------------------------------------------------------- /frame/module_bdywrite.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_bdywrite.F -------------------------------------------------------------------------------- /frame/module_clear_halos.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_clear_halos.F -------------------------------------------------------------------------------- /frame/module_comm_dm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_comm_dm.F -------------------------------------------------------------------------------- /frame/module_comm_dm_0.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_comm_dm_0.F -------------------------------------------------------------------------------- /frame/module_comm_dm_1.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_comm_dm_1.F -------------------------------------------------------------------------------- /frame/module_comm_dm_2.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_comm_dm_2.F -------------------------------------------------------------------------------- /frame/module_comm_dm_3.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_comm_dm_3.F -------------------------------------------------------------------------------- /frame/module_comm_dm_4.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_comm_dm_4.F -------------------------------------------------------------------------------- /frame/module_comm_nesting_dm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_comm_nesting_dm.F -------------------------------------------------------------------------------- /frame/module_configure.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_configure.F -------------------------------------------------------------------------------- /frame/module_cpl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_cpl.F -------------------------------------------------------------------------------- /frame/module_cpl_oasis3.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_cpl_oasis3.F -------------------------------------------------------------------------------- /frame/module_dm_stubs.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_dm_stubs.F -------------------------------------------------------------------------------- /frame/module_dm_warning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_dm_warning -------------------------------------------------------------------------------- /frame/module_domain.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_domain.F -------------------------------------------------------------------------------- /frame/module_domain_type.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_domain_type.F -------------------------------------------------------------------------------- /frame/module_driver_constants.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_driver_constants.F -------------------------------------------------------------------------------- /frame/module_integrate.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_integrate.F -------------------------------------------------------------------------------- /frame/module_intermediate_nmm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_intermediate_nmm.F -------------------------------------------------------------------------------- /frame/module_io.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_io.F -------------------------------------------------------------------------------- /frame/module_io_quilt.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_io_quilt.F -------------------------------------------------------------------------------- /frame/module_io_quilt_new.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_io_quilt_new.F -------------------------------------------------------------------------------- /frame/module_io_quilt_old.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_io_quilt_old.F -------------------------------------------------------------------------------- /frame/module_machine.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_machine.F -------------------------------------------------------------------------------- /frame/module_nesting.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_nesting.F -------------------------------------------------------------------------------- /frame/module_quilt_outbuf_ops.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_quilt_outbuf_ops.F -------------------------------------------------------------------------------- /frame/module_sm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_sm.F -------------------------------------------------------------------------------- /frame/module_streams.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_streams.F -------------------------------------------------------------------------------- /frame/module_tiles.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_tiles.F -------------------------------------------------------------------------------- /frame/module_timing.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_timing.F -------------------------------------------------------------------------------- /frame/module_wrf_error.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/module_wrf_error.F -------------------------------------------------------------------------------- /frame/nl_access_routines.F: -------------------------------------------------------------------------------- 1 | #include "nl_config.inc" 2 | -------------------------------------------------------------------------------- /frame/nl_get_0_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_get_1_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_get_2_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_get_3_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_get_4_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_get_5_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_get_6_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_get_7_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_set_0_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_set_1_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_set_2_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_set_3_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_set_4_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_set_5_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_set_6_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/nl_set_7_routines.F: -------------------------------------------------------------------------------- 1 | dummy; make needs this to be happy 2 | -------------------------------------------------------------------------------- /frame/pack_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/pack_utils.c -------------------------------------------------------------------------------- /frame/wrf_debug.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/wrf_debug.F -------------------------------------------------------------------------------- /frame/wrf_num_bytes_between.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/wrf_num_bytes_between.c -------------------------------------------------------------------------------- /frame/wrf_shutdown.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/wrf_shutdown.F -------------------------------------------------------------------------------- /frame/xxx_template_ioapi.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/frame/xxx_template_ioapi.F -------------------------------------------------------------------------------- /inc/bench_solve_em_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/inc/bench_solve_em_def.h -------------------------------------------------------------------------------- /inc/bench_solve_em_end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/inc/bench_solve_em_end.h -------------------------------------------------------------------------------- /inc/bench_solve_em_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/inc/bench_solve_em_init.h -------------------------------------------------------------------------------- /inc/deref_kludge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/inc/deref_kludge.h -------------------------------------------------------------------------------- /inc/intio_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/inc/intio_tags.h -------------------------------------------------------------------------------- /inc/rsl_cpp_flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/inc/rsl_cpp_flags -------------------------------------------------------------------------------- /inc/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/inc/streams.h -------------------------------------------------------------------------------- /inc/version_decl: -------------------------------------------------------------------------------- 1 | CHARACTER (LEN=10) :: release_version = 'V3.8.1 ' 2 | -------------------------------------------------------------------------------- /main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/Makefile -------------------------------------------------------------------------------- /main/convert_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/convert_em.F -------------------------------------------------------------------------------- /main/depend.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/depend.common -------------------------------------------------------------------------------- /main/ideal_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/ideal_em.F -------------------------------------------------------------------------------- /main/ideal_nmm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/ideal_nmm.F -------------------------------------------------------------------------------- /main/module_wrf_top.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/module_wrf_top.F -------------------------------------------------------------------------------- /main/ndown_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/ndown_em.F -------------------------------------------------------------------------------- /main/nup_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/nup_em.F -------------------------------------------------------------------------------- /main/real_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/real_em.F -------------------------------------------------------------------------------- /main/real_nmm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/real_nmm.F -------------------------------------------------------------------------------- /main/tc_em.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/tc_em.F -------------------------------------------------------------------------------- /main/wrf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/wrf.F -------------------------------------------------------------------------------- /main/wrf_ESMFMod.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/wrf_ESMFMod.F -------------------------------------------------------------------------------- /main/wrf_SST_ESMF.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/main/wrf_SST_ESMF.F -------------------------------------------------------------------------------- /phys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/Makefile -------------------------------------------------------------------------------- /phys/fr_fire_params_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/fr_fire_params_args.h -------------------------------------------------------------------------------- /phys/fr_fire_params_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/fr_fire_params_decl.h -------------------------------------------------------------------------------- /phys/mic-wsm5-3-5-callsite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/mic-wsm5-3-5-callsite.h -------------------------------------------------------------------------------- /phys/mic-wsm5-3-5-code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/mic-wsm5-3-5-code.h -------------------------------------------------------------------------------- /phys/mic-wsm5-3-5-locvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/mic-wsm5-3-5-locvar.h -------------------------------------------------------------------------------- /phys/module_bl_acm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_acm.F -------------------------------------------------------------------------------- /phys/module_bl_boulac.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_boulac.F -------------------------------------------------------------------------------- /phys/module_bl_camuwpbl_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_camuwpbl_driver.F -------------------------------------------------------------------------------- /phys/module_bl_fogdes.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_fogdes.F -------------------------------------------------------------------------------- /phys/module_bl_gbmpbl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_gbmpbl.F -------------------------------------------------------------------------------- /phys/module_bl_gfs.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_gfs.F -------------------------------------------------------------------------------- /phys/module_bl_gfs2011.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_gfs2011.F -------------------------------------------------------------------------------- /phys/module_bl_gwdo.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_gwdo.F -------------------------------------------------------------------------------- /phys/module_bl_mfshconvpbl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_mfshconvpbl.F -------------------------------------------------------------------------------- /phys/module_bl_mrf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_mrf.F -------------------------------------------------------------------------------- /phys/module_bl_myjpbl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_myjpbl.F -------------------------------------------------------------------------------- /phys/module_bl_myjurb.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_myjurb.F -------------------------------------------------------------------------------- /phys/module_bl_mynn.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_mynn.F -------------------------------------------------------------------------------- /phys/module_bl_qnsepbl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_qnsepbl.F -------------------------------------------------------------------------------- /phys/module_bl_shinhong.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_shinhong.F -------------------------------------------------------------------------------- /phys/module_bl_temf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_temf.F -------------------------------------------------------------------------------- /phys/module_bl_ysu.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_bl_ysu.F -------------------------------------------------------------------------------- /phys/module_cam_bl_eddy_diff.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_bl_eddy_diff.F -------------------------------------------------------------------------------- /phys/module_cam_cldwat.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_cldwat.F -------------------------------------------------------------------------------- /phys/module_cam_constituents.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_constituents.F -------------------------------------------------------------------------------- /phys/module_cam_error_function.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_error_function.F -------------------------------------------------------------------------------- /phys/module_cam_esinti.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_esinti.F -------------------------------------------------------------------------------- /phys/module_cam_gffgch.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_gffgch.F -------------------------------------------------------------------------------- /phys/module_cam_infnan.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_infnan.F -------------------------------------------------------------------------------- /phys/module_cam_molec_diff.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_molec_diff.F -------------------------------------------------------------------------------- /phys/module_cam_mp_conv_water.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_mp_conv_water.F -------------------------------------------------------------------------------- /phys/module_cam_mp_microp_aero.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_mp_microp_aero.F -------------------------------------------------------------------------------- /phys/module_cam_mp_ndrop.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_mp_ndrop.F -------------------------------------------------------------------------------- /phys/module_cam_mp_qneg3.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_mp_qneg3.F -------------------------------------------------------------------------------- /phys/module_cam_physconst.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_physconst.F -------------------------------------------------------------------------------- /phys/module_cam_shr_const_mod.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_shr_const_mod.F -------------------------------------------------------------------------------- /phys/module_cam_shr_kind_mod.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_shr_kind_mod.F -------------------------------------------------------------------------------- /phys/module_cam_support.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_support.F -------------------------------------------------------------------------------- /phys/module_cam_trb_mtn_stress.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_trb_mtn_stress.F -------------------------------------------------------------------------------- /phys/module_cam_upper_bc.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_upper_bc.F -------------------------------------------------------------------------------- /phys/module_cam_wv_saturation.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cam_wv_saturation.F -------------------------------------------------------------------------------- /phys/module_cu_bmj.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_bmj.F -------------------------------------------------------------------------------- /phys/module_cu_camzm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_camzm.F -------------------------------------------------------------------------------- /phys/module_cu_camzm_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_camzm_driver.F -------------------------------------------------------------------------------- /phys/module_cu_g3.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_g3.F -------------------------------------------------------------------------------- /phys/module_cu_gd.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_gd.F -------------------------------------------------------------------------------- /phys/module_cu_gf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_gf.F -------------------------------------------------------------------------------- /phys/module_cu_kf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_kf.F -------------------------------------------------------------------------------- /phys/module_cu_kfcup.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_kfcup.F -------------------------------------------------------------------------------- /phys/module_cu_kfeta.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_kfeta.F -------------------------------------------------------------------------------- /phys/module_cu_mesosas.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_mesosas.F -------------------------------------------------------------------------------- /phys/module_cu_mskf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_mskf.F -------------------------------------------------------------------------------- /phys/module_cu_nsas.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_nsas.F -------------------------------------------------------------------------------- /phys/module_cu_ntiedtke.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_ntiedtke.F -------------------------------------------------------------------------------- /phys/module_cu_osas.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_osas.F -------------------------------------------------------------------------------- /phys/module_cu_sas.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_sas.F -------------------------------------------------------------------------------- /phys/module_cu_tiedtke.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cu_tiedtke.F -------------------------------------------------------------------------------- /phys/module_cumulus_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_cumulus_driver.F -------------------------------------------------------------------------------- /phys/module_data_cam_mam_aero.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_data_cam_mam_aero.F -------------------------------------------------------------------------------- /phys/module_data_cam_mam_asect.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_data_cam_mam_asect.F -------------------------------------------------------------------------------- /phys/module_data_gocart_dust.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_data_gocart_dust.F -------------------------------------------------------------------------------- /phys/module_diag_afwa.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_diag_afwa.F -------------------------------------------------------------------------------- /phys/module_diag_afwa_hail.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_diag_afwa_hail.F -------------------------------------------------------------------------------- /phys/module_diag_cl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_diag_cl.F -------------------------------------------------------------------------------- /phys/module_diag_misc.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_diag_misc.F -------------------------------------------------------------------------------- /phys/module_diag_pld.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_diag_pld.F -------------------------------------------------------------------------------- /phys/module_diag_refl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_diag_refl.F -------------------------------------------------------------------------------- /phys/module_diag_zld.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_diag_zld.F -------------------------------------------------------------------------------- /phys/module_diagnostics_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_diagnostics_driver.F -------------------------------------------------------------------------------- /phys/module_fdda_psufddagd.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fdda_psufddagd.F -------------------------------------------------------------------------------- /phys/module_fdda_spnudging.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fdda_spnudging.F -------------------------------------------------------------------------------- /phys/module_fddagd_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fddagd_driver.F -------------------------------------------------------------------------------- /phys/module_fddaobs_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fddaobs_driver.F -------------------------------------------------------------------------------- /phys/module_fddaobs_rtfdda.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fddaobs_rtfdda.F -------------------------------------------------------------------------------- /phys/module_fr_fire_atm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fr_fire_atm.F -------------------------------------------------------------------------------- /phys/module_fr_fire_core.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fr_fire_core.F -------------------------------------------------------------------------------- /phys/module_fr_fire_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fr_fire_driver.F -------------------------------------------------------------------------------- /phys/module_fr_fire_driver_wrf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fr_fire_driver_wrf.F -------------------------------------------------------------------------------- /phys/module_fr_fire_model.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fr_fire_model.F -------------------------------------------------------------------------------- /phys/module_fr_fire_phys.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fr_fire_phys.F -------------------------------------------------------------------------------- /phys/module_fr_fire_util.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_fr_fire_util.F -------------------------------------------------------------------------------- /phys/module_gfs_funcphys.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_gfs_funcphys.F -------------------------------------------------------------------------------- /phys/module_gfs_machine.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_gfs_machine.F -------------------------------------------------------------------------------- /phys/module_gfs_physcons.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_gfs_physcons.F -------------------------------------------------------------------------------- /phys/module_gocart_seasalt.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_gocart_seasalt.F -------------------------------------------------------------------------------- /phys/module_lightning_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_lightning_driver.F -------------------------------------------------------------------------------- /phys/module_ltng_cpmpr92z.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ltng_cpmpr92z.F -------------------------------------------------------------------------------- /phys/module_ltng_crmpr92.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ltng_crmpr92.F -------------------------------------------------------------------------------- /phys/module_ltng_iccg.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ltng_iccg.F -------------------------------------------------------------------------------- /phys/module_ltng_lpi.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ltng_lpi.F -------------------------------------------------------------------------------- /phys/module_mixactivate.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mixactivate.F -------------------------------------------------------------------------------- /phys/module_mp_HWRF.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_HWRF.F -------------------------------------------------------------------------------- /phys/module_mp_cammgmp_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_cammgmp_driver.F -------------------------------------------------------------------------------- /phys/module_mp_etanew.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_etanew.F -------------------------------------------------------------------------------- /phys/module_mp_fast_sbm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_fast_sbm.F -------------------------------------------------------------------------------- /phys/module_mp_fer_hires.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_fer_hires.F -------------------------------------------------------------------------------- /phys/module_mp_full_sbm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_full_sbm.F -------------------------------------------------------------------------------- /phys/module_mp_gsfcgce.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_gsfcgce.F -------------------------------------------------------------------------------- /phys/module_mp_kessler.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_kessler.F -------------------------------------------------------------------------------- /phys/module_mp_lin.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_lin.F -------------------------------------------------------------------------------- /phys/module_mp_milbrandt2mom.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_milbrandt2mom.F -------------------------------------------------------------------------------- /phys/module_mp_morr_two_moment.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_morr_two_moment.F -------------------------------------------------------------------------------- /phys/module_mp_nssl_2mom.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_nssl_2mom.F -------------------------------------------------------------------------------- /phys/module_mp_radar.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_radar.F -------------------------------------------------------------------------------- /phys/module_mp_sbu_ylin.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_sbu_ylin.F -------------------------------------------------------------------------------- /phys/module_mp_thompson.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_thompson.F -------------------------------------------------------------------------------- /phys/module_mp_wdm5.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_wdm5.F -------------------------------------------------------------------------------- /phys/module_mp_wdm6.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_wdm6.F -------------------------------------------------------------------------------- /phys/module_mp_wsm3.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_wsm3.F -------------------------------------------------------------------------------- /phys/module_mp_wsm3_accel.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_wsm3_accel.F -------------------------------------------------------------------------------- /phys/module_mp_wsm5.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_wsm5.F -------------------------------------------------------------------------------- /phys/module_mp_wsm5_accel.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_wsm5_accel.F -------------------------------------------------------------------------------- /phys/module_mp_wsm6.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_mp_wsm6.F -------------------------------------------------------------------------------- /phys/module_pbl_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_pbl_driver.F -------------------------------------------------------------------------------- /phys/module_physics_addtendc.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_physics_addtendc.F -------------------------------------------------------------------------------- /phys/module_physics_init.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_physics_init.F -------------------------------------------------------------------------------- /phys/module_progtm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_progtm.F -------------------------------------------------------------------------------- /phys/module_ra_HWRF.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_HWRF.F -------------------------------------------------------------------------------- /phys/module_ra_aerosol.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_aerosol.F -------------------------------------------------------------------------------- /phys/module_ra_cam.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_cam.F -------------------------------------------------------------------------------- /phys/module_ra_cam_support.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_cam_support.F -------------------------------------------------------------------------------- /phys/module_ra_clWRF_support.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_clWRF_support.F -------------------------------------------------------------------------------- /phys/module_ra_flg.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_flg.F -------------------------------------------------------------------------------- /phys/module_ra_gfdleta.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_gfdleta.F -------------------------------------------------------------------------------- /phys/module_ra_goddard.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_goddard.F -------------------------------------------------------------------------------- /phys/module_ra_gsfcsw.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_gsfcsw.F -------------------------------------------------------------------------------- /phys/module_ra_hs.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_hs.F -------------------------------------------------------------------------------- /phys/module_ra_rrtm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_rrtm.F -------------------------------------------------------------------------------- /phys/module_ra_rrtmg_lw.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_rrtmg_lw.F -------------------------------------------------------------------------------- /phys/module_ra_rrtmg_lwf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_rrtmg_lwf.F -------------------------------------------------------------------------------- /phys/module_ra_rrtmg_sw.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_rrtmg_sw.F -------------------------------------------------------------------------------- /phys/module_ra_rrtmg_swf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_rrtmg_swf.F -------------------------------------------------------------------------------- /phys/module_ra_sw.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_ra_sw.F -------------------------------------------------------------------------------- /phys/module_radiation_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_radiation_driver.F -------------------------------------------------------------------------------- /phys/module_sf_3dpwp.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_3dpwp.F -------------------------------------------------------------------------------- /phys/module_sf_bem.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_bem.F -------------------------------------------------------------------------------- /phys/module_sf_bep.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_bep.F -------------------------------------------------------------------------------- /phys/module_sf_bep_bem.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_bep_bem.F -------------------------------------------------------------------------------- /phys/module_sf_clm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_clm.F -------------------------------------------------------------------------------- /phys/module_sf_exchcoef.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_exchcoef.F -------------------------------------------------------------------------------- /phys/module_sf_fogdes.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_fogdes.F -------------------------------------------------------------------------------- /phys/module_sf_gfdl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_gfdl.F -------------------------------------------------------------------------------- /phys/module_sf_gfs.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_gfs.F -------------------------------------------------------------------------------- /phys/module_sf_idealscmsfclay.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_idealscmsfclay.F -------------------------------------------------------------------------------- /phys/module_sf_lake.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_lake.F -------------------------------------------------------------------------------- /phys/module_sf_myjsfc.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_myjsfc.F -------------------------------------------------------------------------------- /phys/module_sf_mynn.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_mynn.F -------------------------------------------------------------------------------- /phys/module_sf_noah_seaice.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_noah_seaice.F -------------------------------------------------------------------------------- /phys/module_sf_noah_seaice_drv.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_noah_seaice_drv.F -------------------------------------------------------------------------------- /phys/module_sf_noahdrv.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_noahdrv.F -------------------------------------------------------------------------------- /phys/module_sf_noahlsm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_noahlsm.F -------------------------------------------------------------------------------- /phys/module_sf_noahmp_glacier.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_noahmp_glacier.F -------------------------------------------------------------------------------- /phys/module_sf_noahmpdrv.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_noahmpdrv.F -------------------------------------------------------------------------------- /phys/module_sf_noahmplsm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_noahmplsm.F -------------------------------------------------------------------------------- /phys/module_sf_ocean_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_ocean_driver.F -------------------------------------------------------------------------------- /phys/module_sf_oml.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_oml.F -------------------------------------------------------------------------------- /phys/module_sf_pxlsm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_pxlsm.F -------------------------------------------------------------------------------- /phys/module_sf_pxlsm_data.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_pxlsm_data.F -------------------------------------------------------------------------------- /phys/module_sf_pxsfclay.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_pxsfclay.F -------------------------------------------------------------------------------- /phys/module_sf_qnsesfc.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_qnsesfc.F -------------------------------------------------------------------------------- /phys/module_sf_ruclsm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_ruclsm.F -------------------------------------------------------------------------------- /phys/module_sf_scmflux.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_scmflux.F -------------------------------------------------------------------------------- /phys/module_sf_scmskintemp.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_scmskintemp.F -------------------------------------------------------------------------------- /phys/module_sf_sfcdiags.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_sfcdiags.F -------------------------------------------------------------------------------- /phys/module_sf_sfcdiags_ruclsm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_sfcdiags_ruclsm.F -------------------------------------------------------------------------------- /phys/module_sf_sfclay.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_sfclay.F -------------------------------------------------------------------------------- /phys/module_sf_sfclayrev.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_sfclayrev.F -------------------------------------------------------------------------------- /phys/module_sf_slab.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_slab.F -------------------------------------------------------------------------------- /phys/module_sf_ssib.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_ssib.F -------------------------------------------------------------------------------- /phys/module_sf_sstskin.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_sstskin.F -------------------------------------------------------------------------------- /phys/module_sf_temfsfclay.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_temfsfclay.F -------------------------------------------------------------------------------- /phys/module_sf_tmnupdate.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_tmnupdate.F -------------------------------------------------------------------------------- /phys/module_sf_urban.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_sf_urban.F -------------------------------------------------------------------------------- /phys/module_shallowcu_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_shallowcu_driver.F -------------------------------------------------------------------------------- /phys/module_shcu_camuwshcu.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_shcu_camuwshcu.F -------------------------------------------------------------------------------- /phys/module_shcu_grims.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_shcu_grims.F -------------------------------------------------------------------------------- /phys/module_surface_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_surface_driver.F -------------------------------------------------------------------------------- /phys/module_tracer_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_tracer_driver.F -------------------------------------------------------------------------------- /phys/module_wind_fitch.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/module_wind_fitch.F -------------------------------------------------------------------------------- /phys/rrtmg_lw_cpu_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/rrtmg_lw_cpu_args.h -------------------------------------------------------------------------------- /phys/rrtmg_lw_cpu_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/rrtmg_lw_cpu_defs.h -------------------------------------------------------------------------------- /phys/taug_cpu_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/taug_cpu_args.h -------------------------------------------------------------------------------- /phys/taug_cpu_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/taug_cpu_defs.h -------------------------------------------------------------------------------- /phys/wsm5.cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/wsm5.cu.c -------------------------------------------------------------------------------- /phys/wsm5_gpu.cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/phys/wsm5_gpu.cu.c -------------------------------------------------------------------------------- /run/CAM_ABS_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CAM_ABS_DATA -------------------------------------------------------------------------------- /run/CAM_AEROPT_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CAM_AEROPT_DATA -------------------------------------------------------------------------------- /run/CAMtr_volume_mixing_ratio.A2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CAMtr_volume_mixing_ratio.A2 -------------------------------------------------------------------------------- /run/CCN_ACTIVATE.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CCN_ACTIVATE.BIN -------------------------------------------------------------------------------- /run/CLM_ALB_ICE_DFS_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CLM_ALB_ICE_DFS_DATA -------------------------------------------------------------------------------- /run/CLM_ALB_ICE_DRC_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CLM_ALB_ICE_DRC_DATA -------------------------------------------------------------------------------- /run/CLM_ASM_ICE_DFS_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CLM_ASM_ICE_DFS_DATA -------------------------------------------------------------------------------- /run/CLM_ASM_ICE_DRC_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CLM_ASM_ICE_DRC_DATA -------------------------------------------------------------------------------- /run/CLM_DRDSDT0_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CLM_DRDSDT0_DATA -------------------------------------------------------------------------------- /run/CLM_EXT_ICE_DFS_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CLM_EXT_ICE_DFS_DATA -------------------------------------------------------------------------------- /run/CLM_EXT_ICE_DRC_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CLM_EXT_ICE_DRC_DATA -------------------------------------------------------------------------------- /run/CLM_KAPPA_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CLM_KAPPA_DATA -------------------------------------------------------------------------------- /run/CLM_TAU_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/CLM_TAU_DATA -------------------------------------------------------------------------------- /run/ETAMPNEW_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/ETAMPNEW_DATA -------------------------------------------------------------------------------- /run/ETAMPNEW_DATA.expanded_rain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/ETAMPNEW_DATA.expanded_rain -------------------------------------------------------------------------------- /run/ETAMPNEW_DATA_DBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/ETAMPNEW_DATA_DBL -------------------------------------------------------------------------------- /run/GENPARM.TBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/GENPARM.TBL -------------------------------------------------------------------------------- /run/LANDUSE.TBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/LANDUSE.TBL -------------------------------------------------------------------------------- /run/MPTABLE.TBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/MPTABLE.TBL -------------------------------------------------------------------------------- /run/README.namelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/README.namelist -------------------------------------------------------------------------------- /run/README.tslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/README.tslist -------------------------------------------------------------------------------- /run/RRTMG_LW_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/RRTMG_LW_DATA -------------------------------------------------------------------------------- /run/RRTMG_LW_DATA_DBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/RRTMG_LW_DATA_DBL -------------------------------------------------------------------------------- /run/RRTMG_SW_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/RRTMG_SW_DATA -------------------------------------------------------------------------------- /run/RRTMG_SW_DATA_DBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/RRTMG_SW_DATA_DBL -------------------------------------------------------------------------------- /run/RRTM_DATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/RRTM_DATA -------------------------------------------------------------------------------- /run/RRTM_DATA_DBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/RRTM_DATA_DBL -------------------------------------------------------------------------------- /run/SOILPARM.TBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/SOILPARM.TBL -------------------------------------------------------------------------------- /run/URBPARM.TBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/URBPARM.TBL -------------------------------------------------------------------------------- /run/URBPARM_UZE.TBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/URBPARM_UZE.TBL -------------------------------------------------------------------------------- /run/VEGPARM.TBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/VEGPARM.TBL -------------------------------------------------------------------------------- /run/aerosol.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/aerosol.formatted -------------------------------------------------------------------------------- /run/aerosol_lat.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/aerosol_lat.formatted -------------------------------------------------------------------------------- /run/aerosol_lon.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/aerosol_lon.formatted -------------------------------------------------------------------------------- /run/aerosol_plev.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/aerosol_plev.formatted -------------------------------------------------------------------------------- /run/bulkdens.asc_s_0_03_0_9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/bulkdens.asc_s_0_03_0_9 -------------------------------------------------------------------------------- /run/bulkradii.asc_s_0_03_0_9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/bulkradii.asc_s_0_03_0_9 -------------------------------------------------------------------------------- /run/capacity.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/capacity.asc -------------------------------------------------------------------------------- /run/co2_trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/co2_trans -------------------------------------------------------------------------------- /run/coeff_p.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/coeff_p.asc -------------------------------------------------------------------------------- /run/coeff_q.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/coeff_q.asc -------------------------------------------------------------------------------- /run/constants.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/constants.asc -------------------------------------------------------------------------------- /run/grib2map.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/grib2map.tbl -------------------------------------------------------------------------------- /run/gribmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/gribmap.txt -------------------------------------------------------------------------------- /run/kernels.asc_s_0_03_0_9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/kernels.asc_s_0_03_0_9 -------------------------------------------------------------------------------- /run/kernels_z.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/kernels_z.asc -------------------------------------------------------------------------------- /run/masses.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/masses.asc -------------------------------------------------------------------------------- /run/ozone.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/ozone.formatted -------------------------------------------------------------------------------- /run/ozone_lat.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/ozone_lat.formatted -------------------------------------------------------------------------------- /run/ozone_plev.formatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/ozone_plev.formatted -------------------------------------------------------------------------------- /run/termvels.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/termvels.asc -------------------------------------------------------------------------------- /run/tr49t67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/tr49t67 -------------------------------------------------------------------------------- /run/tr49t85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/tr49t85 -------------------------------------------------------------------------------- /run/tr67t85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/tr67t85 -------------------------------------------------------------------------------- /run/wind-turbine-1.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/run/wind-turbine-1.tbl -------------------------------------------------------------------------------- /share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/Makefile -------------------------------------------------------------------------------- /share/bobrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/bobrand.c -------------------------------------------------------------------------------- /share/dfi.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/dfi.F -------------------------------------------------------------------------------- /share/init_modules.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/init_modules.F -------------------------------------------------------------------------------- /share/input_wrf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/input_wrf.F -------------------------------------------------------------------------------- /share/interp_fcn.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/interp_fcn.F -------------------------------------------------------------------------------- /share/landread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/landread.c -------------------------------------------------------------------------------- /share/landread.c.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/landread.c.dist -------------------------------------------------------------------------------- /share/landread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/landread.h -------------------------------------------------------------------------------- /share/mediation_force_domain.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/mediation_force_domain.F -------------------------------------------------------------------------------- /share/mediation_integrate.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/mediation_integrate.F -------------------------------------------------------------------------------- /share/mediation_interp_domain.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/mediation_interp_domain.F -------------------------------------------------------------------------------- /share/mediation_nest_move.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/mediation_nest_move.F -------------------------------------------------------------------------------- /share/mediation_wrfmain.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/mediation_wrfmain.F -------------------------------------------------------------------------------- /share/module_MPP.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_MPP.F -------------------------------------------------------------------------------- /share/module_bc.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_bc.F -------------------------------------------------------------------------------- /share/module_bc_time_utilities.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_bc_time_utilities.F -------------------------------------------------------------------------------- /share/module_check_a_mundo.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_check_a_mundo.F -------------------------------------------------------------------------------- /share/module_compute_geop.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_compute_geop.F -------------------------------------------------------------------------------- /share/module_date_time.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_date_time.F -------------------------------------------------------------------------------- /share/module_get_file_names.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_get_file_names.F -------------------------------------------------------------------------------- /share/module_interp_fcn.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_interp_fcn.F -------------------------------------------------------------------------------- /share/module_interp_nmm.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_interp_nmm.F -------------------------------------------------------------------------------- /share/module_interp_store.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_interp_store.F -------------------------------------------------------------------------------- /share/module_io_domain.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_io_domain.F -------------------------------------------------------------------------------- /share/module_io_domain_defs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_io_domain_defs.m4 -------------------------------------------------------------------------------- /share/module_io_wrf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_io_wrf.F -------------------------------------------------------------------------------- /share/module_llxy.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_llxy.F -------------------------------------------------------------------------------- /share/module_model_constants.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_model_constants.F -------------------------------------------------------------------------------- /share/module_optional_input.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_optional_input.F -------------------------------------------------------------------------------- /share/module_random.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_random.F -------------------------------------------------------------------------------- /share/module_soil_pre.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/module_soil_pre.F -------------------------------------------------------------------------------- /share/output_wrf.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/output_wrf.F -------------------------------------------------------------------------------- /share/set_timekeeping.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/set_timekeeping.F -------------------------------------------------------------------------------- /share/set_timekeeping_alarms.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/set_timekeeping_alarms.m4 -------------------------------------------------------------------------------- /share/set_timekeeping_defs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/set_timekeeping_defs.m4 -------------------------------------------------------------------------------- /share/setfeenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/setfeenv.c -------------------------------------------------------------------------------- /share/sint.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/sint.F -------------------------------------------------------------------------------- /share/solve_em.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/solve_em.int -------------------------------------------------------------------------------- /share/solve_interface.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/solve_interface.F -------------------------------------------------------------------------------- /share/solve_nmm.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/solve_nmm.int -------------------------------------------------------------------------------- /share/start_domain.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/start_domain.F -------------------------------------------------------------------------------- /share/start_domain_em.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/start_domain_em.int -------------------------------------------------------------------------------- /share/start_domain_nmm.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/start_domain_nmm.int -------------------------------------------------------------------------------- /share/track_driver.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/track_driver.F -------------------------------------------------------------------------------- /share/track_input.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/track_input.F -------------------------------------------------------------------------------- /share/wrf_bdyin.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/wrf_bdyin.F -------------------------------------------------------------------------------- /share/wrf_bdyout.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/wrf_bdyout.F -------------------------------------------------------------------------------- /share/wrf_ext_read_field.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/wrf_ext_read_field.F -------------------------------------------------------------------------------- /share/wrf_ext_write_field.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/wrf_ext_write_field.F -------------------------------------------------------------------------------- /share/wrf_fddaobs_in.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/wrf_fddaobs_in.F -------------------------------------------------------------------------------- /share/wrf_restartin.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/wrf_restartin.F -------------------------------------------------------------------------------- /share/wrf_restartout.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/wrf_restartout.F -------------------------------------------------------------------------------- /share/wrf_timeseries.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/wrf_timeseries.F -------------------------------------------------------------------------------- /share/wrf_tsin.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/share/wrf_tsin.F -------------------------------------------------------------------------------- /test/em_b_wave/input_jet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_b_wave/input_jet -------------------------------------------------------------------------------- /test/em_b_wave/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_b_wave/namelist.input -------------------------------------------------------------------------------- /test/em_b_wave/run_me_first.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_b_wave/run_me_first.csh -------------------------------------------------------------------------------- /test/em_b_wave/run_restart.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_b_wave/run_restart.tar -------------------------------------------------------------------------------- /test/em_convrad/README.convrad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_convrad/README.convrad -------------------------------------------------------------------------------- /test/em_convrad/input_sounding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_convrad/input_sounding -------------------------------------------------------------------------------- /test/em_convrad/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_convrad/namelist.input -------------------------------------------------------------------------------- /test/em_convrad/run_me_first.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_convrad/run_me_first.csh -------------------------------------------------------------------------------- /test/em_fire/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_fire/README.txt -------------------------------------------------------------------------------- /test/em_fire/create_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_fire/create_links.sh -------------------------------------------------------------------------------- /test/em_fire/namelist.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_fire/namelist.fire -------------------------------------------------------------------------------- /test/em_grav2d_x/README.grav2d_x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_grav2d_x/README.grav2d_x -------------------------------------------------------------------------------- /test/em_grav2d_x/input_sounding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_grav2d_x/input_sounding -------------------------------------------------------------------------------- /test/em_grav2d_x/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_grav2d_x/namelist.input -------------------------------------------------------------------------------- /test/em_hill2d_x/input_sounding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_hill2d_x/input_sounding -------------------------------------------------------------------------------- /test/em_hill2d_x/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_hill2d_x/namelist.input -------------------------------------------------------------------------------- /test/em_les/README.les: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_les/README.les -------------------------------------------------------------------------------- /test/em_les/input_sounding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_les/input_sounding -------------------------------------------------------------------------------- /test/em_les/input_sounding.SGP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_les/input_sounding.SGP -------------------------------------------------------------------------------- /test/em_les/input_sounding_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_les/input_sounding_free -------------------------------------------------------------------------------- /test/em_les/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_les/namelist.input -------------------------------------------------------------------------------- /test/em_les/namelist.input.SGP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_les/namelist.input.SGP -------------------------------------------------------------------------------- /test/em_real/README.grid_fdda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/README.grid_fdda -------------------------------------------------------------------------------- /test/em_real/README.obs_fdda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/README.obs_fdda -------------------------------------------------------------------------------- /test/em_real/examples.namelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/examples.namelist -------------------------------------------------------------------------------- /test/em_real/landFilenames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/landFilenames -------------------------------------------------------------------------------- /test/em_real/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/namelist.input -------------------------------------------------------------------------------- /test/em_real/namelist.input.4km: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/namelist.input.4km -------------------------------------------------------------------------------- /test/em_real/namelist.input.chem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/namelist.input.chem -------------------------------------------------------------------------------- /test/em_real/namelist.input.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/namelist.input.fire -------------------------------------------------------------------------------- /test/em_real/namelist.input.volc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/namelist.input.volc -------------------------------------------------------------------------------- /test/em_real/run_1way.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/run_1way.tar -------------------------------------------------------------------------------- /test/em_real/run_2way.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/run_2way.tar -------------------------------------------------------------------------------- /test/em_real/run_restart.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/run_restart.tar -------------------------------------------------------------------------------- /test/em_real/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/sample.txt -------------------------------------------------------------------------------- /test/em_real/wind-turbine-1.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/wind-turbine-1.tbl -------------------------------------------------------------------------------- /test/em_real/windturbines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_real/windturbines.txt -------------------------------------------------------------------------------- /test/em_scm_xy/README.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_scm_xy/README.scm -------------------------------------------------------------------------------- /test/em_scm_xy/force_ideal.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_scm_xy/force_ideal.nc -------------------------------------------------------------------------------- /test/em_scm_xy/forcing_file.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_scm_xy/forcing_file.cdl -------------------------------------------------------------------------------- /test/em_scm_xy/input_soil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_scm_xy/input_soil -------------------------------------------------------------------------------- /test/em_scm_xy/input_sounding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_scm_xy/input_sounding -------------------------------------------------------------------------------- /test/em_scm_xy/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_scm_xy/namelist.input -------------------------------------------------------------------------------- /test/em_scm_xy/run_me_first.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/em_scm_xy/run_me_first.csh -------------------------------------------------------------------------------- /test/exp_real/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/exp_real/namelist.input -------------------------------------------------------------------------------- /test/ibm_examples/okc_bld.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/ibm_examples/okc_bld.nc -------------------------------------------------------------------------------- /test/nmm_real/namelist.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/nmm_real/namelist.input -------------------------------------------------------------------------------- /test/nmm_real/tomorrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/test/nmm_real/tomorrow -------------------------------------------------------------------------------- /test/nmm_tropical_cyclone/storm.center: -------------------------------------------------------------------------------- 1 | 14.32 2 | -67.82 3 | -------------------------------------------------------------------------------- /tools/CodeBase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/CodeBase/Makefile -------------------------------------------------------------------------------- /tools/CodeBase/callgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/CodeBase/callgraph.c -------------------------------------------------------------------------------- /tools/CodeBase/deftab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/CodeBase/deftab.c -------------------------------------------------------------------------------- /tools/CodeBase/nocontf90.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/CodeBase/nocontf90.c -------------------------------------------------------------------------------- /tools/CodeBase/subinfo_calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/CodeBase/subinfo_calls.c -------------------------------------------------------------------------------- /tools/CodeBase/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/CodeBase/sym.c -------------------------------------------------------------------------------- /tools/CodeBase/sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/CodeBase/sym.h -------------------------------------------------------------------------------- /tools/CodeBase/symtab_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/CodeBase/symtab_gen.c -------------------------------------------------------------------------------- /tools/CodeBase/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/CodeBase/util.c -------------------------------------------------------------------------------- /tools/CodeBase/wrfvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/CodeBase/wrfvar.c -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/all_reg.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/all_reg.csh -------------------------------------------------------------------------------- /tools/build_codebase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/build_codebase -------------------------------------------------------------------------------- /tools/build_test.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/build_test.csh -------------------------------------------------------------------------------- /tools/callgraph.page1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/callgraph.page1 -------------------------------------------------------------------------------- /tools/callgraph.page2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/callgraph.page2 -------------------------------------------------------------------------------- /tools/check_for_bad_includes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/check_for_bad_includes.pl -------------------------------------------------------------------------------- /tools/collapsd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/collapsd.gif -------------------------------------------------------------------------------- /tools/commit_form.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/commit_form.txt -------------------------------------------------------------------------------- /tools/danger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/danger -------------------------------------------------------------------------------- /tools/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/data.c -------------------------------------------------------------------------------- /tools/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/data.h -------------------------------------------------------------------------------- /tools/daughter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/daughter.gif -------------------------------------------------------------------------------- /tools/debug_macro_toolchest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/debug_macro_toolchest -------------------------------------------------------------------------------- /tools/exploded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/exploded.gif -------------------------------------------------------------------------------- /tools/fortran_2003_fflush_test.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/fortran_2003_fflush_test.F -------------------------------------------------------------------------------- /tools/fortran_2003_flush_test.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/fortran_2003_flush_test.F -------------------------------------------------------------------------------- /tools/fortran_2003_ieee_test.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/fortran_2003_ieee_test.F -------------------------------------------------------------------------------- /tools/fortran_2003_iso_c_test.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/fortran_2003_iso_c_test.F -------------------------------------------------------------------------------- /tools/four2eight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/four2eight.c -------------------------------------------------------------------------------- /tools/fseek_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/fseek_test.c -------------------------------------------------------------------------------- /tools/gen_allocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_allocs.c -------------------------------------------------------------------------------- /tools/gen_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_args.c -------------------------------------------------------------------------------- /tools/gen_comms.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_comms.stub -------------------------------------------------------------------------------- /tools/gen_comms_warning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_comms_warning -------------------------------------------------------------------------------- /tools/gen_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_config.c -------------------------------------------------------------------------------- /tools/gen_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_defs.c -------------------------------------------------------------------------------- /tools/gen_interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_interp.c -------------------------------------------------------------------------------- /tools/gen_mod_state_descr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_mod_state_descr.c -------------------------------------------------------------------------------- /tools/gen_model_data_ord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_model_data_ord.c -------------------------------------------------------------------------------- /tools/gen_scalar_derefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_scalar_derefs.c -------------------------------------------------------------------------------- /tools/gen_scalar_indices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_scalar_indices.c -------------------------------------------------------------------------------- /tools/gen_streams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_streams.c -------------------------------------------------------------------------------- /tools/gen_wrf_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/gen_wrf_io.c -------------------------------------------------------------------------------- /tools/index.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/index.page -------------------------------------------------------------------------------- /tools/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/misc.c -------------------------------------------------------------------------------- /tools/mpi2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/mpi2_test.c -------------------------------------------------------------------------------- /tools/mpi2_thread_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/mpi2_thread_test.c -------------------------------------------------------------------------------- /tools/my_strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/my_strtok.c -------------------------------------------------------------------------------- /tools/nc4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/nc4_test.c -------------------------------------------------------------------------------- /tools/nest_test.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/nest_test.tar -------------------------------------------------------------------------------- /tools/protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/protos.h -------------------------------------------------------------------------------- /tools/reg_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/reg_parse.c -------------------------------------------------------------------------------- /tools/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/registry.c -------------------------------------------------------------------------------- /tools/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/registry.h -------------------------------------------------------------------------------- /tools/regtest.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/regtest.csh -------------------------------------------------------------------------------- /tools/regtest_esmf.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/regtest_esmf.csh -------------------------------------------------------------------------------- /tools/regtest_hwrf.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/regtest_hwrf.csh -------------------------------------------------------------------------------- /tools/regtest_nmmnest.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/regtest_nmmnest.csh -------------------------------------------------------------------------------- /tools/safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/safe -------------------------------------------------------------------------------- /tools/set_dim_strs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/set_dim_strs.c -------------------------------------------------------------------------------- /tools/source_for_pgi_windows.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/source_for_pgi_windows.csh -------------------------------------------------------------------------------- /tools/standard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/standard.c -------------------------------------------------------------------------------- /tools/subinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/subinfo -------------------------------------------------------------------------------- /tools/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/sym.c -------------------------------------------------------------------------------- /tools/sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/sym.h -------------------------------------------------------------------------------- /tools/symtab_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/symtab_gen.c -------------------------------------------------------------------------------- /tools/test4_0_ESMFSST.lsf.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/test4_0_ESMFSST.lsf.csh -------------------------------------------------------------------------------- /tools/test_compile.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/test_compile.csh -------------------------------------------------------------------------------- /tools/testomatic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/testomatic -------------------------------------------------------------------------------- /tools/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/WRF-IBM/HEAD/tools/type.c --------------------------------------------------------------------------------