https://gitlab.opengeosys.org/ogs/ogs.git

sort by:
Revision Author Date Message Commit Date
0de7732 Merge branch 'SmallFixes' into 'master' Small fixes See merge request ogs/ogs!4677 17 July 2023, 20:31:19 UTC
fa55284 [NL] Make one overload perturbIf() static 17 July 2023, 20:30:17 UTC
55a94a5 [ParL] Initialize pointer with null 17 July 2023, 20:13:30 UTC
61441a5 [ParL] Explicit single argument ctor 17 July 2023, 20:13:30 UTC
0eb75f3 [CL] Add safety condition before access 17 July 2023, 20:13:29 UTC
ae5a920 [CL] Pass potentially large object by reference 17 July 2023, 20:13:29 UTC
c1c98be [CL] Move isHydrogen() into TU 17 July 2023, 20:13:29 UTC
9b7cf47 [NL] Use ranges transform replacing for-loop 17 July 2023, 20:13:29 UTC
b356102 [MGTL] Move independent methods out of class in TU 17 July 2023, 20:13:29 UTC
214ae01 [MGTL] Use algorithm replacing for-loop 17 July 2023, 20:13:29 UTC
fd65e53 [NL] DOF; remove unused MeshComponentMap method 17 July 2023, 20:13:29 UTC
420755e [MGTL] Move static class methods into TU 17 July 2023, 20:13:29 UTC
03ca9d9 [MeL/IO] Move class methods into TU 17 July 2023, 20:13:29 UTC
c298a0c [MeL] Use ranges for_each algorithm 17 July 2023, 20:13:29 UTC
b0e1b6d [MeL] Use Eigen operations on nodes' coordinates 17 July 2023, 20:13:29 UTC
35377f9 [MeL] Move implementation into TU 17 July 2023, 20:13:29 UTC
43eb4cf [GL] EarClipping; Separate addLastTriangle() 17 July 2023, 20:13:29 UTC
56616ad [GL] EarClipping; Add VertexIt alias. Reduce scope 17 July 2023, 20:13:29 UTC
b230cfa [GL] Earclipping; Reduce iterators' scope 17 July 2023, 20:13:29 UTC
749308e [GL] Use find_if to locate polyline vector by name 17 July 2023, 20:13:29 UTC
f72d9c3 [GL] Correct memory allocation Data into the new_raster_data is being inserted directly, not via push_back. 17 July 2023, 20:13:29 UTC
2cb4f3c [BL] Use std::string::replace instead of substr + This is more efficient. 17 July 2023, 20:13:29 UTC
55593df [App/IO] Use accumulate replacing for-loop 17 July 2023, 20:13:29 UTC
0cda6f1 [PL/LIE] Use string::starts_with replacing find==0 17 July 2023, 20:13:29 UTC
70e401d [PL/LIE] Remove redundant if-condition Expression is always true because 'else if' condition is opposite to previous condition. 17 July 2023, 20:13:29 UTC
5fc3320 [PL/Out] Use ranges transform replacing for-loop 17 July 2023, 20:13:29 UTC
dff2308 [PL] Use transform replacing for-loop. 17 July 2023, 20:13:29 UTC
022a285 Reduce variable scope 17 July 2023, 20:13:29 UTC
00013c0 Improve const-correctness 17 July 2023, 20:13:29 UTC
fb18b93 [MeL] Rename function argument for consistency 17 July 2023, 16:01:17 UTC
51f5e3a Rename function argument to match definition 17 July 2023, 16:01:17 UTC
652a174 Avoid shadowing of a variable 17 July 2023, 16:01:17 UTC
065b669 Merge branch 'DataEx_1' into 'master' [DataExplorer] small fix in TranslateDataDialog See merge request ogs/ogs!4673 17 July 2023, 12:13:46 UTC
26e7598 Merge branch 'VoxelVtu' into 'master' [DataExplorer] Include Vtu2Grid See merge request ogs/ogs!4651 17 July 2023, 11:25:52 UTC
a22713b Merge branch 'RefactorMeshLibElementRules' into 'master' Refactor MeshLib element rules See merge request ogs/ogs!4675 17 July 2023, 10:17:31 UTC
57216b1 put getSelectedObjects() to anoym. namespace 17 July 2023, 08:48:39 UTC
a7cc8ac dereference optional for cellsize 17 July 2023, 08:47:23 UTC
9586503 check if dereference is save + remove copy 17 July 2023, 08:47:23 UTC
f83e3b2 minor naming fixes and clean-up of header 17 July 2023, 08:47:23 UTC
acadbd8 extract updateExpectedVoxel() and remove getSelectedObjects() 17 July 2023, 08:47:23 UTC
2e9c96a adjusted mapMeshArraysOntoGrid to cast more data types - long arrays - ogs data arrays 17 July 2023, 08:47:23 UTC
26b107b New Dialog for the creation of VoxelGrids from a 3D mesh 17 July 2023, 08:47:23 UTC
825532b [MeL] Rename _nodes args in element_nodes 17 July 2023, 08:07:09 UTC
2155a91 [MeL] Fix calculateVolume comments for elem. rules 17 July 2023, 08:07:09 UTC
84f7189 [MeL] Add missing include 17 July 2023, 08:07:09 UTC
0a24ec8 [MeL] Use local info for number of faces test 17 July 2023, 08:07:09 UTC
c7ea9a7 [MeL] Fix comment 17 July 2023, 08:07:09 UTC
85b9ec2 [MeL] Use element's dimension in identifyFace 17 July 2023, 08:07:09 UTC
7213193 [MeL] Fix nodes' dim identifyFace for 2D elements I think this was a copy-paste mistake in the previous version of the code. For the line elements the nodes array is only one long. 17 July 2023, 08:07:09 UTC
012205c [MeL] Extract identifyFace method to FaceRule The methods across the face-types are identical but for some array sizes. These are taken from the template argument. 17 July 2023, 08:07:09 UTC
91097cf [MeL] Extract identifyFace method to CellRule The methods across the cell-types are identical but for some array sizes. These are taken from the template argument. 17 July 2023, 08:07:09 UTC
7c9bc2f [MeL] Extract common PrismRule subclass 17 July 2023, 08:07:09 UTC
0f24d87 [MeL] Extract common PyramidRule subclass 17 July 2023, 08:07:09 UTC
4107ae2 [MeL] Extract common HexRule subclass 17 July 2023, 08:07:09 UTC
5fa82b0 [MeL] Extract common TetRule subclass 17 July 2023, 08:07:09 UTC
d3f5288 [MeL] Extract common QuadRule subclass 17 July 2023, 08:07:09 UTC
2ab1cc9 [MeL] Extract common TriRule subclass 17 July 2023, 08:07:09 UTC
83d6fec [MeL] Extract common LineRule subclass 15 July 2023, 14:01:18 UTC
d9be87b Merge branch 'fix_test' into 'master' changed name of test See merge request ogs/ogs!4674 13 July 2023, 19:02:29 UTC
db651fd changed name of test 13 July 2023, 15:16:04 UTC
1630a2b Merge branch 'CleanupDoxygenHeaders' into 'master' Cleanup of the Doxygen's documentation. See merge request ogs/ogs!4671 13 July 2023, 11:17:00 UTC
6b55afa Merge branch 'TimeSteppingCleanup' into 'master' Time stepping cleanup See merge request ogs/ogs!4672 12 July 2023, 19:38:33 UTC
20a2395 [MaL] Add missing doxygen file header 12 July 2023, 18:48:19 UTC
88111bb [T/T] Remove untested project The project is not tested and no reference data is provided. The file name containing equal sign somehow breaks doxygens parser. 12 July 2023, 18:48:19 UTC
ac66252 [doc] Remove out-of-date namespace documentation 12 July 2023, 18:48:19 UTC
6367ea6 [doc] Drop empty \brief, \date, and \author lines 12 July 2023, 18:48:18 UTC
4a84b4a [doc] Remove double \author \date entries 12 July 2023, 18:48:18 UTC
06ceaec [doc] Use backslash for doxygen comments, not @. Now changes are in the class, function, methods documentation and not in the headers. This unifies to the most common case. 12 July 2023, 18:48:17 UTC
5b297a5 [doc] Use \file in headers. Replace @ with \. This unifies the doxygen headers. If the (doxygen) header is not starting with \file, the following documentation is attributed to a different entity resulting is multiple copyright blocks and the like in the doxygen's html files. 12 July 2023, 18:48:11 UTC
1de404b Merge branch 'update-mpi-petsc-guide' into 'master' [web] Expand guide for compiling OGS with PETSc and MPI See merge request ogs/ogs!4665 12 July 2023, 18:46:40 UTC
8ac36b4 [web] Expand guide for compiling OGS with PETSc and MPI 12 July 2023, 18:46:36 UTC
2aebf8d [NL/TimeStepping/Algorithm] Fix spelling in EvolutionaryPIDcontroller 12 July 2023, 16:31:53 UTC
e4b5420 [NL/TimeStepping] Rm unnecessary code from EvolutionaryPIDcontroller 12 July 2023, 16:31:53 UTC
5c8fbde [PL] Move calculateUniqueFixedTimesForAllOutputs() to Output impl. 12 July 2023, 16:31:53 UTC
d4426c5 Merge branch 'fix-ctest-win' into 'master' [ci] cdash submit as a separate step on win too. See merge request ogs/ogs!4670 12 July 2023, 14:05:45 UTC
d1bf8f0 [ci] Fix pipelines. 12 July 2023, 13:10:32 UTC
0e24496 [ci] cdash submit as a separate step on win too. 12 July 2023, 13:10:31 UTC
f364063 Merge branch 'ResetSolutionAfterRejectedInitialTimeStep' into 'master' Reset solution after rejected initial time step See merge request ogs/ogs!4666 12 July 2023, 12:40:29 UTC
e79f65a [PL] Reset solution for rejected time step ts = 0 The reset must also happen for the first time step which might have failed in the second iteration. Reason for the original statement is not clear. 12 July 2023, 09:38:01 UTC
5caa68e Merge branch 'cdash-upload' into 'master' Fix CDash uploads See merge request ogs/ogs!4669 12 July 2023, 08:45:14 UTC
2f6f025 [ci] Run pre-commit in reduced pipelines too. 12 July 2023, 07:58:06 UTC
0f19c72 [ci] cdash submit as a separate step (which is allowed to fail). 12 July 2023, 07:58:06 UTC
3600f7d Merge branch 'userguide-typo-fix' into 'master' [web] fix typo in time loop See merge request ogs/ogs!4663 07 July 2023, 09:54:36 UTC
c671fd1 fix typo in time loop 07 July 2023, 08:36:48 UTC
9ee9bcd Merge branch 'ModifiedCamClayNLE' into 'master' Modified Cam Clay model: original nonlinear hypoelastic version See merge request ogs/ogs!4604 07 July 2023, 06:51:26 UTC
106bc7d Renaming to ModCamClay_semiExpl.mfront and ~_absP.mfront 06 July 2023, 15:06:38 UTC
1b4d688 Web and benchmark documentation pdf report updated 06 July 2023, 15:06:38 UTC
cc3be7f Changed Young modulus consistently, new reference solution 06 July 2023, 15:06:38 UTC
419d296 Deviatoric-volumetric split for tangent for absolute formulation 06 July 2023, 15:06:29 UTC
18532e5 Python Triax mtest extended to new models 06 July 2023, 14:59:38 UTC
5cfde41 MCC NLnu inc: unnecessary variable De eliminated 06 July 2023, 14:59:38 UTC
14e74bc Some renaming considering the triax tests 06 July 2023, 14:59:38 UTC
cbde378 Removed time variable, adapted (inital) pressure handling 06 July 2023, 14:59:38 UTC
82ec2d3 Added triaxial test for original MCC model absolute formulation 06 July 2023, 14:59:38 UTC
b6a17f0 MCC NLnu inc: Const correctness, consistent renaming 06 July 2023, 14:59:38 UTC
7220233 MCC with const E: Const correctness, consistent renaming 06 July 2023, 14:59:38 UTC
5963f11 Replaced absolute by incrementel integration of pc 06 July 2023, 14:59:38 UTC
7784b95 Parameter pcMin eliminated, now derived from pc_char 06 July 2023, 14:59:38 UTC
cebb22d Replaced initial porosity by volume ratio, removed Time variable 06 July 2023, 14:59:38 UTC
06582d1 Parameter pcMin eliminated, now derived from pc_char 06 July 2023, 14:59:38 UTC
back to top