Keith Lindsay

Results 7 issues of Keith Lindsay

The `post_data` calls for neutral diffusion diagnostics occur within the subroutine `neutral_diffusion`. This subroutine is called from subroutine `tracer_hordiff` inside a sub-cycling iteration loop that is there to avoid violating...

bug

In most, perhaps all, passive tracer modules in src/tracer, the register tracer function starts with a block like ``` if (associated(CS)) then call MOM_error(WARNING, "DOME_register_tracer called with an "// &...

For example, mean bias from benchmark can be viewed at http://www.cgd.ucar.edu/oce/klindsay/iomb/MarineChemistry/Silicate/b.e20.B1850.f09_g17.pi_control.all.262c/b.e20.B1850.f09_g17.pi_control.all.262c.html#AllModels via pull down menu. This appears to be surface only. I would like to see this at different depths,...

bug

When I run the commands in the following code snippet, I get a ValueError exception. The Traceback is below the code snippet. The values listed in the `cftime.DatetimeNoLeap` call in...

bug

When I run the commands in the following code snippet, I see from the first two lines of output that `esmlab.resample` has reversed the order of dimensions in `time:bounds`, compared...

bug

The following code snippet demonstrates the problem that I'm running into ``` import xarray as xr import esmlab ds = xr.open_dataset('/glade/work/klindsay/analysis/CESM2_coup_carb_cycle_JAMES/tseries/FG_CO2_ocn_piControl_00.nc') print(ds) print('****************************************') ds_mon_clim = esmlab.climatology(ds, freq='mon') print(ds_mon_clim) print('****************************************') ds_mon_clim.sel(region='Global')...

bug

**Is your feature request related to a problem? Please describe.** The following commands ``` ds = xr.open_dataset('/glade/work/klindsay/analysis/CESM2_coup_carb_cycle_JAMES/tseries/FG_CO2_ocn_piControl_00.nc') print(ds.attrs['history']) ds_ann = esmlab.resample(ds, freq='ann') print(ds_ann.attrs['history']) ``` yield the output ``` created by...