A ideia básica é bastante simples. Você organiza uma matriz ( V ) que representa "nós" ou vértices no seu sistema. Cada um desses nós tem uma "tensão" com valor escalar associada a ele que pode ser alterada ou atualizada à medida que o algoritmo prossegue. Também haverá dois nós cuja tensão não pode ser alterada. Vamos aplicar uma espécie de "bateria" aqui, para que esses dois nós representem as duas extremidades dessa bateria.
Separadamente, outras duas matrizes ( e R hRvRh ) representa as arestas no sistema, horizontal e vertical. Esses são seus valores de resistência, eu acho. Não tenho certeza de como você pretende preenchê-las. Mas esse é o seu problema. Essa técnica supõe que você também possa preencher essas matrizes.
Dependendo do idioma do computador usado, você pode ou não conseguir usar índices negativos. Não importa. É apenas uma questão de ter em mente o que você enfrenta.
Vamos supor que o comprimento seja dividido em seções N L e que o "comprimento" A seja dividido em seções N A. Então você precisará construir uma matriz com vértices ( N L + 1 ) ⋅ ( N A + 1 ) para os valores de tensão escalar. (ou maior.) Você também precisará dessas outras duas matrizes com arestas verticais N A ⋅ ( N L + 1 ) e N L ⋅ ( N A + 1LNLANA(NL+1)⋅(NA+1)NA⋅(NL+1) arestas horizontais entre esses vértices.NL⋅(NA+1)
Agora. Inicialize todos os vértices com . Escolha um dos vértices à esquerda (no meio, de preferência) e observe-o como 00VValor V que NÃO pode mudar nunca. Use o método que desejar para isso. Escolha um dos vértices à direita (no meio, de preferência) e altere seu valor para 10V , observando novamente que seu valor NÃO pode mudar. Uma técnica que funciona aqui é simplesmente deixá-lo mudar normalmente, mas depois substituir o valor a cada passo. Mas não importa como você consegue isso, desde que você consiga.1V
(Existem outras técnicas por razões de eficiência. Mas provavelmente não vale a pena incomodá-las aqui.)
Agora, o algoritmo, que às vezes é chamado de xadrez ou algoritmo vermelho-preto . Movendo-se pela matriz de tensão do nó, processe cada nó em que a soma dos dois índices, é par, executando a seguinte atribuição simples:i+j
Vi,j=Rhi,j−1⋅Rhi,j⋅(Vi−1,j⋅Rvi,j+Vi+1,j⋅Rvi−1,j)Rhi,j−1⋅Rhi,j⋅(Rvi,j+Rvi−1,j)+Rvi−1,j⋅Rvi,j(Rhi,j+Rhi,j−1)+Rvi−1,j⋅Rvi,j⋅(Vi,j−1⋅Rhi,j+Vi,j+1⋅Rhi,j−1)Rhi,j−1⋅Rhi,j⋅(Rvi,j+Rvi−1,j)+Rvi−1,j⋅Rvi,j(Rhi,j+Rhi,j−1)
A equação acima nada mais é do que calcular a tensão de um nó central com quatro resistores conectados a ele, onde as tensões nas outras extremidades dos quatro resistores são conhecidas. A tensão do nó central é então calculada a partir da equação acima. Como o divisor é o mesmo para cada termo, você pode calcular a soma dos numeradores e dividir uma vez pelo denominador.
Isso atualizará todos os nós em que a soma é par. Agora você executa o mesmo procedimento para todos os nós em que a soma i + j é ímpar. Depois que essas duas etapas foram executadas, você completou um ciclo.i+ji+j
Se necessário, redefina os dois nós especiais (para e para 10V como discutido anteriormente.) Ou, se você protegeu esses dois nós, não há necessidade de redefini-los.1V
Você está pronto para o próximo ciclo. Execute esses ciclos quantas vezes achar necessário para que o estado geral se acalme (e assim será).
Quando você interrompe o processo, pode resolver facilmente a resistência escolhendo olhar para os nós ao redor do nó protegido do lado esquerdo ou para os nós ao redor do nó protegido do lado direito. (Pode ser uma boa idéia aumentar sua matriz apenas o suficiente [em 1 em todas as direções] para que você tenha quatro nós em torno de qualquer opção.) A diferença de voltagem entre os nós circundantes e o nó especial, dividida pelo a resistência nas bordas entre eles informa a saída / entrada atual do nó especial. Como este é um nó "bateria", essa corrente deve ser TODA da corrente. Como a tensão é , por definição, dividir 1 pela soma dessas quatro correntes que você encontrar indica a resistência total.1V
Estou olhando para um código que escrevi que totaliza, com muitos comentários, apenas 67 linhas. Portanto, não é difícil escrever.
O "breve resumo" dessa idéia é que você aplica e observe como as tensões se espalham pelo sistema. Uma vez que as tensões se estabilizam (seus critérios para isso), tudo o que você precisa fazer é observar a corrente que entra ou sai de um terminal da bateria ou do outro. Ambos devem ter o mesmo valor atual (dentro de alguns limites numéricos) por razões óbvias.1V
Por que você deve separar o sistema em i + j = par e i + j = ímpar?
V5,5=f(V4,5,V6,5,V5,4,V5,6)V5,5V5,6=f(V4,6,V6,6,V5,5,V5,7)V5,5V5,7=f(V4,7,V6,7,V5,6,V5,8) because none of the inputs to the function are nodes that were changed during this step. Then you swing around and compute the alternates, avoiding the smudging but now updating the alternates. You really do have to do it this way.
Also, is the formula identical for both even and odd steps through?
Yes, it's the same.
Can it all be solved in one step using some sort of linear system Ax=b
where A is a linear operator and b provides the boundary conditions?
Looking at it, it seems somewhat analogous to finite difference
methods for solving partial differential equations..
There is a connection. I think it's called a 'matrix-free' implementation.
Here's an example. The following set of resistor values were placed into LTSpice for simulation:
I kept it short and simple. As you can see, the approximate computed current from the 1V power supply is given as 30.225mA. (The actual value computed by Spice was 30.224552mA.)
I ran the following VB.NET program:
Module GEOGRID
Const NL As Integer = 2
Const NA As Integer = 2
Const INF As Double = 1.0E+32
Sub Main()
Static Rh As Double(,) = New Double(NL + 2, NA + 1) {
{INF, INF, INF, INF},
{INF, 5, 21, INF},
{INF, 76, 10, INF},
{INF, 32, 22, INF},
{INF, INF, INF, INF}}
Static Rv As Double(,) = New Double(NA + 1, NL + 2) {
{INF, INF, INF, INF, INF},
{INF, 61, 50, 16, INF},
{INF, 56, 45, 18, INF},
{INF, INF, INF, INF, INF}}
Dim V As Double(,) = New Double(NL + 2, NA + 2) {
{0, 0, 0, 0, 0},
{0, 0, 0, 0, 0},
{0, 0, 0, 1, 0},
{0, 0, 0, 0, 0},
{0, 0, 0, 0, 0}}
Dim PDE As Func(Of Integer, Integer, Double) = Function(ByVal i As Integer, ByVal j As Integer) (
Rh(i, j - 1) * Rh(i, j) * (V(i - 1, j) * Rv(i, j) + V(i + 1, j) * Rv(i - 1, j)) +
Rv(i - 1, j) * Rv(i, j) * (V(i, j - 1) * Rh(i, j) + V(i, j + 1) * Rh(i, j - 1))
) / (
Rh(i, j - 1) * Rh(i, j) * (Rv(i, j) + Rv(i - 1, j)) +
Rv(i - 1, j) * Rv(i, j) * (Rh(i, j) + Rh(i, j - 1))
)
Dim IV As Func(Of Integer, Integer, Double) = Function(ByVal i As Integer, ByVal j As Integer) 0 +
(V(i, j) - V(i - 1, j)) / Rv(i - 1, j) + (V(i, j) - V(i + 1, j)) / Rv(i, j) +
(V(i, j) - V(i, j - 1)) / Rh(i, j - 1) + (V(i, j) - V(i, j + 1)) / Rh(i, j)
Dim idx As Integer = NA \ 2 + 1
Dim jdx1 As Integer = NL + 1
Dim jdx2 As Integer = 1
For x As Integer = 1 To 1000
For k As Integer = 0 To (NA + 1) * (NL + 1) - 1 Step 2
Dim i As Integer = k \ (NL + 1)
Dim j As Integer = k - i * (NL + 1) + 1
i += 1
If Not (i = idx AndAlso (j = jdx1 OrElse j = jdx2)) Then V(i, j) = PDE(i, j)
Next
For k As Integer = 1 To (NA + 1) * (NL + 1) - 1 Step 2
Dim i As Integer = k \ (NL + 1)
Dim j As Integer = k - i * (NL + 1) + 1
i += 1
If Not (i = idx AndAlso (j = jdx1 OrElse j = jdx2)) Then V(i, j) = PDE(i, j)
Next
Next
Console.WriteLine("R = " & (1.0 / IV(idx, jdx1)).ToString)
Console.WriteLine("R = " & (-1.0 / IV(idx, jdx2)).ToString)
End Sub
End Module
With the following result printed out: R=33.0856844038614Ω. Which is the correct answer.
The above program shows a way of setting up the resistors, vertical and horizontal, as well as the voltage matrix, so that it simplifies some of the tests for non-existent nodes and/or resistor values. The code is a little cleaner, this way, though it does require some more array elements. (I've simply made the extra resistor values infinite in value.) Just compare how I've set up the arrays with the way the schematic was laid out, as well, and I think you will be able to work out all the exact details here.
I've also hacked in the resistors and node values, of course, without making this in any way a general purpose program for reading up a table of values. But that generality is pretty easy to add. And this code should make everything I wrote absolutely unambiguous.
Note that I also just ran the x loop 1000 types, alternating red and black within the x loop. I just picked a number. To make this more general purpose, you may prefer a different way of determining how many iterations to perform.
And a final note. Just to prove that you can use either fixed voltage node's current to compute the resistor, I've used two lines in order to print out both values: one computed from the 0V side and one computed from the 1V side. Either way, you should see the same number.
(Okay. One more final note. This would be much better targeted at F# or any decent compiler targeting a massively parallel computing system. Each calculation in either "red" or "black" can be performed in parallel; completely independently of each other. F# makes this trivial. So coded in F#, you could run this on all of your available cores without anything special to do. It just works. Just a note in case you are collecting a LOT of data in some fashion and might want to take full advantage of a multi-core system.)
END NOTE:
The derivation is pretty simple from KCL. Place four resistors into the following arrangement:
simulate this circuit – Schematic created using CircuitLab
Apply KCL:
VR1+VR2+VR3+VR4V=V1R1+V2R2+V3R3+V4R4∴=(V1R1+V2R2+V3R3+V4R4)(R1∣∣R2∣∣R3∣∣R4)
Some playing around with algebra gets the result I used in the code.