Skip to content

Commit 95ec8ef

Browse files
committed
Setup_geometry.jl
1 parent d4cf46e commit 95ec8ef

File tree

6 files changed

+95
-94
lines changed

6 files changed

+95
-94
lines changed

docs/src/man/geodynamic_setups.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ The routines provided here have the following functionality:
99
- Add various 1D thermal structures (and possibilities to combine them)
1010

1111
```@docs
12-
GeophysicalModelGenerator.AddBox!
13-
GeophysicalModelGenerator.AddLayer!
14-
GeophysicalModelGenerator.AddSphere!
15-
GeophysicalModelGenerator.AddEllipsoid!
16-
GeophysicalModelGenerator.AddCylinder!
12+
GeophysicalModelGenerator.addBox!
13+
GeophysicalModelGenerator.addLayer!
14+
GeophysicalModelGenerator.addSphere!
15+
GeophysicalModelGenerator.addEllipsoid!
16+
GeophysicalModelGenerator.addCylinder!
1717
GeophysicalModelGenerator.addStripes!
1818
GeophysicalModelGenerator.addSlab!
1919
GeophysicalModelGenerator.makeVolcTopo
@@ -23,7 +23,7 @@ GeophysicalModelGenerator.HalfspaceCoolingTemp
2323
GeophysicalModelGenerator.SpreadingRateTemp
2424
GeophysicalModelGenerator.LithosphericTemp
2525
GeophysicalModelGenerator.ConstantPhase
26-
GeophysicalModelGenerator.Compute_Phase
26+
GeophysicalModelGenerator.compute_Phase
2727
GeophysicalModelGenerator.LithosphericPhases
2828
GeophysicalModelGenerator.McKenzie_subducting_slab
2929
GeophysicalModelGenerator.LinearWeightedTemperature

docs/src/man/tutorial_Polygon_structures.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ Phase = ones(Int32,size(X))
2929
Temp = ones(Float64,size(X))*1350
3030

3131
# add different phases: crust->2, Mantle Lithosphere->3 Mantle->1
32-
AddBox!(Phase, Temp, Cart; xlim=(0.0,800.0),ylim=(0.0,800.0), zlim=(-800.0,0.0), phase = LithosphericPhases(Layers=[15 30 100 800], Phases=[2 3 1 5], Tlab=1300 ), T=LinearTemp(Ttop=20, Tbot=1600))
32+
addBox!(Phase, Temp, Cart; xlim=(0.0,800.0),ylim=(0.0,800.0), zlim=(-800.0,0.0), phase = LithosphericPhases(Layers=[15 30 100 800], Phases=[2 3 1 5], Tlab=1300 ), T=LinearTemp(Ttop=20, Tbot=1600))
3333

3434
# add air phase 0
35-
AddBox!(Phase, Temp, Cart; xlim=(0.0,800.0),ylim=(0.0,800.0), zlim=(0.0,50.0), phase = ConstantPhase(0), T=ConstantTemp(20.0))
35+
addBox!(Phase, Temp, Cart; xlim=(0.0,800.0),ylim=(0.0,800.0), zlim=(0.0,50.0), phase = ConstantPhase(0), T=ConstantTemp(20.0))
3636
```
3737

3838

0 commit comments

Comments
 (0)