Skip to content

Commit bff5bd1

Browse files
committed
Merge branch 'develop'
Former-commit-id: 2443557
2 parents ec01f6e + e62e81c commit bff5bd1

55 files changed

Lines changed: 2151 additions & 1974 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.idea/Macro.iml

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 505 additions & 559 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The main data structure is a Python Dictionary with different data attached to i
5656

5757
# Need more help?
5858
If you need help on how to contribute please contact one of the following people
59-
- Andrés Vieira Vázquez - avieira@uvigo.es
59+
- Lorena Docasar Vázquez - docasarlorena@gmail.com
6060
- Orlando García Feal - orlando@uvigo.es
6161
- José Manuel Domínguez Alonso - jmdalonso@gmail.com
6262
- Alejandro Jacobo Cabrera Crespo - alexbexe@uvigo.es

DesignSPHysics.FCMacro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2.7
1+
#!/usr/bin/env python3.7
22
# -*- coding: utf-8 -*-
33

44
"""

DesignSPHysics.py.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
d75e570df4e0c5883f952e4fce9ae329ff34a4e6
1+
81a84f4ddb8bb8673d1b35b16a8cd3d1ee63e36d

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2017 - Andrés Vieira (anvieiravazquez@gmail.com)
1+
Copyright (C) 2019 - Andrés Vieira & Lorena Docasar(docasarlorena@gmail.com)
22
EPHYSLAB Environmental Physics Laboratory, Universidade de Vigo
33
EPHYTECH Environmental Physics Technologies
44

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ It includes support for pre-processing with GenCase, simulation with DualSPHysic
1515

1616
In the future the code will be modular, so integration with different SPH solvers can be used. Right now it's optimized to be used with DualSPHysics 4.X
1717

18-
It is developed as a FreeCAD module with a macro bootstrapper, in Python 2.7, using the QT libraries via PySide.
18+
It is developed as a FreeCAD module with a macro bootstrapper, in Python 3.7, using the QT libraries via PySide.
1919

2020
## Installation instructions
2121
To install DesignSPHysics you have 2 options: Using an installer (release version) or using a development build (git)
@@ -25,13 +25,12 @@ To install a release version go to the download section of the [official webpage
2525

2626
Execute the installer (installer.exe on Windows and installer on GNU/Linux) to open the installer. Then press install and it will copy the needed scripts in FreeCAD's macro default folder.
2727

28-
It can also be done manually, unpackage release-windows.zip or release-linux.tar.gz, choose 'resource' folder and rename the folder to 'DesignSPHysics'. Then copy the folder to the Mod folder of the FreeCAD installation directory.
28+
It can also be done manually, unpackage release-windows.zip or release-linux.tar.gz, choose 'resource' folder and rename the folder to 'DesignSPHysics'. Then copy the folder to the Mod folder of the FreeCAD installation directory.
2929

3030
By default, for example, in Windows, it is located in `%appdata%/FreeCAD/Mod` or in Linux in `~/.FreeCAD/Mod`
3131

3232
Next open the folder and copy the file `DesignSPHysics.FCMacro` into the FreeCAD macro directory (`%appdata%/FreeCAD/Macro` on Windows; `~/.FreeCAD/Macro` on GNU/Linux).
3333

34-
3534
### Installing a develompent build
3635
Clone this repository and rename the folder to 'DesignSPHysics'. Then copy the folder to the Mod folder of the FreeCAD installation directory.
3736

@@ -46,7 +45,7 @@ You can check the [DesignSPHysics Wiki](http://design.sphysics.org/wiki) to get
4645
Please check the [CONTRIBUTING file](CONTRIBUTING.md) to view information about how to contribute to the project and how it is structured.
4746

4847
## Copyright and License
49-
Copyright (C) 2017 - Andrés Vieira (anvieiravazquez@gmail.com)
48+
Copyright (C) 2019
5049
EPHYSLAB Environmental Physics Laboratory, Universidade de Vigo
5150
EPHYTECH Environmental Physics Technologies
5251

@@ -64,3 +63,4 @@ GNU General Public License for more details.
6463

6564
You should have received a copy of the GNU General Public License
6665
along with DesignSPHysics. If not, see <http://www.gnu.org/licenses/>.
66+

default-config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"windows":{
33
"gencase_path": "./dualsphysics/bin/GenCase4_win64.exe",
4-
"dsphysics_path": "./dualsphysics/bin/DualSPHysics4.2_win64.exe",
4+
"dsphysics_path": "./dualsphysics/bin/DualSPHysics4.4_win64.exe",
55
"partvtk4_path": "./dualsphysics/bin/PartVTK4_win64.exe",
66
"computeforces_path": "./dualsphysics/bin/ComputeForces4_win64.exe",
77
"floatinginfo_path": "./dualsphysics/bin/FloatingInfo4_win64.exe",
@@ -12,7 +12,7 @@
1212
},
1313
"linux":{
1414
"gencase_path": "./dualsphysics/bin/GenCase4_linux64",
15-
"dsphysics_path": "./dualsphysics/bin/DualSPHysics4.2_linux64",
15+
"dsphysics_path": "./dualsphysics/bin/DualSPHysics4.4_linux64",
1616
"partvtk4_path": "./dualsphysics/bin/PartVTK4_linux64",
1717
"computeforces_path": "./dualsphysics/bin/ComputeForces4_linux64",
1818
"floatinginfo_path": "./dualsphysics/bin/FloatingInfo4_linux64",

ds_modules/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2.7
1+
#!/usr/bin/env python3.7
22
# -*- coding: utf-8 -*-
33
"""DesignSPHysics Define Constants.
44
@@ -8,7 +8,7 @@
88

99

1010
"""
11-
Copyright (C) 2018 - Andrés Vieira (anvieiravazquez@gmail.com) & Lorena Docasar Vázquez (docasarlorena@gmail.com)
11+
Copyright (C) 2019
1212
EPHYSLAB Environmental Physics Laboratory, Universidade de Vigo
1313
1414
This file is part of DesignSPHysics.

0 commit comments

Comments
 (0)