From 378e88a418303fddeae1715c2dfb1aa40b8abdb9 Mon Sep 17 00:00:00 2001 From: many <VC6l9uBUTvTlcIjrI7sn> Date: Fri, 18 Nov 2022 15:42:50 +0100 Subject: [PATCH] fix warnings --- ntrfc/meshquality/nondimensionals.py | 2 +- ntrfc/turbo/probegeneration.py | 2 +- tests/turbo/test_ntrfc_probegeneration.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ntrfc/meshquality/nondimensionals.py b/ntrfc/meshquality/nondimensionals.py index a53f16ae..3bb72bc7 100644 --- a/ntrfc/meshquality/nondimensionals.py +++ b/ntrfc/meshquality/nondimensionals.py @@ -45,7 +45,7 @@ def cellDirections(cellUMean, wallNorm): def closestWallNormalPoint(point, surfacenormals): surfacepoint_id = surfacenormals.find_closest_point(point) wallpoint = surfacenormals.points[surfacepoint_id] - return surfacenormals.point_arrays["Normals"][surfacepoint_id], wallpoint - point + return surfacenormals.point_data["Normals"][surfacepoint_id], wallpoint - point def calcWallNormalVectors(surfaceMesh, volmesh): diff --git a/ntrfc/turbo/probegeneration.py b/ntrfc/turbo/probegeneration.py index ba0b2c92..fcfac0de 100644 --- a/ntrfc/turbo/probegeneration.py +++ b/ntrfc/turbo/probegeneration.py @@ -70,7 +70,7 @@ def create_stagnationpointprobes(length, nop, sortedpoly, ind_vk, u_inlet, midsp vk_point = sortedpoly.points[ind_vk] angle = vecAngle(u_inlet, np.array([1, 0, 0]) * 180 / np.pi) stagnationLine = pv.Line((0, 0, 0), (-length, 0, 0), nop - 1) - stagnationLine.rotate_z(angle) + stagnationLine.rotate_z(angle,inplace=False) stagnationLine.translate(vk_point) x_probes = stagnationLine.points[::, 0] y_probes = stagnationLine.points[::, 1] diff --git a/tests/turbo/test_ntrfc_probegeneration.py b/tests/turbo/test_ntrfc_probegeneration.py index e8263df8..6a7d8d6c 100644 --- a/tests/turbo/test_ntrfc_probegeneration.py +++ b/tests/turbo/test_ntrfc_probegeneration.py @@ -30,7 +30,7 @@ def test_create_midpassageprobes(): res = 240 xs, ys = naca(naca_code, res, half_cosine_spacing=False) sorted_poly = pv.PolyData(np.stack([xs, ys, np.zeros(len(xs))]).T) - sorted_poly.rotate_z(angle) + sorted_poly.rotate_z(angle,inplace=False) sorted_extracted_poly, psPoly, ssPoly, ind_vk, ind_hk, midsPoly, beta_leading, beta_trailing, camber_angle = extract_geo_paras( sorted_poly, 1) nop = 40 -- GitLab