MCPcopy Create free account
hub / github.com/NCAR/wrf-python / _tv

Function _tv

src/wrf/extension.py:469–482  ·  view source on GitHub ↗

Wrapper for virtual_temp. Located in wrf_rip_phys_routines.f90.

(tk, qv, outview=None)

Source from the content-addressed store, hash-verified

467@cast_type(arg_idxs=(0, 1))
468@extract_and_transpose()
469def _tv(tk, qv, outview=None):
470 """Wrapper for virtual_temp.
471
472 Located in wrf_rip_phys_routines.f90.
473
474 """
475 if outview is None:
476 outview = np.empty_like(tk)
477
478 result = virtual_temp(tk,
479 qv,
480 outview)
481
482 return result
483
484
485@check_args(0, 3, (3, 3, 3))

Callers 4

get_tvFunction · 0.85
get_pwFunction · 0.85
tvirtualFunction · 0.85
pwFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected