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_pairwise.ContactWidget: add LP methods 8dbd480ca80aabe1c7e0e689780767b78c86c1d1 I am 2022-11-16 11:33:32
wireframe: implement two LP solvers 8aecd55104ce85ccccf872ebef0052a5937415b5 I am 2022-11-16 11:32:31
qt_gui.qt_pairwise.ContactWidget: add Gabriel adjacency 86eaf302b176612fad072a2248e2c724d32be755 I am 2022-11-16 06:17:53
wireframe: implement Gabriel adjacency f0a74b4f28cec6c2ddc68d6811e0a812fc829d63 I am 2022-11-16 06:16:58
qt_gui.qt_pairwise.ContactWidget: reflect updated wireframe b00a9be23d92d999e0020426a7a5caa1206c5862 I am 2022-11-16 03:56:57
wireframe: implement LocalizedHull class 95c19144c5144461db241df1b2bd20d8950c8d57 I am 2022-11-16 03:55:59
qt_gui.qt_pairwise.ContactWidget: polish UI bd48c8a6342e20dac1d635b963dd44e62c371379 I am 2022-11-13 20:03:39
wireframe: add convex_slice() method efada4c62f88b6106c687217472e0b8c52374fed I am 2022-11-13 19:51:49
qt_gui.qt_pairwise.ContactWidget: finish widget and clean up 10753a104879d6b9c109735e959b18b5a60a4616 I am 2022-11-10 05:02:01
wireframe: finish and clean up module. implement DirectContact. f7ff9c02f25a3ed8fe04e99036da69766afa5a49 I am 2022-11-10 04:58:58
qt_gui.qt_pairwise.ContactWidget: implement Qhull check e362df1f8b87ab7c6a27643cd6f4091b9caec9a3 I am 2022-11-09 21:35:10
wireframe: add Qframe class cf52d85dd1663537cd8c52a98514c7d041913979 I am 2022-11-09 21:34:12
qt_gui.qt_pairwise: add auto arnge and auto levels controls 9bc2cf10a9a1695c2c1a5f6a9959f375d3808a71 I am 2022-11-09 18:16:47
qt_gui.qt_pairwise: set blue -1 by default. Add force_update option in Contact widget 7371575784df7fd41bd76ad29caf38f474a06a26 I am 2022-11-09 15:39:03
qt_gui.qt_pairwise: prepare Contact widget bfa78d7493f5eb04b6bd3a4ad26dd1a92d17a895 I am 2022-11-09 03:36:05
qt_gui.qt_pairwise: prepare more mouse event signals c60e613508480c68483b3d0d6ad6c876b27f539c I am 2022-11-08 01:55:14
qt_gui: introduce reworked matrix view window e28b95c5f418a7a3cea0cb84ca82b40275a71061 I am 2022-11-07 02:20:45
introduce wireframe module for the contacts finding functionality b6068dd92663699859ea7cbf3aac00178d120e0f I am 2022-10-25 14:24:37
voronoi.TwoPoints: atleast_2d() one line fix 9f8bd9e5370ccf30887b6218331ee664788a3b91 I am 2022-10-25 07:09:57
voronoi: implement faster TwoPoints class. c0af78f64bc78a6b8cf06e3ea244339549318b66 I am 2022-10-24 13:03:26
Commit 8dbd480ca80aabe1c7e0e689780767b78c86c1d1 - qt_gui.qt_pairwise.ContactWidget: add LP methods
Author: I am
Author date (UTC): 2022-11-16 11:33
Committer name: I am
Committer date (UTC): 2022-11-16 11:33
Parent(s): 8aecd55104ce85ccccf872ebef0052a5937415b5
Signer:
Signing key:
Signing status: N
Tree: a42ac76902125ffcc9b77c500aac70fb128cc4af
File Lines added Lines deleted
wellmet/qt_gui/qt_pairwise.py 21 5
File wellmet/qt_gui/qt_pairwise.py changed (mode: 100644) (index 3ddf5c3..c89ed1e)
... ... class ContactWidget(pg.LayoutWidget):
887 887 params.append({'name': 'force_update', 'title': 'reevaluate', params.append({'name': 'force_update', 'title': 'reevaluate',
888 888 'type': 'bool', 'value': False, 'type': 'bool', 'value': False,
889 889 'tip': "always reevaluate even discovered contacts"}) 'tip': "always reevaluate even discovered contacts"})
890 params.append({'name': 'method', 'type': 'list', 'value': 'ConvexSolver',
891 'values': ['DirectContact', 'Gabriel', 'ConvexSolver', 'LocalizedHull', 'Qhull'],
890 params.append({'name': 'method', 'type': 'list', 'value': 'ConvexLinear',
891 'values': ['DirectContact', 'Gabriel', 'ConvexSolver', 'ConvexLinear', 'LinearSolver', 'LocalizedHull', 'Qhull'],
892 892 'title': "method"}) 'title': "method"})
893 893
894 894 params.append({'name': 'solver', 'title': "solver", 'type': 'list', 'value': 'convex_sprite', params.append({'name': 'solver', 'title': "solver", 'type': 'list', 'value': 'convex_sprite',
 
... ... class ContactWidget(pg.LayoutWidget):
902 902
903 903 params.append({'name': 'tol', 'type': 'float', params.append({'name': 'tol', 'type': 'float',
904 904 'title': "tolerance", 'title': "tolerance",
905 'limits': (0, float('inf')), 'value': 1e-7, 'default': 1e-7})
905 'limits': (0, float('inf')), 'value': 1e-5, 'default': 1e-7})
906 906
907 907 self.param = pg.parametertree.Parameter.create(name='params', type='group', children=params) self.param = pg.parametertree.Parameter.create(name='params', type='group', children=params)
908 908
 
... ... class ContactWidget(pg.LayoutWidget):
946 946 def method_changed(self, parameter): def method_changed(self, parameter):
947 947 self.setup_CS() self.setup_CS()
948 948 method = parameter.value() method = parameter.value()
949 if method == 'ConvexSolver':
949 if method in ('ConvexSolver', 'ConvexLinear'):
950 950 self.param.child('solver').show() self.param.child('solver').show()
951 951 self.param.child('tries_to_fix').show() self.param.child('tries_to_fix').show()
952 952 self.param.child('tol').show() self.param.child('tol').show()
953 elif method == 'LocalizedHull':
953 elif method in ('LocalizedHull', 'LinearSolver'):
954 954 self.param.child('solver').hide() self.param.child('solver').hide()
955 955 self.param.child('tries_to_fix').hide() self.param.child('tries_to_fix').hide()
956 956 self.param.child('tol').show() self.param.child('tol').show()
 
... ... class ContactWidget(pg.LayoutWidget):
959 959 self.param.child('tries_to_fix').hide() self.param.child('tries_to_fix').hide()
960 960 self.param.child('tol').hide() self.param.child('tol').hide()
961 961
962 # if method == 'LinearSolver':
963 # self.param.child('force_update').setReadonly()
964 # self.param.child('force_update').setValue(False)
965 # else:
966 # self.param.child('force_update').setReadonly(False)
967
962 968
963 969 def setup_CS(self): def setup_CS(self):
964 970 sample_box = self.w.get_sample_box() sample_box = self.w.get_sample_box()
 
... ... class ContactWidget(pg.LayoutWidget):
986 992 #self.kwargs.clear() #č aby se to neztratilo až bude 100500 metodů #self.kwargs.clear() #č aby se to neztratilo až bude 100500 metodů
987 993 self.kwargs['tries_to_fix'] = self.param.getValues()['tries_to_fix'][0] self.kwargs['tries_to_fix'] = self.param.getValues()['tries_to_fix'][0]
988 994 self.kwargs['tol'] = self.param.getValues()['tol'][0] self.kwargs['tol'] = self.param.getValues()['tol'][0]
995 elif method == 'ConvexLinear':
996 solver = getattr(wireframe, self.param.child('solver').value())
997 self.CS = wireframe.ConvexLinear(sample_space, convex_solver=solver)
998 #self.kwargs.clear() #č aby se to neztratilo až bude 100500 metodů
999 self.kwargs['tries_to_fix'] = self.param.getValues()['tries_to_fix'][0]
1000 self.kwargs['tol'] = self.param.getValues()['tol'][0]
1001 elif method == 'LinearSolver':
1002 self.CS = wireframe.LinearSolver(sample_space)
1003 self.kwargs.clear()
1004 self.kwargs['tol'] = self.param.getValues()['tol'][0]
989 1005 elif method == 'LocalizedHull': elif method == 'LocalizedHull':
990 1006 self.CS = wireframe.LocalizedHull(sample_space) self.CS = wireframe.LocalizedHull(sample_space)
991 1007 self.kwargs.clear() self.kwargs.clear()
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