Skip to content

Commit 3de4f50

Browse files
committed
fixed confilict
2 parents 024ecad + 11fc0d0 commit 3de4f50

14 files changed

Lines changed: 25 additions & 25 deletions

File tree

.coveragerc

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[run]
22
omit = examples/*
33
test.py
4-
incompressible/setup.py
5-
compressible/setup.py
6-
lm_atm/setup.py
7-
advection_fv4/setup.py
8-
plot.py
4+
plot.py
5+
6+
[report]
7+
omit = examples/*
8+
test.py
9+
plot.py

.flake8

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[flake8]
22
max-line-length = 120
3-
ignore = E126, E127, E128, E129, E226, E241, E265, E741, F403
4-
exclude = docs/,lm_combustion,radhydro
3+
ignore = E126, E127, E128, E129, E226, E241, E265, E741, F403, W504
4+
exclude = docs/,lm_combustion,radhydro

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ inputs.auto
1616
!/*/tests/*.h5
1717

1818
.cache
19+
20+
.pytest_cache/

.mailmap

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Taher Chegini <taher.chegini@gmail.com> Taher Chegini <taher@cfd-lab.attlocal.net>
2+
Taher Chegini <taher.chegini@gmail.com> taataam <taher.chegini@gmail.com>
3+
Michael Zingale <michael.zingale@stonybrook.edu> Michael Zingale <mzingale@mail.astro.sunysb.edu>
4+
Michael Zingale <michael.zingale@stonybrook.edu> Michael Zingale <zingale@bender.astro.sunysb.edu>
5+
Michael Zingale <michael.zingale@stonybrook.edu> Michael Zingale <zingale@localhost.localdomain>
6+
Michael Zingale <michael.zingale@stonybrook.edu> Michael Zingale <zingale@nan.astro.sunysb.edu>
7+
Michael Zingale <michael.zingale@stonybrook.edu> Michael Zingale <zingale@inf.astro.sunysb.edu>
8+
Michael Zingale <michael.zingale@stonybrook.edu> zingale <zingale>

.pytest_cache/v/cache/lastfailed

Lines changed: 0 additions & 6 deletions
This file was deleted.

.pytest_cache/v/cache/nodeids

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ install:
1919
before_script:
2020
- export PYTHONPATH=$PYTHONPATH:$(pwd)
2121
- export PYRO_HOME=$(pwd)
22-
- ./mk.sh
2322

2423
script:
2524
- flake8 .

advection_nonuniform/advective_fluxes.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ def unsplit_fluxes(my_data, rp, dt, scalar_name):
6060
u = my_data.get_var("x-velocity")
6161
v = my_data.get_var("y-velocity")
6262

63-
cx = u*dt/myg.dx
64-
cy = v*dt/myg.dy
63+
cx = u * dt / myg.dx
64+
cy = v * dt / myg.dy
6565

66-
#--------------------------------------------------------------------------
66+
# --------------------------------------------------------------------------
6767
# monotonized central differences
68-
#--------------------------------------------------------------------------
68+
# --------------------------------------------------------------------------
6969

7070
limiter = rp.get_param("advection.limiter")
7171

@@ -102,8 +102,8 @@ def unsplit_fluxes(my_data, rp, dt, scalar_name):
102102

103103
# compute the transverse flux differences. The flux is just (u a)
104104
# HOTF
105-
F_xt = u*a_x
106-
F_yt = v*a_y
105+
F_xt = u * a_x
106+
F_yt = v * a_y
107107

108108
F_x = myg.scratch_array()
109109
F_y = myg.scratch_array()

docs/source/advection_nonuniform.problems.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ advection\_nonuniform\.problems\.slotted module
1515
.. automodule:: advection_nonuniform.problems.slotted
1616
:members:
1717
:undoc-members:
18-
:show-inheritance:
18+
:show-inheritance:

docs/source/advection_nonuniform_defaults.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,3 @@
3737
+----------------------------------+----------------+----------------------------------------------------+
3838
| offset | ``0.25`` | offset of the slot's center from domain's center |
3939
+----------------------------------+----------------+----------------------------------------------------+
40-

0 commit comments

Comments
 (0)