Skip to content
Snippets Groups Projects
Commit 51bae575 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

pp

parent 75e5519b
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -44,7 +44,7 @@ Group { ...@@ -44,7 +44,7 @@ Group {
// * all surfaces connected to the lumped element circuit // * all surfaces connected to the lumped element circuit
Sur_Ele = Region[{Top1, Bottom1, Top2, Bottom2, Top3, Bottom3}]; Sur_Ele = Region[{Top1, Bottom1, Top2, Bottom2, Top3, Bottom3}];
// * total electrical computation domain // * total electrical computation domain
VolWithSur_Ele = Region[{Vol_Ele, Sur_Ele}]; Dom_Ele = Region[{Vol_Ele, Sur_Ele}];
} }
// Circuit group data - Fictive regions for the circuit elements // Circuit group data - Fictive regions for the circuit elements
...@@ -221,10 +221,10 @@ FunctionSpace { ...@@ -221,10 +221,10 @@ FunctionSpace {
// All nodes but the grouped nodes of the surfaces for connecting the // All nodes but the grouped nodes of the surfaces for connecting the
// circuitry // circuitry
{ Name sn; NameOfCoef vn; Function BF_Node; { Name sn; NameOfCoef vn; Function BF_Node;
Support VolWithSur_Ele; Entity NodesOf[ All, Not Sur_Ele ]; } Support Dom_Ele; Entity NodesOf[ All, Not Sur_Ele ]; }
// Grouped nodes: Each surface of Sur_Ele has just one single voltage // Grouped nodes: Each surface of Sur_Ele has just one single voltage
{ Name sf; NameOfCoef vf; Function BF_GroupOfNodes; { Name sf; NameOfCoef vf; Function BF_GroupOfNodes;
Support VolWithSur_Ele; Entity GroupsOfNodesOf[ Sur_Ele ]; } Support Dom_Ele; Entity GroupsOfNodesOf[ Sur_Ele ]; }
} }
GlobalQuantity { GlobalQuantity {
{ Name U; Type AliasOf; NameOfCoef vf; } { Name U; Type AliasOf; NameOfCoef vf; }
......
...@@ -49,7 +49,7 @@ Group { ...@@ -49,7 +49,7 @@ Group {
// * all surfaces connected to the lumped element circuit // * all surfaces connected to the lumped element circuit
Sur_Ele = Region[{Top1, Bottom1, Top2, Bottom2, Top3, Bottom3, Top4, Bottom4}]; Sur_Ele = Region[{Top1, Bottom1, Top2, Bottom2, Top3, Bottom3, Top4, Bottom4}];
// * total electrical computation domain: // * total electrical computation domain:
VolWithSur_Ele = Region[{Vol_Ele, Sur_Ele}]; Dom_Ele = Region[{Vol_Ele, Sur_Ele}];
} }
// Circuit group data (fictive regions for the circuit elements) // Circuit group data (fictive regions for the circuit elements)
...@@ -218,11 +218,11 @@ FunctionSpace { ...@@ -218,11 +218,11 @@ FunctionSpace {
// All nodes but the grouped nodes of the surfaces for connecting the // All nodes but the grouped nodes of the surfaces for connecting the
// circuitry // circuitry
{ Name sn; NameOfCoef vn; Function BF_Node; { Name sn; NameOfCoef vn; Function BF_Node;
Support VolWithSur_Ele; Entity NodesOf[ All, Not Sur_Ele ]; } Support Dom_Ele; Entity NodesOf[ All, Not Sur_Ele ]; }
// Grouped nodes: Each surface of Sur_Ele has just one single voltage -> // Grouped nodes: Each surface of Sur_Ele has just one single voltage ->
// each surface is just one node effectively // each surface is just one node effectively
{ Name sf; NameOfCoef vf; Function BF_GroupOfNodes; { Name sf; NameOfCoef vf; Function BF_GroupOfNodes;
Support VolWithSur_Ele; Entity GroupsOfNodesOf[ Sur_Ele ]; } Support Dom_Ele; Entity GroupsOfNodesOf[ Sur_Ele ]; }
} }
GlobalQuantity { GlobalQuantity {
// Voltage of the surfaces of Sur_Ele // Voltage of the surfaces of Sur_Ele
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment