We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc13106 commit a2b0e05Copy full SHA for a2b0e05
pylbm_ui/responses.py
@@ -234,15 +234,15 @@ def value(self):
234
return np.log10(std) if self.log10 else std
235
236
def __str__(self):
237
- return f'ErrStd_{self.field}'
+ return f'StdErr_{self.field}'
238
239
class ErrorAvg(ErrorStd):
240
def value(self):
241
avg = np.average(np.asarray(self.error))
242
return np.log10(avg) if self.log10 else avg
243
244
245
- return f'ErrAvg_{self.field}'
+ return f'AvgErr_{self.field}'
246
247
class CFL(AfterSimulation):
248
def __init__(self, rho, q):
0 commit comments