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)
mplot: reduce arrow and axis linewidth 666b1455f15ec803106fbfd773c1d3aa3877a1f9 I am 2022-01-19 18:04:37
mplot.maxes: přídáme férové cenzurováné vzorkování 4b488e62a969f972882f982e903c6a3d252274a6 I am 2022-01-19 17:39:14
simplex: add simple filter function for rejection sampling a58d3814dfd3366ef536c90b37fd50e3edccc9e9 I am 2022-01-19 17:38:08
whitebox: add rude approximation for sumexp. (Je teda opravdu hodně nepřesná) 281f66ac70e21756415c8efecfdee50873b34b58 I am 2022-01-18 22:25:51
whitebox: add four betas class 57a25000259e74f1ac28bb1bac6b0cc01dd5201c I am 2022-01-18 21:43:00
whitebox: introduce Gaussian_Z_prod_2D class with respective exact solution 13e592f107918d4cc3daaeec1f08e38779a943aa I am 2022-01-18 18:51:23
mplot: polish maxes and mfigs dfb9193da5fcb633fbe58fb39ff7b4432de4a5c5 I am 2022-01-18 00:44:56
testcases: add gaussian_2D module c5e279c08bba39bdd82c79d15d00241c786c795d I am 2022-01-18 00:06:36
qt_gui.qt_testcases: simplify code for the unparametrized testcases 60b7678186738107b3346beae7fb0744570d60fc I am 2022-01-18 00:05:34
mplot.mart: move setup_labels to mart module 9d7783a3a9905a72c51b4fec76e367dffdbc4563 I am 2022-01-17 17:33:16
mplot.__init__: set up small non zero padding (0.01) f0d23235b109c4224599eb0426ad0d9ee8b2a9b8 I am 2022-01-17 17:31:44
mplot: raster candidates, polishing 63d6d00dfe7affc8ed3d05161fd4a5b50db62207 I am 2022-01-17 16:34:05
mplot: more figures 3a7f54e09cd78a2fc2ff50d7cf5c142f04ffdc28 I am 2022-01-09 00:42:33
testcases: add proxy_prod 2D testcase edb11ab54bcf677757974f133d2d66816b701ade I am 2022-01-09 00:41:27
stm_df: fix proxy, pandas nějak nám šťourá v našich boolean maticích 1d9f360edfc03932a08dff8aad97f189b155e708 I am 2022-01-09 00:39:24
mplot.maxes: a little bit more to labels d989a2d1b69b116a14f7ff81776f5f75d80cfea0 I am 2022-01-06 17:48:57
mplot.figs: add double and triple triangulations plots 091361cc326239b552078c489f9f164ccda4f54b I am 2022-01-06 16:17:50
mplot.maxes: aspoň nějak nastavit popísky os 50e8e467c24d73d9522166183275deab547243f8 I am 2022-01-06 16:16:36
mplot.maxes: add labels to candidates plot f8aa0f271a8d30cb7d79206290409f862c406a51 I am 2022-01-06 12:14:48
mplot.maxes: add candidates sampling (rejection-like) plot 5a15e10a9a462dd409e0627528bcb8910df77c7e I am 2022-01-06 09:40:38
Commit 666b1455f15ec803106fbfd773c1d3aa3877a1f9 - mplot: reduce arrow and axis linewidth
Author: I am
Author date (UTC): 2022-01-19 18:04
Committer name: I am
Committer date (UTC): 2022-01-19 18:04
Parent(s): 4b488e62a969f972882f982e903c6a3d252274a6
Signer:
Signing key:
Signing status: N
Tree: 9b07e5b634af636681ee5c410218ccfb010287aa
File Lines added Lines deleted
mplot/__init__.py 1 1
mplot/mart.py 2 2
File mplot/__init__.py changed (mode: 100644) (index 785a086..6763efa)
... ... matplotlib.rcParams['font.family'] = 'STIXGeneral'
20 20 matplotlib.rcParams['savefig.dpi'] = 300 matplotlib.rcParams['savefig.dpi'] = 300
21 21 matplotlib.rcParams['savefig.bbox'] = 'tight' matplotlib.rcParams['savefig.bbox'] = 'tight'
22 22 matplotlib.rcParams['savefig.pad_inches'] = 0.01 matplotlib.rcParams['savefig.pad_inches'] = 0.01
23 matplotlib.rcParams['axes.linewidth'] = 1
23 matplotlib.rcParams['axes.linewidth'] = 0.5
24 24 matplotlib.rcParams['font.size'] = 8 matplotlib.rcParams['font.size'] = 8
25 25
26 26 # Show-functions # Show-functions
File mplot/mart.py changed (mode: 100644) (index f8af642..969be90)
... ... def center_spines(ax):
446 446 ax.spines["right"].set_visible(False) ax.spines["right"].set_visible(False)
447 447
448 448 # instead of black triangles ">k"/"^k" # instead of black triangles ">k"/"^k"
449 vertices = np.array([[0, 1], [4, 0], [0, -1], [0, 1]])
449 vertices = np.array([[0, 1], [5, 0], [0, -1], [0, 1]])
450 450 right_arrow = { right_arrow = {
451 451 'marker': mpath.Path(vertices, codes=None, closed=True), 'marker': mpath.Path(vertices, codes=None, closed=True),
452 452 'markerfacecolor': 'black', 'markerfacecolor': 'black',
 
... ... def center_spines(ax):
454 454 'markersize': 15 'markersize': 15
455 455 } }
456 456
457 vertices = np.array([[-1, 0], [0, 4], [1, 0], [-1, 0]])
457 vertices = np.array([[-1, 0], [0, 5], [1, 0], [-1, 0]])
458 458 up_arrow = { up_arrow = {
459 459 'marker': mpath.Path(vertices, codes=None, closed=True), 'marker': mpath.Path(vertices, codes=None, closed=True),
460 460 'markerfacecolor': 'black', 'markerfacecolor': 'black',
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