MariamGhevondyanProjectS2 (2)
MariamGhevondyanProjectS2 (2)
Subject Project S2
Arsen MOMJYAN
April 2, 2025
1
Contents
Summary ...................................................................................................................... 2
PHYSICS ...................................................................................................................... 3
Problem 1 .............................................................................................................................. 3
Problem 2 .............................................................................................................................. 7
Problem 3 .............................................................................................................................. 9
Problem 4 ............................................................................................................................ 11
Problem 5 ............................................................................................................................ 13
Problem 6 ............................................................................................................................ 16
Summary
This report consists of two main parts called “physics” which contains various
kinds of electrical circuits with problems referring to that section and the project part
where I was assigned to create a specific sort of programming project using python
programming language. Gathered all together, these sections put on display both
PHYSICS
Problem 1
In this problem we have to solve this electrical circuit, which means we need to
find all the potentials and currents at every point in the circuit
Solution
To do this we need to implement Kirchoff’s two laws and in the first place we have to
2) -6I4+6I5=0
3)-5I3-2I6+5V+6I4+3I2=0
4) -4I7+5V+2I6=0
5)-4I8+4I7=0
5
I1 – I2 – I3 = 0
I2 – I4 – I5 = 0
I3 – I6 – I7 – I8 = 0
I2 + I3 - I1 = 0, from here
0 = I4 + I5 + I6 + I7 + I8 - I1
To calculate the potential at each point we have to assume that the potential at the point ‘a’,
and it is φ𝑎. Consequently, we get
𝜑𝑝 = 𝜑𝑐 + 6.55 = 𝜑𝑎 + 9.39 𝑉
𝜑𝑞 = 𝜑𝑝 + 1.28 = 𝜑𝑎 + 10.67 𝑉
7
Problem 2
In this problem we have voltage divider and I need to find U out (voltage output) in this
electrical circuit.
Solution:
R=R1+R2=136 ohm
Problem 3
signals:
3*10^-15 F
3*10^-15 F
10
For this problem we have to show the output signals’ graph of the circuit based on
the
Solution:
We know that C = 3*10^-15 F and R = 51 Ohm. This means that 𝜏 (𝑡𝑎𝑢 ) = 𝑅𝐶 = 1.53 ×
10−13 𝐹𝑂ℎ𝑚
Problem 4
In this case we are given RC Integrating circuit, where the placements of the
capacitor and the resistor are just simply changed and that is when we are having
Integrating circuit from Differentiating one. Again we have input signals shown in the
following:
3*10^-15F
3*10^-15F
12
For this problem as well, we have the same task to show the graph of the output
signals.
Solution
We know that C = 3*10^-15F and R = 51 Ohm. This means that 𝜏 (𝑡𝑎𝑢 ) = 𝑅𝐶 = 1.53 ×
10−13 𝐹 𝑂ℎ𝑚
Problem 5
This time in this problem we are provided with a diode switch containing
electrical circuit, where we need to show the behavior of the diode switch and again show
Solution
From these we can conclude that for every 𝑡, Uout=Uin, therefore the graph of the output
Problem 6
For this problem we are required to draw the current – voltage graph of a diode
based on the given data, which is 𝑈𝑡ℎ = 0.8 𝑉, 𝑈𝑑𝑖𝑠𝑟𝑢𝑝𝑡𝑖𝑜𝑛 = −88 𝑉, 𝑡𝑔𝛼 =
Solution
Taking all the given data into consideration we will get the approximate look of a
It is obvious that I (current of diode) decreases because of R inverse until it reaches U disruption
17
after which it drastically falls to minus infinity. We can also notice that it has a change in Uth,
which is a threshold. After emerging to that point current of diode is increasing due to R direct.
18
Project description
For my project I was supposed to create a simple Employee Payroll System using
The program allows the user to input employee details such as ID, name, hourly
rate, and hours worked. It then calculates the employee's gross salary, applies a tax rate
based on income brackets, includes fixed deductions like health insurance, and finally
computes the net salary. I also added a function to generate a neat payslip that displays all
GitHub link
Here you can find my GitHub repository link to access the full code of my
project: https://github.com/mariam010101/ProjectS2