0

I want to model the resistance between two points on a large mass of uniform resistivity.

There are two cases I am particularly interested in:

a) a cuboid (e.g. a tank of conductive fluid), we could say it is axis-oriented with (0,0,0) and (w,h,d) being diagonally opposite corners, I put two pointlike probes in at known coordinates and measure the voltage between them.

b) a thin sheet whose shape can be decomposed into uniform squares, for example:

enter image description here

For a) it might be acceptable to treat the cuboid as infinitely large. How big would the error be? Or, under what size conditions is the error "small" (within some specified tolerance, i.e. a few percent)?

For b) it would be acceptable to treat the probes as being squares of the same size and alignment as the tiles which comprise the whole shape, if that simplifies things.

How can I calculate the resistance between the probes in these situations?

spraff
  • 275
  • 1
  • 5
  • 3
    I think this falls under some form of finite element analysis (which tends to use triangles, not squares). I'm uncertain if you can do it by hand with an acceptable degree of accuracy. For a given gradient in the local current distribution, the error decreases as the size of the elements decreases such that the gradient within each element approaches a uniform value throughout the element (i.e. the current distribution throughout each individual element is uniform and each element approximates a point rather than an area). – DKNguyen Jul 06 '19 at 18:20
  • The intent is to subdivide an arbitrary shape into squares/triangles/whatever in software and make them "small enough" to get an suitably accurate answer. – spraff Jul 06 '19 at 18:21
  • Instead of modelling it as an area you might model it as a square grid (or triangle if you really wanted to but that might be trickier) of very small resistors instead. Then you could use more directly use circuit analysis methods instead of electromagnetics. Might be simpler. You could probably just use regular circuit simulation software like like LTspice if you took that route as long as it could handle than many hundreds or thousands of resistors without crashing. For a sheet anyways. It might be a nightmare of netnames connecting different 2D layers to do it for a 3D object. – DKNguyen Jul 06 '19 at 18:22
  • 1
    See [How to solve similar sheet questions #1](https://electronics.stackexchange.com/a/437001/38098), [How to solve similar sheet questions #2](https://electronics.stackexchange.com/a/342358/38098), [Infinite Grid of Resistors](https://www.mathpages.com/home/kmath668/kmath668.htm), and [An Infinite Series for Resistor Grids](https://www.mathpages.com/home/kmath673/kmath673.htm). You can use these "red/black"/"checkerboard" techniques for arbitrary shapes, including shapes with holes, wires, and any other crazy shape you want. – jonk Jul 06 '19 at 18:26
  • 1
    The resistance will strongly depend on the size of the inner-most square. Suppose you had 1 meter square sheet, with 10cm contacts? or 1mm contacts? Big difference, as the current-crowding needed to neck down to 1mm contacts causes lots of voltage drop. – analogsystemsrf Jul 07 '19 at 16:39
  • @analogsystemsrf That image is just an example. What's the algorithm for determining this for an arbitrary arrangement? – spraff Jul 07 '19 at 20:35

1 Answers1

0

a is a calculus problem and the result will depend on surface the area of the probes and the conductivity of the tank in addition ot the given paramters.

B is probably best approached as a finite element problem, you could try using femm to solve it. http://www.femm.info/wiki/HomePage

  • The tank itself is a perfect insulator and the probes are pointlike. How do I solve this calculus problem? Or, is there a reasonable approximation I can use? – spraff Jul 07 '19 at 07:49
  • 1
    If point-like, the resistance is infinite. You must specify the diameter of the probes. – analogsystemsrf Jul 07 '19 at 16:40