Skip to content
Draft
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
31 changes: 23 additions & 8 deletions Classes/EigenProblemClass2.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ def __init__(
target_value_bool=False,
file_type=None,
simplication_bool = False,
tol =1e-9,
):
"""

Expand All @@ -100,7 +101,7 @@ def __init__(
self.num_eigenvalues = num_eigenvalues

# Set default tolerances and placeholders for FEniCS objects
self.tol = 1e-9
self.tol = tol
self.mesh = None
self.nodes: int = None
self.V = None
Expand Down Expand Up @@ -144,7 +145,7 @@ def set_constants(self):
self.lambda0 = height / 0.2
self.k0 = fem.Constant(
self.mesh, 2 * np.pi * 21e9
) # 2 * np.pi / self.lambda0
) # 2 * np.pi / self.lambda0 #! This might need a square value

# Electric permittivity (epsilon).
# Note that compared to the example we do not need to compute \varepsilon at each node as it is a constant here
Expand Down Expand Up @@ -243,13 +244,13 @@ def weak_form(self):
self.v = ufl.TestFunction(self.V)

# Define the curl-curl bilinear form (A matrix in A x = λ B x)
curl_curl = ufl.dot(ufl.curl(self.u), ufl.curl(self.v)) * ufl.dx
curl_curl = ufl.inner(ufl.curl(self.v), ufl.curl(self.u)) * ufl.dx

# Define the mass bilinear form (B matrix in A x = λ B x)
mass = (
self.permittivity
* self.permeability
* ufl.dot(self.u, self.v)
* ufl.dot(self.v, self.u)
* ufl.dx
)

Expand Down Expand Up @@ -338,12 +339,20 @@ def solving(self):
eps.setType(
SLEPc.EPS.Type.KRYLOVSCHUR
) # ? https://slepc.upv.es/documentation/slepc.pdf

if self.target_value_bool is True:
#! Set the target value for the eigenvalue solver
# target_value = -((0.5 * self.k0) ** 2)
target_value = -(15e9**2 + 29e9**2)/2
eps.setTarget(target_value)
target_value = -((0.5 * self.k0) ** 2)
# target_value = (15e9**2 + 29e9**2)/2
# Get ST context from eps
st = eps.getST()

# Set shift-and-invert transformation
st.setType(SLEPc.ST.Type.SINVERT)

eps.setWhichEigenpairs(SLEPc.EPS.Which.TARGET_MAGNITUDE)

eps.setTarget(-((0.5 * self.k0) ** 2))

#! Set the interval (lower and upper bounds) for the eigenvalue search
# lower_bound = -((15e9) ** 2) # Adjust as needed
Expand All @@ -358,6 +367,12 @@ def solving(self):
from SLEPc by calling the `view` and `errorView` function:

"""
# # Enable diagnostics
# eps.setTrackAll(True)
# eps.setConvergenceTest(SLEPc.EPS.Conv.REL)
# eps.setTrueResidual(True)

# SOLVE
eps.solve()
eps.view()
eps.errorView()
Expand Down
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@

# Create an instance of the FENicSEigenProblem class
eigen_problem = EP.FENicSEigenProblem(
num_nodes_1D=20, domain_type="cube", num_eigenvalues=26, target_value_bool=True,
num_nodes_1D=10, domain_type="cube", num_eigenvalues=2, target_value_bool=True,

)
eigen_problem.domain = [0.01, 0.01, 0.01]
eigen_problem.domain = [0.01, 0.01, 0.01]
eigen_problem.tol = 1e-5

# Run the eigenvalue problem
eigen_problem.run()