Created
March 31, 2012 14:21
-
-
Save resure/2265439 to your computer and use it in GitHub Desktop.
ДЗ №2 по электронике
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
# Домашнее задание №2 | |
# Гаджиев Г. П., АК5-41 | |
# Исходные данные | |
B = 200.0 | |
a = B / (B + 1) | |
I_ка = 0.002 | |
E_к = 12.0 | |
U_бэ = 0.7 | |
S = 6.0 | |
# Начало вычислений | |
U_Rэ = 0.15 * E_к | |
R_э = (U_Rэ * a)/I_ка | |
R_б = (R_э * (S - 1)) / (S * (a - 1) + 1) | |
R_1 = (E_к * B) / (I_ка + ((U_бэ * B + (B + 1) * I_ка * R_э)/(R_б))) | |
R_2 = (R_б * R_1) / R_1 - R_б | |
R_к = (E_к - U_Rэ) / (2 * I_ка) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment