Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# CHANGES

## v.1.11.0

### Changed
- `UnicodePlots` is now the default Plotter in most 1d and 2d examples
- functions for plotting of FEVectorBlocks moved to ExtendableFEMBase#v1.6

### Added
- manual assembly! calls for LinearOperatorFromVector and LinearOperatorFromMatrix


## v.1.10.5

Expand Down
15 changes: 10 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ExtendableFEM"
uuid = "a722555e-65e0-4074-a036-ca7ce79a4aed"
version = "1.10.5"
version = "1.11.0"
authors = ["Christian Merdon <merdon@wias-berlin.de>", "Patrick Jaap <patrick.jaap@wias-berlin.de>"]

[deps]
Expand Down Expand Up @@ -36,12 +36,13 @@ DifferentiationInterface = "0.7.4"
DocStringExtensions = "0.8,0.9"
ExampleJuggler = "2.2.1"
ExplicitImports = "1"
ExtendableFEMBase = "1.3.0"
ExtendableGrids = "1.10.3"
ExtendableFEMBase = "1.6.0"
ExtendableGrids = "1.17.0"
ExtendableSparse = "1.5.3, 2"
ForwardDiff = "0.10.35,1"
GridVisualize = "1.8.1"
GridVisualize = "1.20"
IncompleteLU = "0.2.1"
KrylovKit = "0.10.2"
LinearAlgebra = "1.9"
LinearSolve = "2, 3"
Metis = "1.5.0"
Expand All @@ -55,6 +56,7 @@ SparseConnectivityTracer = "1.0.0"
SparseMatrixColorings = "0.4.21"
StaticArrays = "1.9.13"
Symbolics = "4.2,5,6, 7"
Term = "2"
Test = "1"
TetGen = "2.0.0"
TimerOutputs = "0.5.29"
Expand All @@ -67,15 +69,18 @@ Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
ExampleJuggler = "3bbe58f8-ed81-4c4e-a134-03e85fcf4a1a"
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
IncompleteLU = "40713840-3770-5561-ab4c-a76e7d0d7895"
KrylovKit = "0b1a1467-8014-51b9-945f-bf0ae24f4b77"
Metis = "2679e427-3c69-5b7f-982b-ece356f1e94b"
OrdinaryDiffEqRosenbrock = "43230ef6-c299-4910-a778-202eb28ce4ce"
OrdinaryDiffEqSDIRK = "2d112036-d095-4a1e-ab9a-08536f3ecdbf"
SimplexGridFactory = "57bfcd06-606e-45d6-baf4-4ba06da0efd5"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
Term = "22787eb5-b846-44ae-b979-8e399b8463ab"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TetGen = "c5d3f3f7-f850-59f6-8a2e-ffc6dc1317ea"
Triangulate = "f7e6ffb2-c36d-4f8f-a77e-16e897189344"
UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228"

[targets]
test = ["Aqua", "ExampleJuggler", "ExplicitImports", "IncompleteLU", "Metis", "OrdinaryDiffEqRosenbrock", "OrdinaryDiffEqSDIRK", "SimplexGridFactory", "StaticArrays", "Symbolics", "Test", "TetGen", "Triangulate"]
test = ["Aqua", "ExampleJuggler", "ExplicitImports", "IncompleteLU", "KrylovKit", "Metis", "OrdinaryDiffEqRosenbrock", "OrdinaryDiffEqSDIRK", "SimplexGridFactory", "StaticArrays", "Symbolics", "Test", "Term", "TetGen", "Triangulate", "UnicodePlots"]
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ FES = FESpace{FEType}(xgrid)
sol = solve(PD, [FES]; plot = true, timeroutputs = :hide)

# Plot the solution
import PythonPlot
plot([id(u), grid(u)], sol; Plotter = PythonPlot)
import UnicodePlots, Term
plot([id(u), grid(u)], sol; Plotter = UnicodePlots)
```

## Running examples from documentation
Expand All @@ -64,7 +64,7 @@ In the [documentation](https://wias-pdelib.github.io/ExtendableFEM.jl/stable/ind
Each of these examples is implemented as a module that needs to be included first. Afterwards the main file of the module
can be run.
Usually the main function has a Plotter argument that can be used to toggle a plot of the solution with an
(already installed) backend of your choice (e.g. `Plotter=PythonPlot`, `GLMakie`, `Plots` or others supported by [GridVisualize.jl](https://github.com/WIAS-PDELib/GridVisualize.jl)).
(already installed) backend of your choice (e.g. `Plotter=UnicodePlots`, `PythonPlot`, `GLMakie`, `Plots` or others supported by [GridVisualize.jl](https://github.com/WIAS-PDELib/GridVisualize.jl)).
Some examples need several further dependencies. To ensure an environment were every dependency is installed, one can use the test
environment via the package [TestEnv](https://github.com/JuliaTesting/TestEnv.jl). The following script runs Example201:
```julia
Expand Down
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ SimplexGridFactory = "57bfcd06-606e-45d6-baf4-4ba06da0efd5"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
Term = "22787eb5-b846-44ae-b979-8e399b8463ab"
TetGen = "c5d3f3f7-f850-59f6-8a2e-ffc6dc1317ea"
Triangulate = "f7e6ffb2-c36d-4f8f-a77e-16e897189344"
UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228"
Expand Down
118 changes: 0 additions & 118 deletions examples/Example103_BurgersEquation.jl

This file was deleted.

82 changes: 0 additions & 82 deletions examples/Example105_NonlinearPoissonEquation.jl

This file was deleted.

Loading
Loading