Skip to content

Commit d2ed360

Browse files
committed
formatting take 2
1 parent 575a37a commit d2ed360

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: tutorial/overset/mesh/run_pyhyp.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from collections import OrderedDict
66
from mpi4py import MPI
77
from pyhyp import pyHypMulti
8-
from cgnsutilities.cgnsutilities import *
8+
from cgnsutilities.cgnsutilities import readGrid, combineGrids
99
import argparse
1010

1111
# rst Imports (end)
@@ -34,22 +34,22 @@
3434
s0 = 1.4e-7
3535

3636
# number of Levels in the near-Field
37-
nNearfield = {"L3": 31, "L2": 61, "L1": 121,}[args.level]
37+
nNearfield = {"L3": 31, "L2": 61, "L1": 121}[args.level]
3838

3939

4040
# Farfield
4141
# background mesh spacing
42-
dhStar = {"L3": 0.178, "L2": 0.09, "L1": 0.045,}[args.level]
42+
dhStar = {"L3": 0.178, "L2": 0.09, "L1": 0.045}[args.level]
4343

44-
nFarfield = {"L3": 13, "L2": 25, "L1": 49,}[args.level]
44+
nFarfield = {"L3": 13, "L2": 25, "L1": 49}[args.level]
4545

4646

4747
# General
4848
# factor for spacings
49-
fact = {"L3": 1.0, "L2": 2.0, "L1": 4.0,}[args.level]
49+
fact = {"L3": 1.0, "L2": 2.0, "L1": 4.0}[args.level]
5050

5151
# levels of coarsening for the surface meshes
52-
coarsen = {"L1": 1, "L2": 2, "L3": 3,}[args.level]
52+
coarsen = {"L1": 1, "L2": 2, "L3": 3}[args.level]
5353
# rst parameters (end)
5454

5555

0 commit comments

Comments
 (0)