From c4853e5e5284ae0cb1aa2ae2b51e3aad1df307c2 Mon Sep 17 00:00:00 2001 From: Martin Bauer <martin.bauer@fau.de> Date: Fri, 11 Jan 2019 14:50:03 +0100 Subject: [PATCH] New phase field step that uses 4th order FD to compute force - complicated pressure tensor derivation not required --- slicing.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/slicing.py b/slicing.py index 93211d24f..b925ac1d2 100644 --- a/slicing.py +++ b/slicing.py @@ -17,6 +17,16 @@ class SlicedGetter(object): def __getitem__(self, item): return self._functionReturningArray(item) +class SlicedGetterDataHandling: + def __init__(self, data_handling, name): + self.dh = data_handling + self.name = name + + def __getitem__(self, slice_obj): + if slice_obj is None: + slice_obj = make_slice[:, :] if self.data_handling.dim == 2 else make_slice[:, :, 0.5] + return self.dh.gather_array(self.name, slice_obj).squeeze() + def normalize_slice(slices, sizes): """Converts slices with floating point and/or negative entries to integer slices""" -- GitLab