BELFEM 0.9.0
Berkeley Lab Finite Element Framework
Loading...
Searching...
No Matches
cl_Superconductor.hpp
Go to the documentation of this file.
1/*
2 * BELFEM -- The Berkeley Lab Finite Element Framework
3 * Copyright (c) 2026, The Regents of the University of California,
4 * through Lawrence Berkeley National Laboratory (subject to receipt of any required
5 * approvals from the U.S. Dept. of Energy). All rights reserved.
6 *
7 * Developers: Christian Messe, Gregory Giard
8 *
9 * See the top-level LICENSE file for the complete license and disclaimer.
10 */
11
12#ifndef BELFEM_CL_SUPERCONDUCTOR_HPP
13#define BELFEM_CL_SUPERCONDUCTOR_HPP
14
15#include "cl_TwoTerminals.hpp"
16#include "Component_Enums.hpp"
17
18namespace belfem
19{
20 namespace electronics
21 {
22//-----------------------------------------------------------------------------
23
25 {
27 real mIc ;
28
30 real mN ;
31
33 real mEc ;
34
36 real mLength ;
37
38//------------------------------------------------------------------------------
39 public:
40//------------------------------------------------------------------------------
41
42 Superconductor(const real aIc, const real aN, const real aEc, const real aLength, Cell < ElectricNode* > & aTerminals, string aLabel = "") ;
43
44//------------------------------------------------------------------------------
45
47 component_type() const override ;
48
49//-----------------------------------------------------------------------------
50
51 void
52 compute_current() override ;
53
54//------------------------------------------------------------------------------
55
56 real
57 dIdV() const override ;
58
59//------------------------------------------------------------------------------
60
61 };
62
63 inline ComponentType
68
69//-----------------------------------------------------------------------------
70 }
71}
72
73#endif //BELFEM_CL_SUPERCONDUCTOR_HPP
void compute_current() override
Definition cl_Superconductor.cpp:27
ComponentType component_type() const override
Definition cl_Superconductor.hpp:64
Superconductor(const real aIc, const real aN, const real aEc, const real aLength, Cell< ElectricNode * > &aTerminals, string aLabel="")
Definition cl_Superconductor.cpp:20
real dIdV() const override
Definition cl_Superconductor.cpp:37
TwoTerminals(Cell< ElectricNode * > &aTerminals, string aLabel="")
Definition cl_TwoTerminals.cpp:20
Definition cl_Capacitor.cpp:18
ComponentType
Definition Component_Enums.hpp:22
@ SUPERCONDUCTOR
Definition Component_Enums.hpp:30
USER GUIDES:
Definition cl_Capacitor.cpp:16
double real
Definition typedefs.hpp:36