https://jsdokken.com/dolfinx-tutorial/chapter2/linearelasticity_code.html
# Scaled variable
import pyvista
from dolfinx import mesh, fem, plot, io, default_scalar_type
from dolfinx.fem.petsc import LinearProblem
from mpi4py import MPI
import ufl
import numpy as np
L = 1
W = 0.2
mu = 1
rho = 1
delta = W / L
gamma = 0.4 * delta**2
beta = 1.25
lambda_ = beta
g = gamma
In terms of the acceleration of gravity being described… So far I have been made aware of the gravitational constant being described as 9.81 m/s**2. Here an acceleration is described:
*gamma = 0.4 * delta**2*
So far I don’t really understand yet what units are being talked of in terms of gamma (ex. metric, imperial). So also the 0.4, is there a basis for it? Why is 0.4 being chosen here? Is there someplace that describes this formulation for gamma and delta ratio?