Current carrying Capability Program

조회 수: 2 (최근 30일)
Andrew Borcher
Andrew Borcher 2020년 7월 6일
댓글: Andrew Borcher 2020년 7월 6일
I need help getting started in MATLAB this is an assignment and the instructor has been no help. I am new to all this and struggling to get started, Any help would be much appreciated.
Given the following relationships, write a MATLAB program to find the current (I) carrying capability of copper, aluminum, gold, and silver where all wires have a diameter (d) of the wire of 0.5 cm, a length (L) of 10,000 m, and an applied voltage (V) of 110V.
V = IR R = (ρL)/A A = π(0.5d)2
The resistivity (ρ) for each type wire is:
Copper = 1.72 x 10-8ohm/m
Aluminum = 2.75 x 10-8ohm/m
Gold = 2.44 x 10-8 ohm/m
Silver = 1.59 x 10-8ohm/m
  댓글 수: 2
Steven Lord
Steven Lord 2020년 7월 6일
Since this is a homework assignment, if you show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the MATLAB Onramp tutorial (https://www.mathworks.com/support/learn-with-matlab-tutorials.html) to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.
Andrew Borcher
Andrew Borcher 2020년 7월 6일
Is there something similar that I could look at to see an example?

댓글을 달려면 로그인하십시오.

답변 (1개)

KSSV
KSSV 2020년 7월 6일
The problem is very simple and straight forward. If I have a formula
d = a*b/c with a, b, c defined to evaluate d, we do:
a = 3 ;
b = 2 ;
c = 5 ;
d = a*b/c

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by