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.SeparationAxis: fix previous commit 61abd70e69d2fecd74535738c96e74a634af0ad1 I am 2023-03-12 16:49:22
simplex.SeparationAxis: print linprog solution in case of an unexpected status af1aaac1dce3fbc51dc48418685d948a27cf72c6 I am 2023-03-12 15:18:07
g_models: add hyperbola LSF 5f6df35b4280a11c0df1d3cd110250305805ce66 I am 2023-03-12 15:07:20
simplex._Sense: implement piece of postprocessing to get unique vectors 4088852e703947643a8388b2ba8839a694211566 I am 2023-03-10 17:22:29
simplex.SeparationAxis: in case of an unexpected linprog status print result message too 1c9346233693533afb07022c78308b3be6ea9ec7 I am 2023-03-10 15:40:06
whitebox: implement method to .get_sensitivities() from 2D boundary 5729723cfe5c93658c3739fbfec384e135b44073 I am 2023-03-09 22:14:27
simplex.SeparationAxis: make an perfectionism-driven change 8278c48915c326e7731f1934732550c5b9c18e64 I am 2023-03-09 21:51:18
simplex.SeparationAxis: little fix for an hypotetical issue 838e476387c31f9c6847cf7ae8a2a01514038a03 I am 2023-03-09 15:19:48
simplex._Sense: bugfix 3ae53e8b178107b8beb6ad960ec683c8d38a3b3c I am 2023-03-07 23:23:36
simplex._Sense: totally rework, finalized vectors are introduced 829ba58a93481541a58cd4a9f6dae0ba9fb611c6 I am 2023-03-07 13:33:38
simplex: preliminary commit of an _Sense's auxiliary class - brand new SeparationAxis c0bbb714400df48abf7a398e018c5626803bf024 I am 2023-03-04 10:17:12
simplex._Sense: one more optimization a51f4ba65ad4a55ecc74fd82a6e011a4eeed8a5d I am 2023-02-26 15:21:23
qt_gui.qt_plot: implement sensitivity-related Arrows class b5365ae3ca3ab0ed8018e60d4e8711c5c30e4d96 I am 2023-02-26 14:31:10
simplex._Sense: rename "sensibility" to sensitivity a9d56d5386730263eb27e6e31f07b99bab0620fb I am 2023-02-26 14:29:54
g_models: add quadratic 013b4ddc108b94061eaebc1a10d18427f10a34d4 I am 2023-02-24 08:04:12
simplex._Sense: one more performance trick 59b423cca53b9975da67d876110927f233506de8 I am 2023-02-24 08:03:23
simplex: implement separability-based sensibility analysis (new brand _Sense class) 9c5d58f2301893ceaec1b0e90bff76035cfa15b2 I am 2023-02-23 18:49:11
dicebox.circumtri.CirQTri: switch to GaussCubatureIntegration 5b52dd25cb7a997af4953230116deb9efc577d56 I am 2023-02-11 04:32:48
simplex: implement GaussCubatureIntegration in the most memory-friendly way 689d253ae7e2a22242258fd5bef0a069caf7cf75 I am 2023-02-11 04:31:11
convex_hull.QHullCubature: implement memory-friendly outside (chi) integration ad8210a04b1e0903de7435cad16b1304707d0e6e I am 2023-02-09 22:22:05
Commit 61abd70e69d2fecd74535738c96e74a634af0ad1 - simplex.SeparationAxis: fix previous commit
Author: I am
Author date (UTC): 2023-03-12 16:49
Committer name: I am
Committer date (UTC): 2023-03-12 16:49
Parent(s): af1aaac1dce3fbc51dc48418685d948a27cf72c6
Signer:
Signing key:
Signing status: N
Tree: b1d1c24ee796a318fc8acdcafb93921a5ec2e747
File Lines added Lines deleted
wellmet/simplex.py 2 2
File wellmet/simplex.py changed (mode: 100644) (index a93acb2..ff793e3)
... ... class SeparationAxis:
1057 1057 if not result.success: #č konec, zde končíme if not result.success: #č konec, zde končíme
1058 1058 if result.status != 2: # Problem appears to be infeasible. if result.status != 2: # Problem appears to be infeasible.
1059 1059 print("linprog status %s: %s" % (result.status, result.message)) print("linprog status %s: %s" % (result.status, result.message))
1060 print(result.x[:-1])
1060 print("linprog result %s" % result.x)
1061 1061 #č non_separable_point_set zde taky nemusím řešit #č non_separable_point_set zde taky nemusím řešit
1062 1062 return False #č na finalized_nornal nesáháme return False #č na finalized_nornal nesáháme
1063 1063
 
... ... class SeparationAxis:
1145 1145 if not result.success: #č konec, zde končíme if not result.success: #č konec, zde končíme
1146 1146 if result.status != 2: # Problem appears to be infeasible. if result.status != 2: # Problem appears to be infeasible.
1147 1147 print("linprog status %s: %s" % (result.status, result.message)) print("linprog status %s: %s" % (result.status, result.message))
1148 print(result.x[:-1])
1148 print("linprog result %s" % result.x)
1149 1149 #č jediné místo, kde něco do non_separable_point_set přídávame #č jediné místo, kde něco do non_separable_point_set přídávame
1150 1150 self.non_separable_point_set.add(non_separable_point) self.non_separable_point_set.add(non_separable_point)
1151 1151 return False return False
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