Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .flake8

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
syntax:glob

# Ignore pre-commit config
.pre-commit-config.yaml

*.mod
*.o
*.a
Expand Down
1 change: 0 additions & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,3 @@ University of Michigan's Multidisciplinary Design Optimization Laboratory (MDO L
College of Engineering, Aerospace Engineering Department\
http://mdolab.engin.umich.edu/
______________________________________________________________________________

1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ clean:
adflow_build:
ln -sf config/config.mk config.mk;
(cd src/build/ && make)

1 change: 0 additions & 1 deletion Makefile_CS
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,3 @@ adflow_build:
(cd src_cs/build/ && make -f Makefile1 directories)
(cd src_cs/build/ && make -f Makefile1 complexify)
(cd src_cs/build/ && make)

6 changes: 3 additions & 3 deletions adflow/mphys/mphys_adflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def print_func_call(component):
message += f" for {component.ap.name} problem"

if component.comm.rank == 0:
print(f"\n{'='*len(message)}", flush=True)
print(f"\n{'=' * len(message)}", flush=True)
print(message, flush=True)
print(f"{'='*len(message)}", flush=True)
print(f"{'=' * len(message)}", flush=True)


def set_vol_coords(solver, inputs):
Expand Down Expand Up @@ -309,7 +309,7 @@ def _getTriangulatedMeshSurface(self, groupName=None, **kwargs):

# Now go around the face and add a triangle for each adjacent pair
# of points. This assumes an ordered connectivity from the
# meshwarping
# mesh warping
for i in range(faceSize):
idx = faceNodes[i]
p0.append(avgPt)
Expand Down
Loading