This commit is contained in:
Глеб Луговцов 2024-03-27 23:33:42 +03:00
parent edebb79548
commit 1c0c14f13c

View File

@ -226,6 +226,45 @@
"print(f\"Расхождение между beta*fT и Fp \\t\\t{deltaPercent(Fp, beta*fT):.2f} %\")"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "eac3816b-84d9-4418-8a1a-2bb85736e712",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"# п. 5\n",
"f = 2e3 # Hz\n",
"Umax = 10.77 # V\n",
"# Дальше у сигнала появляется характерная \"полка\""
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "b6f2bc90-bb7a-4cef-8ec0-683f5f702956",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Расхождение между Umax и Um_out \t13.19 %\n"
]
}
],
"source": [
"# п. 6\n",
"Fp = 2.22e6 # Hz (A = 1/sqrt(2))\n",
"Umax = .55 # V\n",
"Um_out = 3e6 / (2*3.1415 * 1e6) # V\n",
"print(f\"Расхождение между Umax и Um_out \\t{deltaPercent(Umax, Um_out):.2f} %\")"
]
},
{
"cell_type": "markdown",
"id": "34a95100-4916-4ef5-a4a3-8c0ec4b036af",