From 135f3669cb382696c77e714062d67852a02bcd34 Mon Sep 17 00:00:00 2001 From: Daniel Brown <ddb@star.sr.bham.ac.uk> Date: Fri, 17 Apr 2015 14:44:55 +0100 Subject: [PATCH] updating version and romhom --- pykat/__init__.py | 3 ++- pykat/optics/romhom.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pykat/__init__.py b/pykat/__init__.py index c4a01af..781183d 100644 --- a/pykat/__init__.py +++ b/pykat/__init__.py @@ -2,7 +2,8 @@ from __future__ import absolute_import from __future__ import division from __future__ import print_function from __future__ import unicode_literals -__version__ = "0.7.2" + +__version__ = "0.7.3" # This flag is used to switch on the gui features in pkat at import time USE_GUI = False diff --git a/pykat/optics/romhom.py b/pykat/optics/romhom.py index 9f96d2c..847dae2 100644 --- a/pykat/optics/romhom.py +++ b/pykat/optics/romhom.py @@ -336,7 +336,7 @@ def makeWeights(smap, EI, verbose=True, useSymmetry=True, newtonCotesOrder=1): if useSymmetry: # get full A_xy - A_xy = smap.z_xy()#.transpose() + A_xy = smap.z_xy() xm = smap.x[smap.x < 0] xp = smap.x[smap.x > 0] @@ -819,7 +819,7 @@ def makeWeightsNew(smap, EIxFilename, EIyFilename=None, verbose=True, newtonCote EIy = pickle.load(f) # get full A_xy - A_xy = smap.z_xy().transpose() + A_xy = smap.z_xy() xm = smap.x[smap.x <= 0] xp = smap.x[smap.x >= 0] -- GitLab