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)
convex_hull: small fix for QHull under single simplex integration b0b236cd14ae614ecd1310b8c7cfcafe8d1b0851 I am 2021-05-30 05:57:45
convex_hull: ensure Ghull to always have some nodes for expansion 7110d521d9fece58639a359c83773df904b1177f I am 2021-05-29 07:03:49
dicebox: throw away plot dependency, simplify increment function 1cf0c481b8df1937ff7eda6e0373d5d6a72387db I am 2021-05-28 16:42:19
simplex: add JustCubatureTriangulation class separated from Shull ea291f9deee9f3b5b8615ae1f14a49aecd327461 I am 2021-05-28 16:39:58
mart: add convex_hull routines 90105552e7aecf3df8e84a1f5c4bdc1b04be249b I am 2021-04-25 20:11:34
convex_hull.Ghull: try to outthink OS's memory management 116444dc08cc0261e149de02f21f14f74dc8816b I am 2021-04-25 08:02:25
convex_hull.Ghull: in case of memory error divide ns by 3 0f629139f7926107b0b4eeb55452e745a2c23487 I am 2021-04-25 06:50:02
convex_hull: memory failsafe integration 7624e4b81526d3944f1a5ac74d298dee792c3085 I am 2021-04-24 08:06:27
simplex: delete ghull-related stuff (moved to convex_hull module already) f514adf959a9a2a9b7806b3cde81f78faf04539d I am 2021-04-19 17:04:54
convex_hull.QHull: change enough_points into property ae4f9b4d70bb43556874bc6d698cb1cc09ad9430 I am 2021-04-19 17:02:35
qt_plot: add support for "just nodes" da0e307ab0a21e565031789260a9160c5ff1b011 I am 2021-04-19 07:33:12
sball.Shell.rvs(): inverse linspace (wouldn't produce NaNs) 58452888a47230ab30c56bc33f5e3c780e60c752 I am 2021-04-18 03:26:21
convex_hull: move QHull from simplex module e5c67ce54fa4c9f3ce15714ebeff7d363d918494 I am 2021-04-17 19:04:00
schemes: comment out dups 8d22480a42926c3a78e62a07be4418e1f8ba350f I am 2021-04-16 23:35:53
convex_hull: split DirectHull into simplified DirectHull itself and CompleteHull b109bbdc325a2a88bf22e9893fa162690bf190f9 I am 2021-04-16 23:26:03
rework convex hull 60185dce0403ba941e849a60b5e43da6ce1fffd4 I am 2021-04-12 17:09:25
sball: add .get_random_directions() function d41131f28937e40eb853a30047de3cfc43cf5fa8 I am 2021-03-24 03:24:41
mplot: plot2D swithed to matplotlib 366326fb53bcbc54d7e6fb108b9dc256833bf679 I am 2021-03-18 01:44:07
three-ways image WIP a2987cde393c4e795342f6dc40d5920760b468d4 I am 2021-03-17 16:37:18
Ghull is ready e1a49fe0cb390ce9664e8f892c1da6d30231cc99 I am 2021-03-16 14:29:09
Commit b0b236cd14ae614ecd1310b8c7cfcafe8d1b0851 - convex_hull: small fix for QHull under single simplex integration
Author: I am
Author date (UTC): 2021-05-30 05:57
Committer name: I am
Committer date (UTC): 2021-05-30 05:57
Parent(s): 7110d521d9fece58639a359c83773df904b1177f
Signer:
Signing key:
Signing status: N
Tree: 5ed7662cc10d98569928c2dc06d98de897135d84
File Lines added Lines deleted
convex_hull.py 4 1
qt_plot.py 2 4
File convex_hull.py changed (mode: 100644) (index c64c06d..73252a9)
... ... class Ghull:
647 647
648 648 nsampled = 0 nsampled = 0
649 649 nfailed = 0 nfailed = 0
650 bus = int(mem_bytes / self.hull.nsimplex / 8 / 2) + 1
650 if self.hull.nsimplex == 0:
651 bus = self.integration_cutoff
652 else:
653 bus = int(mem_bytes / self.hull.nsimplex / 8 / 2) + 1
651 654 while nsampled < nis: while nsampled < nis:
652 655
653 656 seats = min(nis - nsampled, self.integration_cutoff, bus) seats = min(nis - nsampled, self.integration_cutoff, bus)
File qt_plot.py changed (mode: 100644) (index 4452926..863b378)
... ... class HullEstimationWidget(pg.LayoutWidget):
3205 3205 #č kdyby něco - vyřeším přes ukladání #č kdyby něco - vyřeším přes ukladání
3206 3206 #č náhodných plánů v parameter_tree #č náhodných plánů v parameter_tree
3207 3207 ghull = self.get_ghull() ghull = self.get_ghull()
3208 try:
3209 self.draw_convex_hull(ghull.hull)
3210 except:
3211 pass
3208 self.draw_convex_hull(ghull.hull)
3209
3212 3210 #☺ Krucinal, kdo ten OrderedDict vymyslel? #☺ Krucinal, kdo ten OrderedDict vymyslel?
3213 3211 params = self.param.getValues() params = self.param.getValues()
3214 3212 ns = params['budget'][0] ns = params['budget'][0]
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