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
No related branches found
No related tags found
No related merge requests found
...@@ -16,17 +16,15 @@ Function{ ...@@ -16,17 +16,15 @@ Function{
Mu0 = 4*Pi*1e-7; // [H/m] Mu0 = 4*Pi*1e-7; // [H/m]
Eps0 = 1/(Mu0 * C0^2); // [F/m] Eps0 = 1/(Mu0 * C0^2); // [F/m]
// Conductivity (coming from sphere.dat) // // Leontovich SIBC (H-Formulation) //
If(isSC == 1) // Superconductor If(isSC == 0)
Sigma[] = Sigma - J[] / (Mu0 * Lambda^2 * Re[Puls[]]); // [S/m] SL[] = Sqrt[(J[] * Puls[] * Mu0) / Sigma]; // H-Formulation
EndIf EndIf
If(isSC == 0) // Normal conductor If(isSC == 1)
Sigma[] = Sigma; // [S/m] SL[] = 0.5 * Puls[]^2 * Mu0^2 * Lambda^3 * Sigma +
J[] * Puls[] * Mu0 * Lambda; // H-Formulation
EndIf EndIf
SIbc[] = -1.0 / SL[]; // E-Formulation
// Leontovich SIBC (H-Formulation) //
SL[] = Sqrt[(J[] * Re[Puls[]] * Mu0) / Sigma[]]; // H-Formulation
SIbc[] = -1.0 / SL[]; // E-Formulation
} }
Integration{ Integration{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment