Skip to content

Commit bfbea85

Browse files
committed
Text improvements
1 parent aef8cfd commit bfbea85

File tree

8 files changed

+21
-19
lines changed

8 files changed

+21
-19
lines changed

Code/GCMMA_BEAM.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
77
### ###
88
### The orginal work is written by Krister Svanberg in MATLAB. ###
9-
### This is the python version of the code written Arjen Deetman. ###
9+
### This is the Python implementation of the code written by Arjen Deetman. ###
1010
### version 09-11-2019 ###
1111
########################################################################################################
1212

1313
"""
14-
Orginal work written by Krister Svanberg in Matlab. This is the python version of the code written
15-
by Arjen Deetman.
14+
Orginal work written by Krister Svanberg in Matlab. This is the Python implementation of the code
15+
written by Arjen Deetman.
1616
1717
This script is the "beam problem" from the MMA paper of Krister Svanberg.
1818

Code/MMA.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
77
### ###
88
### The orginal work is written by Krister Svanberg in MATLAB. ###
9-
### This is the python version of the code written Arjen Deetman. ###
10-
### version 9-10-2023 ###
9+
### This is the Python implementation of the code written by Arjen Deetman. ###
10+
### version 9-10-2023 ###
1111
########################################################################################################
1212

1313
"""
14-
Orginal work written by Krister Svanberg in Matlab. This is the python version of the code written
15-
by Arjen Deetman.
14+
Orginal work written by Krister Svanberg in Matlab. This is the Python implementation of the code
15+
written by Arjen Deetman.
1616
1717
This file gives the functions mmasub, gcmmasub, subsolv and kktcheck.
1818
"""

Code/MMA_BEAM2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
77
### ###
88
### The orginal work is written by Krister Svanberg in MATLAB. ###
9-
### This is the python version of the code written Arjen Deetman. ###
9+
### This is the Python implementation of the code written by Arjen Deetman. ###
1010
### version 09-11-2019 ###
1111
########################################################################################################
1212

1313
"""
14-
Orginal work is written by Krister Svanberg in Matlab. This is the python version of the code written
15-
by Arjen Deetman.
14+
Orginal work written by Krister Svanberg in Matlab. This is the Python implementation of the code
15+
written by Arjen Deetman.
1616
1717
This script is the "beam problem" from the MMA paper of Krister Svanberg.
1818

Code/MMA_FUNCTION.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
77
### ###
88
### The orginal work is written by Krister Svanberg in MATLAB. ###
9-
### This is the python version of the code written Arjen Deetman. ###
9+
### This is the Python implementation of the code written by Arjen Deetman. ###
1010
### version 09-11-2019 ###
1111
########################################################################################################
1212

Code/MMA_FUNCTION2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
77
### ###
88
### The orginal work is written by Krister Svanberg in MATLAB. ###
9-
### This is the python version of the code written Arjen Deetman. ###
9+
### This is the Python implementation of the code written by Arjen Deetman. ###
1010
### version 09-11-2019 ###
1111
########################################################################################################
1212

Code/MMA_TOY2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
77
### ###
88
### The orginal work is written by Krister Svanberg in MATLAB. ###
9-
### This is the python version of the code written Arjen Deetman. ###
9+
### This is the Python implementation of the code written by Arjen Deetman. ###
1010
### version 09-11-2019 ###
1111
########################################################################################################
1212

1313
"""
14-
Orginal work written by Krister Svanberg in Matlab. This is the python version of the code written
15-
by Arjen Deetman.
14+
Orginal work written by Krister Svanberg in Matlab. This is the Python implementation of the code
15+
written by Arjen Deetman.
1616
1717
This script is the "toy problem":
1818
minimize x(1)^2 + x(2)^2 + x(3)^2

Code/MMA_TRUSS2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
77
### ###
88
### The orginal work is written by Krister Svanberg in MATLAB. ###
9-
### This is the python version of the code written Arjen Deetman. ###
9+
### This is the Python implementation of the code written by Arjen Deetman. ###
1010
### version 09-11-2019 ###
1111
########################################################################################################
1212

1313

1414
"""
15-
Orginal work written by Krister Svanberg in Matlab. This is the python version of the code written
16-
by Arjen Deetman.
15+
Orginal work written by Krister Svanberg in Matlab. This is the Python implementation of the code
16+
written by Arjen Deetman.
1717
1818
This script is the "three bar truss problem":
1919

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
Python code of the Method of Moving Asymptotes ([Svanberg, 1987](https://onlinelibrary.wiley.com/doi/abs/10.1002/nme.1620240207)). Based on the GCMMA-MMA-code written for MATLAB by Krister Svanberg. The original work was taken from http://www.smoptit.se/ under the GNU General Public License. If you download and use the code, Krister Svanberg would appreciate if you could send him an e-mail and tell who you are and what your plan is (e-mail adress can be found on his website). The user should reference to the academic work of Krister Svanberg when work will be published. References can be find below. An example application in topology optimization can be found [here](https://github.com/arjendeetman/TopOpt-MMA-Python).
33

44
## License
5-
Copyright (c) 2020 Arjen Deetman
5+
Copyright notice:
6+
- Original work written in MATLAB: Copyright (c) Krister Svanberg
7+
- Derived Python implementation: Copyright (c) 2020-2023 Arjen Deetman
68

79
GCMMA-MMA-Python is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
810

0 commit comments

Comments
 (0)