Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start Framework for ExtendableGridsGmshExt #28

Closed
wants to merge 33 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
619c28c
Start Framework for SimplexGridGmshExt
j-fu Jun 21, 2023
8ef7b98
[extras] section for 1.6 support
j-fu Jun 21, 2023
10e16db
Code I wrote sofar for the gmsh extension
jotaraz Jun 23, 2023
a82d359
Delete sto3d_pg_0.1.msh
jotaraz Jun 23, 2023
cdea770
Delete gsmh_to_extendablegrid.jl
jotaraz Jun 23, 2023
675a229
Delete test_extendablegrid_gmsh.jl
jotaraz Jun 23, 2023
470343d
testcode and test-msh-files for the gmsh extension
jotaraz Jun 23, 2023
aec02e1
code for the gmsh_extension for grid conversion
jotaraz Jun 23, 2023
88952b9
Merge pull request #29 from jotaraz/gmsh-extension
j-fu Jun 29, 2023
603ecc0
move gmsh interface code to the extension file
j-fu Jun 30, 2023
f1b355a
move gmsh rw tests directly into runtests
j-fu Jun 30, 2023
528453c
Add projects, fix gmsh interface API
j-fu Jun 30, 2023
6f2ad66
Introduce low confidence level for grid comparison as band-aid for CI
j-fu Jun 30, 2023
7b2ae72
Support extension mechanism also for 1.6 via Requires
j-fu Jun 30, 2023
d9859cf
fix requires handling
j-fu Jun 30, 2023
7e5625d
small modifictions, in particular don't call initialize/finalize duri…
j-fu Jul 3, 2023
fbc252c
Start Framework for SimplexGridGmshExt
j-fu Jun 21, 2023
7abb258
[extras] section for 1.6 support
j-fu Jun 21, 2023
099907a
Code I wrote sofar for the gmsh extension
jotaraz Jun 23, 2023
e778d59
Delete sto3d_pg_0.1.msh
jotaraz Jun 23, 2023
f908bf3
Delete gsmh_to_extendablegrid.jl
jotaraz Jun 23, 2023
c1d476f
Delete test_extendablegrid_gmsh.jl
jotaraz Jun 23, 2023
99ff50c
testcode and test-msh-files for the gmsh extension
jotaraz Jun 23, 2023
5e73008
code for the gmsh_extension for grid conversion
jotaraz Jun 23, 2023
1667868
move gmsh interface code to the extension file
j-fu Jun 30, 2023
2a5b631
move gmsh rw tests directly into runtests
j-fu Jun 30, 2023
a9b3061
Add projects, fix gmsh interface API
j-fu Jun 30, 2023
c2a216d
Introduce low confidence level for grid comparison as band-aid for CI
j-fu Jun 30, 2023
6f4bb01
Support extension mechanism also for 1.6 via Requires
j-fu Jun 30, 2023
98554b4
fix requires handling
j-fu Jun 30, 2023
df8aaed
small modifictions, in particular don't call initialize/finalize duri…
j-fu Jul 3, 2023
ca02006
Merge branch 'gmsh-extension' of github.com:j-fu/ExtendableGrids.jl i…
j-fu Jul 20, 2023
e8fd8e1
Merge branch 'master' into gmsh-extension
j-fu Jul 23, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,38 @@ version = "1.0.0"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Bijections = "e2ed5e7c-b2de-5872-ae92-c73ca462fb04"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
ElasticArrays = "fdbdab4c-e67f-52f5-8c3f-e7b388dad3d4"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
WriteVTK = "64499a7a-5c06-52f2-abe2-ccb03c286192"

[compat]
AbstractTrees = "0.3,0.4"
Bijections = "0.1.4"
DocStringExtensions = "0.8,0.9"
ElasticArrays = "1"
Gmsh = "0.2.2"
Requires = "1.1.3"
StaticArrays = "1"
StatsBase = "0.34"
WriteVTK = "1.14"
julia = "1.6"

[extensions]
ExtendableGridsGmshExt = "Gmsh"

[extras]
Gmsh = "705231aa-382f-11e9-3f0c-b7cb4346fdeb"

[weakdeps]
Gmsh = "705231aa-382f-11e9-3f0c-b7cb4346fdeb"
Loading