Resistance Calculator

버전 2.0 (6.36 KB) 작성자: Ligong Han
An equivalent resistance calculator for an arbitrary resistor network
다운로드 수: 1.2K
업데이트 날짜: 2015/6/10

라이선스 보기

The calculation is based on KVL and KCL equations. Set currents on each branch to unknowns. Denote the number of nodes as N, and the number of edges as M. (M-(N-1)) independent loops can be obtained by a breadth-first search, from which (M-(N-1)) KVL equations can be wrote. Together with (N-1) KCL equations, the equivalent resistance can be computed by solving linear equations.

인용 양식

Ligong Han (2024). Resistance Calculator (https://www.mathworks.com/matlabcentral/fileexchange/42521-resistance-calculator), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2012a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Passive에 대해 자세히 알아보기
태그 태그 추가

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
2.0

two improvements regarding time efficiency:
- uses a different approach to find independent loops;
- uses the built-in function graphtraverse to perform BFS.

1.4.0.0

- fixes bugs when parallel resistance exists in the initial net-matrix, such as resistance_calculator([1 2 1;1 2 1],[1 2])

1.3.0.0

- updates vTree
- fixes errors of building KVL equations
- vTree class updated: fixed an error of the 'delChild' method
- Simplify the network before building equations by Y-Delta transform.

1.2.0.0

- Updated vTree

1.1.0.0

rewrote and optimised the whole structure, added two classes

1.0.0.0