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)
qt_gui.qt_testcases: use more concise language 2fbba5ff7b94da07bbb80d21362fcf68ba590be5 I am 2023-05-31 17:01:35
testcases: clean up a little bit 979a70e10cda4786ef17d03217f5a57cd86a6ae9 I am 2023-05-31 16:57:49
g_models: fix quartic name, add parabola b80e98134d7a5c91ad9e44ad9b58e76ac0a3bb64 I am 2023-05-31 16:54:39
qt_gui.qt_gui: little tweaks 73c027858135753f99d2eabb3f080e936c4ff18d I am 2023-05-30 16:53:59
reader forgets Udmurt, learns English instead :'( 640ac860613b0d93fc037490c3a02da251eb8aca I am 2023-05-30 15:23:31
testcases: add __init__ file 0b942cd9028c3c5baea43aff61526b75c2f3ee43 I am 2023-05-28 14:04:55
mplot: add quiver plots a32b3d850fef99d6798b778140867416e17c16db I am 2023-03-30 13:21:30
mplot.mart: add simplex_vectors() function 7a90003e40bd459d2a3ef45a4867dfa392bd3fc8 I am 2023-03-30 13:20:10
simplex: use shares instead of probabilities in sinsitivity analysis 75ff4258b95fd568d1b4d163cdc04d40952e0029 I am 2023-03-16 18:46:44
whitebox.get_sensitivities: mask nans and infinities 1a754c51b3a1ef535e86b5b4cb6b75fe9e90840f I am 2023-03-14 22:33:52
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
Commit 2fbba5ff7b94da07bbb80d21362fcf68ba590be5 - qt_gui.qt_testcases: use more concise language
Author: I am
Author date (UTC): 2023-05-31 17:01
Committer name: I am
Committer date (UTC): 2023-05-31 17:01
Parent(s): 979a70e10cda4786ef17d03217f5a57cd86a6ae9
Signer:
Signing key:
Signing status: N
Tree: 6f4342b118a818d5955780aba4515ccd51d08a20
File Lines added Lines deleted
wellmet/qt_gui/qt_testcases.py 7 7
File wellmet/qt_gui/qt_testcases.py changed (mode: 100644) (index 2ce8a28..02c6d7e)
1 1 import sys import sys
2 2
3 3 from ..testcases import testcases_nD from ..testcases import testcases_nD
4 from ..testcases import gaussian_2D, testcases_2D, testcases_2D_papers, testcases_nD_papers
4 from ..testcases import gaussian_2D, testcases_2D_papers, testcases_nD_papers
5 5 import pyqtgraph as pg import pyqtgraph as pg
6 6 from pyqtgraph.Qt import QtCore, QtWidgets from pyqtgraph.Qt import QtCore, QtWidgets
7 7
8 8
9 9
10 10 unparametrized_testcases = [ unparametrized_testcases = [
11 (gaussian_2D, "Gaussian 2D testcases"),
12 (testcases_2D_papers, "Well-known 2D testcases"),
13 (testcases_nD_papers, "Well-known nD testcases"),
14 (testcases_2D, "2D testcases"),
11 (gaussian_2D, "Gaussian 2D problems"),
12 (testcases_2D_papers, "Non-Gaussian 2D problems"),
13 (testcases_nD_papers, "nD problems"),
14 #(testcases_2D, "2D testcases"),
15 15 ] ]
16 16
17 17
 
... ... class SelectTestCaseWidget(pg.LayoutWidget):
46 46 self.app.exec_() self.app.exec_()
47 47
48 48 def setup(self): def setup(self):
49 self.setWindowTitle("Select testcase")
49 self.setWindowTitle("Select problem to solve")
50 50 self.box = None self.box = None
51 51
52 52 self.setup_tabs() self.setup_tabs()
 
... ... class SelectTestCaseWidget(pg.LayoutWidget):
86 86 ## Add tabs ## Add tabs
87 87 # nD - parametrized # nD - parametrized
88 88 self.tab_nd = TestCasesListWidget(testcases_nD, self) self.tab_nd = TestCasesListWidget(testcases_nD, self)
89 self.tabs.addTab(self.tab_nd, "nD testcases")
89 self.tabs.addTab(self.tab_nd, "anyD problems")
90 90
91 91 # the rest - unparametrized # the rest - unparametrized
92 92 self.tab_widgets = [] self.tab_widgets = []
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