Skip to content
Open
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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ You can get the source code from `github

The development mode is often useful. From the fluidfoam directory, run::

python -m build && pip install dist/fluidfoam*.whl --user
python3 -m pip install --editable . --user

Or if you are using a virtual environment, run::

python3 -m pip install --editable .

Committing instructions (in development mode)
---------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion fluidfoam/readpostpro.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def readprobes(path, probes_name="probes", time_name="0", name="U"):
j += 1
elif "#".encode() not in line:
break
n_probes = j-2
n_probes = j-1
probes_loc = np.zeros([n_probes, 3], dtype=float)
j = 0
header = True
Expand Down