MCPcopy Create free account
hub / github.com/DedalusProject/dedalus / max

Method max

dedalus/extras/flow_tools.py:107–110  ·  view source on GitHub ↗

Compute global max of a property on the grid.

(self, name)

Source from the content-addressed store, hash-verified

105 return self.reducer.global_min(gdata)
106
107 def max(self, name):
108 """Compute global max of a property on the grid."""
109 gdata = self.properties[name]['g']
110 return self.reducer.global_max(gdata)
111
112 def grid_average(self, name):
113 """Compute global mean of a property on the grid."""

Callers 15

shear_flow.pyFile · 0.80
max_growth_rateFunction · 0.80
mathieu_evp.pyFile · 0.80
mainFunction · 0.80
rayleigh_benard.pyFile · 0.80
libration.pyFile · 0.80
rng_elementsFunction · 0.80
test_cartesian_outputFunction · 0.80

Calls 1

global_maxMethod · 0.80