Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fix for jobs with multiple grids in the same file. #117

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions bgcval2/functions/globalVolMean.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,28 @@

import numpy as np
from bgcval2.functions.standard_functions import choose_best_var
from bgcval2.functions.standard_functions import find_best_var

#def calc_vol(nc):
# """
# Calculate volume from the (grid-T) netcdf file.
# """
# area = nc.variables['area'][:]
# thkcello = nc.variables['thkcello'][:]
# area = area[None, None,:, :]
# return thkcello * area
valeriupredoi marked this conversation as resolved.
Show resolved Hide resolved

def calc_vol(nc):
"""
Calculate volume from the (grid-T) netcdf file.
"""
area = nc.variables['area'][:]
thkcello = nc.variables['thkcello'][:]
area_key = find_best_var(nc, ['area', 'area_grid_T'])
thkcello_key = find_best_var(nc, ['thkcello', 'thkcello_grid_T'])
area = nc.variables[area_key][:]
thkcello = nc.variables[thkcello_key][:]
area = area[None, None,:, :]
return thkcello * area


def globalVolumeMean(nc, keys, **kwargs):
"""
Calculate the global volume mean.
Expand Down
Loading