Skip to content
2,670 changes: 2,670 additions & 0 deletions examples/notebooks/updated/Manifest.toml

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions examples/notebooks/updated/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def"
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a"
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
LiquidCrystals = "90861fa5-6d0e-476f-90c5-b56067c52d58"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Profile = "9abbd945-dff8-562f-b5e8-e1ebf5ef1b79"
ProfileView = "c46f51b8-102a-5cf2-8d2c-8597cb0e0da7"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
TensorOperations = "6aa20fa7-93e2-5fca-9bc0-fbd0db3c71a2"

[compat]
ArgParse = "~1.2.0"
CairoMakie = "~0.12.6"
Colors = "~0.12.11"
DiffEqCallbacks = "~3.7.0"
DifferentialEquations = "~7.13.0"
Documenter = "~1.5.0"
GLMakie = "~0.10.6"
JLD2 = "~0.4.51"
JSON = "~0.21.4"
LiquidCrystals = "~0.1.0"
OrdinaryDiffEq = "~6.87.0"
ProfileView = "~1.9.0"
StaticArrays = "~1.9.7"
TensorOperations = "~5.0.0"
70 changes: 70 additions & 0 deletions examples/notebooks/updated/params.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Grid parameters
Nx = 30
Ny = 30
Nz = 30
dx = 1.0
dy = 1.0
dz = 1.0
dt = 1.0
tf = 200.0

# Physics
Gamma = 0.2

# Landau-de Gennes
A = 1.0
U = 3.5

# Elasticity
L1 = 0.1
L2 = 0.0
L3 = 0.0
L4 = 0.0

# Flexoelectricity
zeta1 = 0.01
zeta2 = 0.05

# Dielectricity
diel_anisotropy = -0.01

# Wall Anchoring (only customize what you need)
[wall_anchoring]
# [wall_anchoring.bottom]
# strength = 0.2
# type = "planar"
# direction = [1.0, 0.0, 0.0]

# [wall_anchoring.top]
# strength = 0.2
# type = "planar"
# direction = [1.0, 0.0, 0.0]

# External electric field
[external_conditions.electric_field]
amplitude = [0.0, 0.02, 0.0]
base_strength = [0.0, 0.01, 0.0]
frequency = 0.005 # 1/200
type = "AC"
randnoise = true

# Particle settings
[particle]
exists = false
radius = 2.0

[particle.anchoring]
strength = 0.1
type = "homeotropic"

[particle.center]
x = 30 # Nx/2
y = 1
z = 10

[flags]
LandaudeGennes = true
elasticity = true
anchoring = true
flexoelectricity = false
dielectricity = false
Loading
Loading