Skip to content
Snippets Groups Projects
Commit 8ddbd0fa authored by Nicolas Marsic's avatar Nicolas Marsic
Browse files

Real operator induces a mix between source-free and driven problem:...

Real operator induces a mix between source-free and driven problem: mathematically speaking we need the full complex omega
parent 415d5233
Branches
No related tags found
No related merge requests found
......@@ -16,16 +16,14 @@ Function{
Mu0 = 4*Pi*1e-7; // [H/m]
Eps0 = 1/(Mu0 * C0^2); // [F/m]
// Conductivity (coming from sphere.dat) //
If(isSC == 1) // Superconductor
Sigma[] = Sigma - J[] / (Mu0 * Lambda^2 * Re[Puls[]]); // [S/m]
// Leontovich SIBC (H-Formulation) //
If(isSC == 0)
SL[] = Sqrt[(J[] * Puls[] * Mu0) / Sigma]; // H-Formulation
EndIf
If(isSC == 0) // Normal conductor
Sigma[] = Sigma; // [S/m]
If(isSC == 1)
SL[] = 0.5 * Puls[]^2 * Mu0^2 * Lambda^3 * Sigma +
J[] * Puls[] * Mu0 * Lambda; // H-Formulation
EndIf
// Leontovich SIBC (H-Formulation) //
SL[] = Sqrt[(J[] * Re[Puls[]] * Mu0) / Sigma[]]; // H-Formulation
SIbc[] = -1.0 / SL[]; // E-Formulation
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment