iam-git / WellMet (public) (License: MIT) (since 2021-08-31) (hash sha1)
WellMet is pure Python framework for spatial structural reliability analysis. Or, more specifically, for "failure probability estimation and detection of failure surfaces by adaptive sequential decomposition of the design domain".
List of commits:
Subject Hash Author Date (UTC)
simplex.FullCubatureIntegration: store simplex probabilities in sorted dicts c0da90731ff3ede47d9b4eec0ad9b28a29027167 I am 2023-02-09 01:23:14
dicebox.circumtri: exploratory: even better idea 811ab11cd7172ff4a3807992f4928be2e8068ec0 I am 2023-02-08 15:31:23
dicebox.circumtri: exploratory, new idea 526d3f6185887ff48a341b0705d74dde4d15ca87 I am 2023-02-08 03:03:41
dicebox.circumtri: exploratory 806063d2e223c812280dc4845153450dd47faed3 I am 2023-02-06 17:15:15
dicebox.circumtri: exploratory efed2589f642d502f30e80f0e9b45dfeecd1c7c7 I am 2023-02-06 13:40:24
dicebox.circumtri: exploratory - again 34d3f4e47420e1c1e26b09570fb44d3270194751 I am 2023-02-06 12:50:45
qt_gui.qt_dicebox: change default q of circumtri classes 9fd5855e5d7cacf80d27fb383dd18a92d60e138b I am 2023-02-06 12:30:27
dicebox.circumtri: tune up exploratory rule one more time bfaa8d65bd13956252a6a25382c621aca7a33e3f I am 2023-02-06 12:05:00
convex_hull.QHull.is_outside: mark everything as outside until convex hull is created beecd924a63603868807a8a603cbeb04857e5cde I am 2023-02-06 12:03:35
dicebox.circumtri: get_exploratory_radius: turn it up some more ecd638ca90bac88df515cf803a103e350b08041e I am 2023-02-03 10:58:37
mplot: ongoing ad-hoc changes fd71b93abee959231ffd76324cf2fbc0b3bbbdfe I am 2023-02-02 17:59:27
dicebox.circumtri: change default q setting 2a9bdc6604113462a935d409bca429b49ac52cbc I am 2023-02-02 11:55:41
dicebox.circumtri: minor change in explore radia 9aa06dc11be7c935dd47715c0aa53b401be951d4 I am 2023-02-01 23:37:13
dicebox.circumtri: exploratory: another iteration 78c849a2c1b07a55f87d32e3cd6570db222a50b6 I am 2023-02-01 01:02:00
dicebox: new experimental explore() 1d570ef1dcc66b9b1015bd6c1f6877e1405e676c I am 2023-02-01 00:34:57
mplot: improve GRaph; draw vertex estimator only in convergence diagram 5c22e808e4c6cabd8e0d077d5f295eea93957582 I am 2023-01-31 18:02:00
simplex.TopologyAnalysis: implement postprocessing 5b8d6c87bd18e06e2e3e1aa651ebccc6d9ed2e69 I am 2023-01-30 20:59:59
testcases.testcases_nD_papers: add low pf nonlinear oscillator setting 4a75d5ec830f88c35a91e53898e416e568e3913c I am 2023-01-30 16:13:17
qt_gui.qt_plot: replace dropped np.int by int 197cbc3f6cf7ef92fc092a1e026cbace609eaabe I am 2023-01-28 18:07:43
dicebox.circumtri.increment: treat sample as an exploration sample if lies in a critical direction 95158c4f2e450ddc9bf3e4d1c4151e33d901c4b3 I am 2023-01-28 12:13:54
Commit c0da90731ff3ede47d9b4eec0ad9b28a29027167 - simplex.FullCubatureIntegration: store simplex probabilities in sorted dicts
Author: I am
Author date (UTC): 2023-02-09 01:23
Committer name: I am
Committer date (UTC): 2023-02-09 01:23
Parent(s): 811ab11cd7172ff4a3807992f4928be2e8068ec0
Signer:
Signing key:
Signing status: N
Tree: f2e04de290dc37c1abf150e1e41fecd536b3ffc8
File Lines added Lines deleted
wellmet/simplex.py 9 0
File wellmet/simplex.py changed (mode: 100644) (index 028c974..2bbdca9)
... ... from scipy import stats
13 13 import quadpy import quadpy
14 14
15 15 from collections import namedtuple from collections import namedtuple
16 from sortedcollections import ValueSortedDict
16 17
17 18
18 19
 
... ... class FullCubatureIntegration(_Triangulation):
1595 1596 sx.failure_simplices = dict() sx.failure_simplices = dict()
1596 1597 sx.mixed_simplices = dict() sx.mixed_simplices = dict()
1597 1598
1599 sx.safe_simplex_probabilities = ValueSortedDict()
1600 sx.mixed_simplex_probabilities = ValueSortedDict()
1601
1598 1602 sx.centroids = dict() sx.centroids = dict()
1599 1603
1600 1604
 
... ... class FullCubatureIntegration(_Triangulation):
1648 1652 sx.mixed_simplices.pop(simplex, None) sx.mixed_simplices.pop(simplex, None)
1649 1653 sx.safe_simplices.pop(simplex, None) sx.safe_simplices.pop(simplex, None)
1650 1654
1655 sx.mixed_simplex_probabilities.pop(simplex, None)
1656 sx.safe_simplex_probabilities.pop(simplex, None)
1657
1651 1658 sx.centroids.pop(simplex, None) sx.centroids.pop(simplex, None)
1652 1659
1653 1660 #č Bacha, teď posíláme tuple. #č Bacha, teď posíláme tuple.
 
... ... class FullCubatureIntegration(_Triangulation):
1778 1785 #č přídavám jednou, sčítám pořad dokola #č přídavám jednou, sčítám pořad dokola
1779 1786 simplex_estimation = np.array((p_mixed, pfv, pfw, pf)) simplex_estimation = np.array((p_mixed, pfv, pfw, pf))
1780 1787 sx.mixed_simplices[simplex] = simplex_estimation sx.mixed_simplices[simplex] = simplex_estimation
1788 sx.mixed_simplex_probabilities[simplex] = p_mixed
1781 1789 #č odhady jsou ve slovníku, posíláme jen to, co tam není #č odhady jsou ve slovníku, posíláme jen to, co tam není
1782 1790 sx.on_mixed_added(simplex, indices, vertices_model, nodes, vol, fr, wfr, mfpdf) sx.on_mixed_added(simplex, indices, vertices_model, nodes, vol, fr, wfr, mfpdf)
1783 1791
 
... ... class FullCubatureIntegration(_Triangulation):
1920 1928 assert p_safe >= 0 assert p_safe >= 0
1921 1929
1922 1930 sx.safe_simplices[simplex] = p_safe sx.safe_simplices[simplex] = p_safe
1931 sx.safe_simplex_probabilities[simplex] = p_safe
1923 1932 #č odhady jsou ve slovníku, posíláme jen to, co tam není #č odhady jsou ve slovníku, posíláme jen to, co tam není
1924 1933 sx.on_safe_added(simplex, indices, vertices_model, nodes, vol) sx.on_safe_added(simplex, indices, vertices_model, nodes, vol)
1925 1934
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/iam-git/WellMet

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/iam-git/WellMet

Clone this repository using git:
git clone git://git.rocketgit.com/user/iam-git/WellMet

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main