Added øvinger
BIN
Øvinger/LF/LF_Ø3.pdf
Normal file
BIN
Øvinger/Ø1/ESDAI_Ø1.pdf
Normal file
BIN
Øvinger/Ø1/Fukka.ggb
Normal file
BIN
Øvinger/Ø1/LF_ø1.pdf
Normal file
BIN
Øvinger/Ø1/Oppgave1.ggb
Normal file
BIN
Øvinger/Ø1/Oppgave1_a.ggb
Normal file
BIN
Øvinger/Ø1/Oppgave2.ggb
Normal file
BIN
Øvinger/Ø1/Oppgave2bc.ggb
Normal file
BIN
Øvinger/Ø1/Oppgave4Python/4b.png
Normal file
After Width: | Height: | Size: 137 KiB |
BIN
Øvinger/Ø1/Oppgave4Python/4b2.png
Normal file
After Width: | Height: | Size: 137 KiB |
BIN
Øvinger/Ø1/Oppgave4Python/4c.png
Normal file
After Width: | Height: | Size: 199 KiB |
BIN
Øvinger/Ø1/Oppgave4Python/4c2.png
Normal file
After Width: | Height: | Size: 169 KiB |
83
Øvinger/Ø1/Oppgave4Python/Graftegning.py
Normal file
@ -0,0 +1,83 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
Created on Fri Jan 18 22:30:00 2019
|
||||
|
||||
@author: oyvind
|
||||
"""
|
||||
import math
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
# Name for the saved graph
|
||||
filename = "4b"
|
||||
|
||||
# Tau in microseconds
|
||||
tau = 10
|
||||
|
||||
# Square wave freq in kHz
|
||||
sqWFreq = 5
|
||||
|
||||
# How many taus you want
|
||||
periods = 40
|
||||
|
||||
# The resolution of each tau
|
||||
resolution = 1000
|
||||
|
||||
# Calculates the length of each squarewave in taus
|
||||
sqTime = (1/sqWFreq) * 10**3
|
||||
sqTau = sqTime / tau
|
||||
|
||||
# Creats the square wave
|
||||
# Default values are in the argument list
|
||||
def CreateSquareWave(amp=0.5, offset=0.5, symetry=0.5):
|
||||
squareWave = []
|
||||
# Only generates as many datapoints we need
|
||||
while len(squareWave) < periods * resolution:
|
||||
# First generate the first half
|
||||
for r in range(int(resolution*sqTau * symetry)):
|
||||
squareWave.append(amp + offset)
|
||||
# Then the second
|
||||
for r in range(int(resolution*sqTau * (1 - symetry))):
|
||||
squareWave.append(offset - amp)
|
||||
squareWave = squareWave[:(resolution*periods)]
|
||||
return squareWave
|
||||
|
||||
|
||||
# Generate all the time-ticks
|
||||
def GenerateTime():
|
||||
times = []
|
||||
for t in range(periods * resolution):
|
||||
times.append(t/resolution)
|
||||
print(len(times))
|
||||
return(times)
|
||||
|
||||
|
||||
def CapVoltage(wave, times):
|
||||
cP = wave[0] # Start voltage-supply
|
||||
v0 = 0 # Start voltage
|
||||
cT = 0 #Start time
|
||||
volt = []
|
||||
for p in range(len(wave)):
|
||||
# If the voltage-supply changes, recalculate startvalues
|
||||
if wave[p] != cP:
|
||||
v0 = volt[-1] # New start voltage, uses the last voltage calculated
|
||||
cP = wave[p] # Variable so the array is not accessed.
|
||||
cT = times[p] # Offset time for each period
|
||||
# Calculate the voltage over the CAPACITOR with the start values
|
||||
volt.append(cP + (v0 - cP) * math.exp(-(times[p] - cT)))
|
||||
return(volt)
|
||||
|
||||
|
||||
SquareWave = CreateSquareWave()
|
||||
time = GenerateTime()
|
||||
CapWave = CapVoltage(SquareWave, time)
|
||||
|
||||
plt.figure(figsize=(15,5))
|
||||
plt.plot(time, SquareWave, time, CapWave)
|
||||
plt.xlabel("Time [τ]")
|
||||
plt.ylabel("Voltage [V]")
|
||||
plt.legend(["Supply voltage", "Capacitor voltage"], loc="lower right")
|
||||
plt.savefig(filename + ".png", dpi = 300)
|
||||
plt.show()
|
||||
|
||||
|
BIN
Øvinger/Ø1/Oppgave4Python/cap.png
Normal file
After Width: | Height: | Size: 169 KiB |
BIN
Øvinger/Ø1/TauMaaling.png
Normal file
After Width: | Height: | Size: 53 KiB |
BIN
Øvinger/Ø1/grafer/3b.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
Øvinger/Ø1/grafer/3c.png
Normal file
After Width: | Height: | Size: 16 KiB |
442
Øvinger/Ø1/grafer/condisO1.tex
Normal file
@ -0,0 +1,442 @@
|
||||
\documentclass[10pt]{article}
|
||||
\usepackage{pgf,tikz,pgfplots}
|
||||
\pgfplotsset{compat=1.15}
|
||||
\usepackage{mathrsfs}
|
||||
\usetikzlibrary{arrows}
|
||||
\pagestyle{empty}
|
||||
\begin{document}
|
||||
\definecolor{uuuuuu}{rgb}{0.26666666666666666,0.26666666666666666,0.26666666666666666}
|
||||
\definecolor{qqwuqq}{rgb}{0.,0.39215686274509803,0.}
|
||||
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=2.0cm,y=3.0cm]
|
||||
\begin{axis}[
|
||||
x=2.0cm,y=3.0cm,
|
||||
axis lines=middle,
|
||||
ymajorgrids=true,
|
||||
xmajorgrids=true,
|
||||
xmin=-0.5,
|
||||
xmax=5.5,
|
||||
ymin=-0.5,
|
||||
ymax=2.5,
|
||||
ylabel={Spenning [V]},
|
||||
xlabel={Tid [$\tau$]},
|
||||
yticklabel={\SI[round-mode=places, round-precision=1]{\tick}{V}},
|
||||
xticklabel={\SI[round-mode=places, round-precision=0]{\tick}{\tau}},
|
||||
xtick={-0.5,0.0,...,5.5},
|
||||
ytick={-0.5,0.0,...,2.5},]
|
||||
\clip(-0.5,-0.5) rectangle (5.5,2.5);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.0,2.1399914400171203) -- (0.0,2.1399914400171203);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.0,2.1399914400171203) -- (0.013753989999999978,2.1107679508785484);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.013753989999999978,2.1107679508785484) -- (0.027503979999999977,2.081943534512635);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.027503979999999977,2.081943534512635) -- (0.04125396999999997,2.0535127412252265);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.04125396999999997,2.0535127412252265) -- (0.05500395999999998,2.025470195742599);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.05500395999999998,2.025470195742599) -- (0.06875394999999998,1.9978105961951773);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.06875394999999998,1.9978105961951773) -- (0.08250393999999998,1.9705287131151374);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.08250393999999998,1.9705287131151374) -- (0.09625392999999999,1.943619388447697);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.09625392999999999,1.943619388447697) -- (0.11000391999999999,1.9170775345759057);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.11000391999999999,1.9170775345759057) -- (0.12375391,1.890898133358754);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.12375391,1.890898133358754) -- (0.13750389999999998,1.8650762351824168);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.13750389999999998,1.8650762351824168) -- (0.15125388999999997,1.8396069580244552);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.15125388999999997,1.8396069580244552) -- (0.16500387999999996,1.8144854865307944);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.16500387999999996,1.8144854865307944) -- (0.17875386999999995,1.7897070711053082);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.17875386999999995,1.7897070711053082) -- (0.19250385999999994,1.7652670270118362);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.19250385999999994,1.7652670270118362) -- (0.20625384999999993,1.741160733488463);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.20625384999999993,1.741160733488463) -- (0.22000383999999992,1.717383632873892);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.22000383999999992,1.717383632873892) -- (0.2337538299999999,1.6939312297457518);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2337538299999999,1.6939312297457518) -- (0.2475038199999999,1.6707990900706668);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2475038199999999,1.6707990900706668) -- (0.2612538099999999,1.6479828403659367);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2612538099999999,1.6479828403659367) -- (0.2750037999999999,1.6254781668726628);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2750037999999999,1.6254781668726628) -- (0.2887537899999999,1.603280814740166);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2887537899999999,1.603280814740166) -- (0.3025037799999999,1.5813865872215436);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3025037799999999,1.5813865872215436) -- (0.3162537699999999,1.5597913448802088);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3162537699999999,1.5597913448802088) -- (0.33000375999999987,1.538491004807269);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.33000375999999987,1.538491004807269) -- (0.34375374999999986,1.5174815398495887);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.34375374999999986,1.5174815398495887) -- (0.35750373999999985,1.4967589778483956);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.35750373999999985,1.4967589778483956) -- (0.37125372999999984,1.476319400888283);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.37125372999999984,1.476319400888283) -- (0.3850037199999998,1.4561589445564687);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3850037199999998,1.4561589445564687) -- (0.3987537099999998,1.4362737972121693);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3987537099999998,1.4362737972121693) -- (0.4125036999999998,1.4166601992659509);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4125036999999998,1.4166601992659509) -- (0.4262536899999998,1.3973144424689217);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4262536899999998,1.3973144424689217) -- (0.4400036799999998,1.378232869211632);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4400036799999998,1.378232869211632) -- (0.4537536699999998,1.3594118718325459);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4537536699999998,1.3594118718325459) -- (0.46750365999999977,1.34084789193596);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.46750365999999977,1.34084789193596) -- (0.48125364999999976,1.322537419719233);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.48125364999999976,1.322537419719233) -- (0.49500363999999974,1.3044769933092049);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.49500363999999974,1.3044769933092049) -- (0.5087536299999997,1.2866631981076766);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5087536299999997,1.2866631981076766) -- (0.5225036199999997,1.26909266614583);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5225036199999997,1.26909266614583) -- (0.5362536099999997,1.251762075447459);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5362536099999997,1.251762075447459) -- (0.5500035999999997,1.2346681494009035);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5500035999999997,1.2346681494009035) -- (0.5637535899999997,1.2178076561395523);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5637535899999997,1.2178076561395523) -- (0.5775035799999997,1.2011774079308124);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5775035799999997,1.2011774079308124) -- (0.5912535699999997,1.184774260573418);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5912535699999997,1.184774260573418) -- (0.6050035599999997,1.168595112802972);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6050035599999997,1.168595112802972) -- (0.6187535499999997,1.152636905705605);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6187535499999997,1.152636905705605) -- (0.6325035399999996,1.1368966221396413);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6325035399999996,1.1368966221396413) -- (0.6462535299999996,1.1213712861651615);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6462535299999996,1.1213712861651615) -- (0.6600035199999996,1.1060579624813567);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6600035199999996,1.1060579624813567) -- (0.6737535099999996,1.0909537558715647);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6737535099999996,1.0909537558715647) -- (0.6875034999999996,1.0760558106558862);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6875034999999996,1.0760558106558862) -- (0.7012534899999996,1.0613613101512729);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7012534899999996,1.0613613101512729) -- (0.7150034799999996,1.046867476138994);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7150034799999996,1.046867476138994) -- (0.7287534699999996,1.0325715683393688);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7287534699999996,1.0325715683393688) -- (0.7425034599999996,1.018470883893677);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7425034599999996,1.018470883893677) -- (0.7562534499999995,1.0045627568531406);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7562534499999995,1.0045627568531406) -- (0.7700034399999995,0.9908445576748875);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7700034399999995,0.9908445576748875) -- (0.7837534299999995,0.9773136927247954);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7837534299999995,0.9773136927247954) -- (0.7975034199999995,0.9639676037871256);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7975034199999995,0.9639676037871256) -- (0.8112534099999995,0.9508037675808544);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8112534099999995,0.9508037675808544) -- (0.8250033999999995,0.9378196952826073);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8250033999999995,0.9378196952826073) -- (0.8387533899999995,0.9250129320561102);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8387533899999995,0.9250129320561102) -- (0.8525033799999995,0.9123810565880645);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8525033799999995,0.9123810565880645) -- (0.8662533699999995,0.8999216806303614);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8662533699999995,0.8999216806303614) -- (0.8800033599999995,0.887632448548547);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8800033599999995,0.887632448548547) -- (0.8937533499999994,0.8755110368764542);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8937533499999994,0.8755110368764542) -- (0.9075033399999994,0.8635551538769157);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9075033399999994,0.8635551538769157) -- (0.9212533299999994,0.8517625391084763);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9212533299999994,0.8517625391084763) -- (0.9350033199999994,0.8401309629980226);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9350033199999994,0.8401309629980226) -- (0.9487533099999994,0.8286582264192474);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9487533099999994,0.8286582264192474) -- (0.9625032999999994,0.8173421602768719);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9625032999999994,0.8173421602768719) -- (0.9762532899999994,0.8061806250965458);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9762532899999994,0.8061806250965458) -- (0.9900032799999994,0.7951715106203461);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9900032799999994,0.7951715106203461) -- (1.0037532699999994,0.7843127354078016);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0037532699999994,0.7843127354078016) -- (1.0175032599999994,0.7736022464423644);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0175032599999994,0.7736022464423644) -- (1.0312532499999993,0.7630380187432563);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0312532499999993,0.7630380187432563) -- (1.0450032399999993,0.7526180549826151);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0450032399999993,0.7526180549826151) -- (1.0587532299999993,0.7423403851078696);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0587532299999993,0.7423403851078696) -- (1.0725032199999993,0.7322030659692709);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0725032199999993,0.7322030659692709) -- (1.0862532099999993,0.7222041809525109);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0862532099999993,0.7222041809525109) -- (1.1000031999999993,0.7123418396163568);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1000031999999993,0.7123418396163568) -- (1.1137531899999993,0.7026141773352347);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1137531899999993,0.7026141773352347) -- (1.1275031799999993,0.6930193549466935);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1275031799999993,0.6930193549466935) -- (1.1412531699999993,0.6835555584036838);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1412531699999993,0.6835555584036838) -- (1.1550031599999993,0.6742209984315838);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1550031599999993,0.6742209984315838) -- (1.1687531499999992,0.6650139101899109);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1687531499999992,0.6650139101899109) -- (1.1825031399999992,0.6559325529386508);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1825031399999992,0.6559325529386508) -- (1.1962531299999992,0.6469752097091447);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1962531299999992,0.6469752097091447) -- (1.2100031199999992,0.6381401869794703);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2100031199999992,0.6381401869794703) -- (1.2237531099999992,0.6294258143542547);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2237531099999992,0.6294258143542547) -- (1.2375030999999992,0.6208304442488626);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2375030999999992,0.6208304442488626) -- (1.2512530899999992,0.6123524515778938);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2512530899999992,0.6123524515778938) -- (1.2650030799999992,0.6039902334479366);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2650030799999992,0.6039902334479366) -- (1.2787530699999992,0.5957422088545167);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2787530699999992,0.5957422088545167) -- (1.2925030599999991,0.5876068183831841);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2925030599999991,0.5876068183831841) -- (1.3062530499999991,0.5795825239146819);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3062530499999991,0.5795825239146819) -- (1.3200030399999991,0.5716678083341414);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3200030399999991,0.5716678083341414) -- (1.3337530299999991,0.5638611752442492);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3337530299999991,0.5638611752442492) -- (1.347503019999999,0.5561611486823295);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.347503019999999,0.5561611486823295) -- (1.361253009999999,0.5485662728412918);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.361253009999999,0.5485662728412918) -- (1.375002999999999,0.5410751117943877);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.375002999999999,0.5410751117943877) -- (1.388752989999999,0.533686249223728);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.388752989999999,0.533686249223728) -- (1.402502979999999,0.5263982881525053);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.402502979999999,0.5263982881525053) -- (1.416252969999999,0.5192098506808749);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.416252969999999,0.5192098506808749) -- (1.430002959999999,0.5121195777254417);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.430002959999999,0.5121195777254417) -- (1.443752949999999,0.5051261287623049);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.443752949999999,0.5051261287623049) -- (1.457502939999999,0.49822818157361154);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.457502939999999,0.49822818157361154) -- (1.471252929999999,0.491424431997571);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.471252929999999,0.491424431997571) -- (1.485002919999999,0.48471359368188366);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.485002919999999,0.48471359368188366) -- (1.498752909999999,0.4780943978405362);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.498752909999999,0.4780943978405362) -- (1.512502899999999,0.47156559301391826);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.512502899999999,0.47156559301391826) -- (1.526252889999999,0.4651259448322152);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.526252889999999,0.4651259448322152) -- (1.540002879999999,0.45877423578203164);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.540002879999999,0.45877423578203164) -- (1.553752869999999,0.4525092649762019);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.553752869999999,0.4525092649762019) -- (1.567502859999999,0.44632984792674435);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.567502859999999,0.44632984792674435) -- (1.581252849999999,0.44023481632091555);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.581252849999999,0.44023481632091555) -- (1.595002839999999,0.4342230178003231);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.595002839999999,0.4342230178003231) -- (1.608752829999999,0.428293315743055);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.608752829999999,0.428293315743055) -- (1.622502819999999,0.42244458904878385);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.622502819999999,0.42244458904878385) -- (1.636252809999999,0.41667573192680546);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.636252809999999,0.41667573192680546) -- (1.6500027999999989,0.4109856536869729);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6500027999999989,0.4109856536869729) -- (1.6637527899999989,0.4053732785334844);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6637527899999989,0.4053732785334844) -- (1.6775027799999989,0.39983754536148836);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6775027799999989,0.39983754536148836) -- (1.6912527699999989,0.3943774075564646);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6912527699999989,0.3943774075564646) -- (1.7050027599999988,0.38899183279634686);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7050027599999988,0.38899183279634686) -- (1.7187527499999988,0.3836798028563457);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7187527499999988,0.3836798028563457) -- (1.7325027399999988,0.37844031341643836);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7325027399999988,0.37844031341643836) -- (1.7462527299999988,0.3732723738714865);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7462527299999988,0.3732723738714865) -- (1.7600027199999988,0.36817500714394724);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7600027199999988,0.36817500714394724) -- (1.7737527099999988,0.36314724949914157);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7737527099999988,0.36314724949914157) -- (1.7875026999999988,0.35818815036304624);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7875026999999988,0.35818815036304624) -- (1.8012526899999988,0.35329677214257266);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8012526899999988,0.35329677214257266) -- (1.8150026799999988,0.3484721900483012);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8150026799999988,0.3484721900483012) -- (1.8287526699999987,0.3437134919196352);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8287526699999987,0.3437134919196352) -- (1.8425026599999987,0.33901977805234346);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8425026599999987,0.33901977805234346) -- (1.8562526499999987,0.3343901610284574);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8562526499999987,0.3343901610284574) -- (1.8700026399999987,0.32982376554849124);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8700026399999987,0.32982376554849124) -- (1.8837526299999987,0.32531972826595335);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8837526299999987,0.32531972826595335) -- (1.8975026199999987,0.32087719762411715);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8975026199999987,0.32087719762411715) -- (1.9112526099999987,0.31649533369502186);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9112526099999987,0.31649533369502186) -- (1.9250025999999987,0.312173308020671);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9250025999999987,0.312173308020671) -- (1.9387525899999987,0.3079103034563999);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9387525899999987,0.3079103034563999) -- (1.9525025799999987,0.3037055140163822);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9525025799999987,0.3037055140163822) -- (1.9662525699999986,0.2995581447212456);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9662525699999986,0.2995581447212456) -- (1.9800025599999986,0.29546741144776956);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9800025599999986,0.29546741144776956) -- (1.9937525499999986,0.29143254078063424);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9937525499999986,0.29143254078063424) -- (2.0075025399999986,0.28745276986619495);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0075025399999986,0.28745276986619495) -- (2.0212525299999986,0.28352734626825293);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0212525299999986,0.28352734626825293) -- (2.0350025199999986,0.27965552782579595);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0350025199999986,0.27965552782579595) -- (2.0487525099999986,0.27583658251268134);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0487525099999986,0.27583658251268134) -- (2.0625024999999986,0.27206978829923556);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0625024999999986,0.27206978829923556) -- (2.0762524899999986,0.26835443301574313);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0762524899999986,0.26835443301574313) -- (2.0900024799999986,0.26468981421780047);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0900024799999986,0.26468981421780047) -- (2.1037524699999985,0.261075239053508);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1037524699999985,0.261075239053508) -- (2.1175024599999985,0.25751002413247576);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1175024599999985,0.25751002413247576) -- (2.1312524499999985,0.25399349539661853);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1312524499999985,0.25399349539661853) -- (2.1450024399999985,0.2505249879927144);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1450024399999985,0.2505249879927144) -- (2.1587524299999985,0.24710384614670433);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1587524299999985,0.24710384614670433) -- (2.1725024199999985,0.2437294230397083);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1725024199999985,0.2437294230397083) -- (2.1862524099999985,0.24040108068573407);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1862524099999985,0.24040108068573407) -- (2.2000023999999985,0.23711818981105645);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2000023999999985,0.23711818981105645) -- (2.2137523899999985,0.23388012973524336);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2137523899999985,0.23388012973524336) -- (2.2275023799999984,0.23068628825380688);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2275023799999984,0.23068628825380688) -- (2.2412523699999984,0.2275360615224567);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2412523699999984,0.2275360615224567) -- (2.2550023599999984,0.22442885394293402);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2550023599999984,0.22442885394293402) -- (2.2687523499999984,0.22136407805040476);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2687523499999984,0.22136407805040476) -- (2.2825023399999984,0.21834115440239046);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2825023399999984,0.21834115440239046) -- (2.2962523299999984,0.21535951146921573);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2962523299999984,0.21535951146921573) -- (2.3100023199999984,0.21241858552595197);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3100023199999984,0.21241858552595197) -- (2.3237523099999984,0.20951782054583656);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3237523099999984,0.20951782054583656) -- (2.3375022999999984,0.20665666809514757);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3375022999999984,0.20665666809514757) -- (2.3512522899999984,0.203834587229514);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3512522899999984,0.203834587229514) -- (2.3650022799999983,0.20105104439164206);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3650022799999983,0.20105104439164206) -- (2.3787522699999983,0.198305513310438);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3787522699999983,0.198305513310438) -- (2.3925022599999983,0.1955974749015086);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3925022599999983,0.1955974749015086) -- (2.4062522499999983,0.1929264171690204);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4062522499999983,0.1929264171690204) -- (2.4200022399999983,0.19029183510889902);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4200022399999983,0.19029183510889902) -- (2.4337522299999983,0.18769323061335055);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4337522299999983,0.18769323061335055) -- (2.4475022199999983,0.18513011237668658);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4475022199999983,0.18513011237668658) -- (2.4612522099999983,0.18260199580243552);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4612522099999983,0.18260199580243552) -- (2.4750021999999983,0.18010840291172223);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4750021999999983,0.18010840291172223) -- (2.4887521899999983,0.1776488622528988);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4887521899999983,0.1776488622528988) -- (2.5025021799999982,0.17522290881240948);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.5025021799999982,0.17522290881240948) -- (2.5162521699999982,0.17283008392687285);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.5162521699999982,0.17283008392687285) -- (2.5300021599999982,0.17046993519636439);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.5300021599999982,0.17046993519636439) -- (2.543752149999998,0.16814201639888354);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.543752149999998,0.16814201639888354) -- (2.557502139999998,0.1658458874059886);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.557502139999998,0.1658458874059886) -- (2.571252129999998,0.16358111409958373);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.571252129999998,0.16358111409958373) -- (2.585002119999998,0.16134726828984236);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.585002119999998,0.16134726828984236) -- (2.598752109999998,0.1591439276342514);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.598752109999998,0.1591439276342514) -- (2.612502099999998,0.15697067555776084);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.612502099999998,0.15697067555776084) -- (2.626252089999998,0.15482710117402418);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.626252089999998,0.15482710117402418) -- (2.640002079999998,0.15271279920771377);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.640002079999998,0.15271279920771377) -- (2.653752069999998,0.15062736991789763);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.653752069999998,0.15062736991789763) -- (2.667502059999998,0.14857041902246224);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.667502059999998,0.14857041902246224) -- (2.681252049999998,0.14654155762356746);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.681252049999998,0.14654155762356746) -- (2.695002039999998,0.14454040213411962);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.695002039999998,0.14454040213411962) -- (2.708752029999998,0.14256657420524835);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.708752029999998,0.14256657420524835) -- (2.722502019999998,0.1406197006547742);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.722502019999998,0.1406197006547742) -- (2.736252009999998,0.13869941339665265);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.736252009999998,0.13869941339665265) -- (2.750001999999998,0.1368053493713821);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.750001999999998,0.1368053493713821) -- (2.763751989999998,0.13493715047736174);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.763751989999998,0.13493715047736174) -- (2.777501979999998,0.133094463503187);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.777501979999998,0.133094463503187) -- (2.791251969999998,0.13127694006086973);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.791251969999998,0.13127694006086973) -- (2.805001959999998,0.12948423651997004);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.805001959999998,0.12948423651997004) -- (2.818751949999998,0.1277160139426277);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.818751949999998,0.1277160139426277) -- (2.832501939999998,0.12597193801948092);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.832501939999998,0.12597193801948092) -- (2.846251929999998,0.12425167900645999);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.846251929999998,0.12425167900645999) -- (2.860001919999998,0.1225549116624441);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.860001919999998,0.1225549116624441) -- (2.873751909999998,0.1208813151877697);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.873751909999998,0.1208813151877697) -- (2.887501899999998,0.11923057316357835);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.887501899999998,0.11923057316357835) -- (2.901251889999998,0.11760237349199291);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.901251889999998,0.11760237349199291) -- (2.915001879999998,0.1159964083371108);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.915001879999998,0.1159964083371108) -- (2.928751869999998,0.1144123740668028);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.928751869999998,0.1144123740668028) -- (2.942501859999998,0.11284997119530689);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.942501859999998,0.11284997119530689) -- (2.956251849999998,0.11130890432660587);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.956251849999998,0.11130890432660587) -- (2.970001839999998,0.10978888209857825);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.970001839999998,0.10978888209857825) -- (2.983751829999998,0.1082896171279118);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.983751829999998,0.1082896171279118) -- (2.997501819999998,0.10681082595576939);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.997501819999998,0.10681082595576939) -- (3.011251809999998,0.10535222899419681);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.011251809999998,0.10535222899419681) -- (3.025001799999998,0.10391355047326237);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.025001799999998,0.10391355047326237) -- (3.038751789999998,0.10249451838891838);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.038751789999998,0.10249451838891838) -- (3.052501779999998,0.10109486445157471);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.052501779999998,0.10109486445157471) -- (3.066251769999998,0.09971432403537457);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.066251769999998,0.09971432403537457) -- (3.080001759999998,0.09835263612816292);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.080001759999998,0.09835263612816292) -- (3.093751749999998,0.09700954328213814);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.093751749999998,0.09700954328213814) -- (3.107501739999998,0.09568479156517767);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.107501739999998,0.09568479156517767) -- (3.121251729999998,0.09437813051282828);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.121251729999998,0.09437813051282828) -- (3.1350017199999978,0.09308931308095189);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1350017199999978,0.09308931308095189) -- (3.1487517099999978,0.09181809559901817);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1487517099999978,0.09181809559901817) -- (3.1625016999999978,0.0905642377240349);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1625016999999978,0.0905642377240349) -- (3.1762516899999977,0.08932750239510752);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1762516899999977,0.08932750239510752) -- (3.1900016799999977,0.0881076557886191);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1900016799999977,0.0881076557886191) -- (3.2037516699999977,0.08690446727402246);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2037516699999977,0.08690446727402246) -- (3.2175016599999977,0.08571770937023597);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2175016599999977,0.08571770937023597) -- (3.2312516499999977,0.08454715770263477);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2312516499999977,0.08454715770263477) -- (3.2450016399999977,0.08339259096062936);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2450016399999977,0.08339259096062936) -- (3.2587516299999977,0.08225379085582342);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2587516299999977,0.08225379085582342) -- (3.2725016199999977,0.08113054208074315);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2725016199999977,0.08113054208074315) -- (3.2862516099999977,0.08002263226813003);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2862516099999977,0.08002263226813003) -- (3.3000015999999976,0.07892985195078965);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3000015999999976,0.07892985195078965) -- (3.3137515899999976,0.07785199452198867);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3137515899999976,0.07785199452198867) -- (3.3275015799999976,0.07678885619639272);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3275015799999976,0.07678885619639272) -- (3.3412515699999976,0.07574023597153767);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3412515699999976,0.07574023597153767) -- (3.3550015599999976,0.07470593558982709);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3550015599999976,0.07470593558982709) -- (3.3687515499999976,0.07368575950104858);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3687515499999976,0.07368575950104858) -- (3.3825015399999976,0.07267951482540208);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3825015399999976,0.07267951482540208) -- (3.3962515299999976,0.071687011317033);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3962515299999976,0.071687011317033) -- (3.4100015199999976,0.07070806132806333);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4100015199999976,0.07070806132806333) -- (3.4237515099999976,0.06974247977311393);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4237515099999976,0.06974247977311393) -- (3.4375014999999975,0.06879008409431144);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4375014999999975,0.06879008409431144) -- (3.4512514899999975,0.06785069422677278);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4512514899999975,0.06785069422677278) -- (3.4650014799999975,0.06692413256456128);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4650014799999975,0.06692413256456128) -- (3.4787514699999975,0.06601022392710751);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4787514699999975,0.06601022392710751) -- (3.4925014599999975,0.06510879552608873);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4925014599999975,0.06510879552608873) -- (3.5062514499999975,0.06421967693276065);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5062514499999975,0.06421967693276065) -- (3.5200014399999975,0.0633427000457353);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5200014399999975,0.0633427000457353) -- (3.5337514299999975,0.062477699059198866);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5337514299999975,0.062477699059198866) -- (3.5475014199999975,0.061624510431563584);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5475014199999975,0.061624510431563584) -- (3.5612514099999975,0.06078297285454777);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5612514099999975,0.06078297285454777) -- (3.5750013999999974,0.05995292722267797);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5750013999999974,0.05995292722267797) -- (3.5887513899999974,0.059134216603207695);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5887513899999974,0.059134216603207695) -- (3.6025013799999974,0.058326686206446876);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6025013799999974,0.058326686206446876) -- (3.6162513699999974,0.05753018335649653);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6162513699999974,0.05753018335649653) -- (3.6300013599999974,0.05674455746238307);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6300013599999974,0.05674455746238307) -- (3.6437513499999974,0.05596965998958676);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6437513499999974,0.05596965998958676) -- (3.6575013399999974,0.055205344431959034);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6575013399999974,0.055205344431959034) -- (3.6712513299999974,0.05445146628402329);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6712513299999974,0.05445146628402329) -- (3.6850013199999974,0.05370788301365388);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6850013199999974,0.05370788301365388) -- (3.6987513099999973,0.05297445403512833);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6987513099999973,0.05297445403512833) -- (3.7125012999999973,0.05225104068254737);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7125012999999973,0.05225104068254737) -- (3.7262512899999973,0.05153750618361813);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7262512899999973,0.05153750618361813) -- (3.7400012799999973,0.050833715633795185);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7400012799999973,0.050833715633795185) -- (3.7537512699999973,0.05013953597077487);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7537512699999973,0.05013953597077487) -- (3.7675012599999973,0.04945483594933775);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7675012599999973,0.04945483594933775) -- (3.7812512499999973,0.0487794861165348);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7812512499999973,0.0487794861165348) -- (3.7950012399999973,0.048113358787212276);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7950012399999973,0.048113358787212276) -- (3.8087512299999973,0.04745632801987096);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8087512299999973,0.04745632801987096) -- (3.8225012199999973,0.046808269592854966);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8225012199999973,0.046808269592854966) -- (3.8362512099999972,0.04616906098086576);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8362512099999972,0.04616906098086576) -- (3.8500011999999972,0.04553858133179689);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8500011999999972,0.04553858133179689) -- (3.8637511899999972,0.04491671144388505);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8637511899999972,0.04491671144388505) -- (3.877501179999997,0.04430333374317321);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.877501179999997,0.04430333374317321) -- (3.891251169999997,0.043698332261281406);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.891251169999997,0.043698332261281406) -- (3.905001159999997,0.04310159261348121);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.905001159999997,0.04310159261348121) -- (3.918751149999997,0.04251300197706953);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.918751149999997,0.04251300197706953) -- (3.932501139999997,0.0419324490700378);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.932501139999997,0.0419324490700378) -- (3.946251129999997,0.04135982413003236);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.946251129999997,0.04135982413003236) -- (3.960001119999997,0.04079501889360227);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.960001119999997,0.04079501889360227) -- (3.973751109999997,0.040237926575730436);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.973751109999997,0.040237926575730436) -- (3.987501099999997,0.0396884418496443);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.987501099999997,0.0396884418496443) -- (4.001251089999998,0.03914646082690214);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.001251089999998,0.03914646082690214) -- (4.015001079999998,0.03861188103775151);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.015001079999998,0.03861188103775151) -- (4.0287510699999975,0.03808460141175566);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0287510699999975,0.03808460141175566) -- (4.0425010599999975,0.037564522258684674);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0425010599999975,0.037564522258684674) -- (4.0562510499999975,0.037051545249667514);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0562510499999975,0.037051545249667514) -- (4.0700010399999975,0.03654557339860146);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0700010399999975,0.03654557339860146) -- (4.0837510299999975,0.036046511043815434);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0837510299999975,0.036046511043815434) -- (4.0975010199999975,0.035554263829983626);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0975010199999975,0.035554263829983626) -- (4.1112510099999975,0.035068738690286275);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1112510099999975,0.035068738690286275) -- (4.1250009999999975,0.034589843828813936);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1250009999999975,0.034589843828813936) -- (4.1387509899999975,0.03411748870321206);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1387509899999975,0.03411748870321206) -- (4.1525009799999975,0.03365158400756259);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1525009799999975,0.03365158400756259) -- (4.1662509699999974,0.03319204165549931);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1662509699999974,0.03319204165549931) -- (4.180000959999997,0.03273877476355383);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.180000959999997,0.03273877476355383) -- (4.193750949999997,0.03229169763472886);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.193750949999997,0.03229169763472886) -- (4.207500939999997,0.03185072574229597);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.207500939999997,0.03185072574229597) -- (4.221250929999997,0.03141577571381447);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.221250929999997,0.03141577571381447) -- (4.235000919999997,0.030986765315368616);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.235000919999997,0.030986765315368616) -- (4.248750909999997,0.030563613436020022);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.248750909999997,0.030563613436020022) -- (4.262500899999997,0.030146240072472418);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.262500899999997,0.030146240072472418) -- (4.276250889999997,0.029734566313945787);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.276250889999997,0.029734566313945787) -- (4.290000879999997,0.0293285143272571);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.290000879999997,0.0293285143272571) -- (4.303750869999997,0.028928007342104774);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.303750869999997,0.028928007342104774) -- (4.317500859999997,0.028532969636554065);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.317500859999997,0.028532969636554065) -- (4.331250849999997,0.028143326522720693);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.331250849999997,0.028143326522720693) -- (4.345000839999997,0.027759004332649957);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.345000839999997,0.027759004332649957) -- (4.358750829999997,0.0273799304043887);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.358750829999997,0.0273799304043887) -- (4.372500819999997,0.027006033068247438);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.372500819999997,0.027006033068247438) -- (4.386250809999997,0.026637241633250146);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.386250809999997,0.026637241633250146) -- (4.400000799999997,0.026273486373769032);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.400000799999997,0.026273486373769032) -- (4.413750789999997,0.02591469851634185);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.413750789999997,0.02591469851634185) -- (4.427500779999997,0.025560810226669246);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.427500779999997,0.025560810226669246) -- (4.441250769999997,0.02521175459678963);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.441250769999997,0.02521175459678963) -- (4.455000759999997,0.02486746563242923);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.455000759999997,0.02486746563242923) -- (4.468750749999997,0.024527878240524856);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.468750749999997,0.024527878240524856) -- (4.482500739999997,0.024192928216917077);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.482500739999997,0.024192928216917077) -- (4.496250729999997,0.02386255223421143);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.496250729999997,0.02386255223421143) -- (4.510000719999997,0.023536687829805447);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.510000719999997,0.023536687829805447) -- (4.523750709999997,0.02321527339407912);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.523750709999997,0.02321527339407912) -- (4.537500699999997,0.022898248158746682);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.537500699999997,0.022898248158746682) -- (4.551250689999997,0.022585552185367414);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.551250689999997,0.022585552185367414) -- (4.565000679999997,0.02227712635401341);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.565000679999997,0.02227712635401341) -- (4.578750669999997,0.021972912352092033);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.578750669999997,0.021972912352092033) -- (4.592500659999997,0.021672852663321033);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.592500659999997,0.021672852663321033) -- (4.606250649999997,0.02137689055685421);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.606250649999997,0.02137689055685421) -- (4.620000639999997,0.021084970076555628);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.620000639999997,0.021084970076555628) -- (4.633750629999997,0.02079703603042019);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.633750629999997,0.02079703603042019) -- (4.647500619999997,0.020513033980138807);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.647500619999997,0.020513033980138807) -- (4.661250609999997,0.02023291023080599);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.661250609999997,0.02023291023080599) -- (4.675000599999997,0.019956611820767987);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.675000599999997,0.019956611820767987) -- (4.688750589999997,0.019684086511609633);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.688750589999997,0.019684086511609633) -- (4.702500579999997,0.019415282778277816);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.702500579999997,0.019415282778277816) -- (4.716250569999997,0.01915014979933994);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.716250569999997,0.01915014979933994) -- (4.730000559999997,0.01888863744737532);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.730000559999997,0.01888863744737532) -- (4.743750549999997,0.018630696279497854);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.743750549999997,0.018630696279497854) -- (4.757500539999997,0.018376277528008092);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.757500539999997,0.018376277528008092) -- (4.771250529999997,0.01812533309117295);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.771250529999997,0.01812533309117295) -- (4.785000519999997,0.01787781552413135);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.785000519999997,0.01787781552413135) -- (4.798750509999997,0.01763367802992406);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.798750509999997,0.01763367802992406) -- (4.812500499999997,0.017392874450645985);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.812500499999997,0.017392874450645985) -- (4.826250489999997,0.017155359258719367);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.826250489999997,0.017155359258719367) -- (4.840000479999997,0.016921087548286043);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.840000479999997,0.016921087548286043) -- (4.853750469999997,0.016690015026717357);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.853750469999997,0.016690015026717357) -- (4.867500459999997,0.016462098006239944);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.867500459999997,0.016462098006239944) -- (4.881250449999997,0.01623729339567589);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.881250449999997,0.01623729339567589) -- (4.895000439999997,0.016015558692295703);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.895000439999997,0.016015558692295703) -- (4.908750429999997,0.015796851973782514);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.908750429999997,0.015796851973782514) -- (4.922500419999997,0.01558113189030603);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.922500419999997,0.01558113189030603) -- (4.936250409999997,0.015368357656704718);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.936250409999997,0.015368357656704718) -- (4.950000399999997,0.015158489044774756);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.950000399999997,0.015158489044774756) -- (4.963750389999997,0.01495148637566427);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.963750389999997,0.01495148637566427) -- (4.977500379999997,0.014747310512371457);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.977500379999997,0.014747310512371457) -- (4.991250369999997,0.014545922852345124);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.991250369999997,0.014545922852345124) -- (5.005000359999997,0.0143472853201863);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.005000359999997,0.0143472853201863) -- (5.018750349999997,0.0141513603604495);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.018750349999997,0.0141513603604495) -- (5.032500339999997,0.013958110930542294);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.032500339999997,0.013958110930542294) -- (5.046250329999997,0.013767500493721845);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.046250329999997,0.013767500493721845) -- (5.060000319999997,0.013579493012187088);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.060000319999997,0.013579493012187088) -- (5.073750309999997,0.01339405294026522);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.073750309999997,0.01339405294026522) -- (5.087500299999997,0.013211145217691261);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.087500299999997,0.013211145217691261) -- (5.101250289999997,0.013030735262979385);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.101250289999997,0.013030735262979385) -- (5.115000279999997,0.012852788966884745);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.115000279999997,0.012852788966884745) -- (5.128750269999997,0.012677272685954618);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.128750269999997,0.012677272685954618) -- (5.142500259999997,0.012504153236167595);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.142500259999997,0.012504153236167595) -- (5.156250249999997,0.012333397886659629);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.156250249999997,0.012333397886659629) -- (5.170000239999997,0.012164974353535777);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.170000239999997,0.012164974353535777) -- (5.183750229999997,0.01199885079376644);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.183750229999997,0.01199885079376644) -- (5.197500219999997,0.011834995799166942);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.197500219999997,0.011834995799166942) -- (5.211250209999997,0.011673378390459349);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.211250209999997,0.011673378390459349) -- (5.225000199999997,0.01151396801141536);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.225000199999997,0.01151396801141536) -- (5.238750189999997,0.011356734523079177);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.238750189999997,0.011356734523079177) -- (5.252500179999997,0.011201648198069304);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.252500179999997,0.011201648198069304) -- (5.266250169999997,0.0110486797149581);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.266250169999997,0.0110486797149581) -- (5.280000159999997,0.010897800152728144);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.280000159999997,0.010897800152728144) -- (5.293750149999997,0.010748980985304265);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.293750149999997,0.010748980985304265) -- (5.307500139999997,0.010602194076160256);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.307500139999997,0.010602194076160256) -- (5.321250129999997,0.010457411672999233);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.321250129999997,0.010457411672999233) -- (5.335000119999997,0.010314606402506645);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.335000119999997,0.010314606402506645) -- (5.348750109999997,0.010173751265174936);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.348750109999997,0.010173751265174936) -- (5.3625000999999966,0.010034819630198867);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.3625000999999966,0.010034819630198867) -- (5.3762500899999965,0.009897785230440569);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.3762500899999965,0.009897785230440569) -- (5.3900000799999965,0.009762622157463333);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.3900000799999965,0.009762622157463333) -- (5.4037500699999965,0.00962930485663323);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4037500699999965,0.00962930485663323) -- (5.4175000599999965,0.009497808122287617);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4175000599999965,0.009497808122287617) -- (5.4312500499999965,0.009368107092969627);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4312500499999965,0.009368107092969627) -- (5.4450000399999965,0.009240177246727726);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4450000399999965,0.009240177246727726) -- (5.4587500299999965,0.009113994396479473);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4587500299999965,0.009113994396479473) -- (5.4725000199999965,0.008989534685438576);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4725000199999965,0.008989534685438576) -- (5.4862500099999965,0.008866774582604415);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4862500099999965,0.008866774582604415) -- (5.4999999999999964,0.008745690878313134);
|
||||
\draw (0.9826971286425398,1.2091692065822461) node[anchor=north west] {$(\tau, 0.79\text{V})$};
|
||||
\draw (1.9132719478893085,0.5951090467957184) node[anchor=north west] {$(2\tau, 0.29\text{V})$};
|
||||
\draw (2.788565094705576,0.46352472684146245) node[anchor=north west] {$(3\tau, 0.11\text{V})$};
|
||||
\draw (3.792848810526346,0.35387112687958255) node[anchor=north west] {$(4\tau, 0.04\text{V})$};
|
||||
\draw (4.797132526347116,0.35387112687958255) node[anchor=north west] {$(5\tau, 0.01\text{V})$};
|
||||
\begin{scriptsize}
|
||||
\draw[color=qqwuqq] (0.14886523614914818,2.1083287262696615) node {$v_c$};
|
||||
\draw [fill=uuuuuu] (1.,0.7872620041068866) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (2.,0.2896175061263512) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (3.,0.10654432630722885) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (4.,0.03919546722189114) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (5.,0.0144192065780429) circle (2.0pt);
|
||||
\end{scriptsize}
|
||||
\end{axis}
|
||||
\end{tikzpicture}
|
401
Øvinger/Ø1/grafer/condisO1a.tex
Normal file
@ -0,0 +1,401 @@
|
||||
|
||||
|
||||
\definecolor{uuuuuu}{rgb}{0.26666666666666666,0.26666666666666666,0.26666666666666666}
|
||||
\definecolor{qqwuqq}{rgb}{0.,0.39215686274509803,0.}
|
||||
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=2.5cm,y=1.75cm]
|
||||
\begin{axis}[
|
||||
x=2.5cm,y=1.75cm,
|
||||
axis lines=middle,
|
||||
xmin=-0.5,
|
||||
xmax=5.5,
|
||||
ymin=-0.5,
|
||||
ymax=5.5,
|
||||
ylabel={Spenning [V]},
|
||||
xlabel={Tid [$\tau$]},
|
||||
yticklabel={\SI[round-mode=places, round-precision=1]{\tick}{V}},
|
||||
xticklabel={\SI[round-mode=places, round-precision=0]{\tick}{\tau}},
|
||||
xtick={-0.0,1.0,...,5.0},
|
||||
ytick={-0.0,1.0,...,5.0},]
|
||||
\clip(-0.5,-0.5) rectangle (5.5,5.5);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0,0) -- (0.010000000000000314,0.04975083125416102);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.010000000000000314,0.04975083125416102) -- (0.025000000000000314,0.12345043985833826);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.025000000000000314,0.12345043985833826) -- (0.04000000000000031,0.19605280423838511);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.04000000000000031,0.19605280423838511) -- (0.05500000000000031,0.2675742602325819);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.05500000000000031,0.2675742602325819) -- (0.07000000000000031,0.33803090047025997);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.07000000000000031,0.33803090047025997) -- (0.08500000000000031,0.407438577992715);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.08500000000000031,0.407438577992715) -- (0.10000000000000031,0.4758129098202035);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.10000000000000031,0.4758129098202035) -- (0.11500000000000031,0.5431692804658441);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.11500000000000031,0.5431692804658441) -- (0.1300000000000003,0.6095228453971941);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.1300000000000003,0.6095228453971941) -- (0.1450000000000003,0.6748885344462945);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.1450000000000003,0.6748885344462945) -- (0.1600000000000003,0.7392810551689442);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.1600000000000003,0.7392810551689442) -- (0.17500000000000032,0.8027148961539643);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.17500000000000032,0.8027148961539643) -- (0.19000000000000034,0.8652043302831895);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.19000000000000034,0.8652043302831895) -- (0.20500000000000035,0.9267634179429285);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.20500000000000035,0.9267634179429285) -- (0.22000000000000036,0.987406010187609);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.22000000000000036,0.987406010187609) -- (0.23500000000000038,1.0471457518563239);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.23500000000000038,1.0471457518563239) -- (0.2500000000000004,1.1059960846429773);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2500000000000004,1.1059960846429773) -- (0.2650000000000004,1.1639702501207227);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2650000000000004,1.1639702501207227) -- (0.2800000000000004,1.2210812927213741);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2800000000000004,1.2210812927213741) -- (0.29500000000000043,1.2773420626704546);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.29500000000000043,1.2773420626704546) -- (0.31000000000000044,1.3327652188785555);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.31000000000000044,1.3327652188785555) -- (0.32500000000000046,1.3873632317896405);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.32500000000000046,1.3873632317896405) -- (0.34000000000000047,1.4411483861869527);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.34000000000000047,1.4411483861869527) -- (0.3550000000000005,1.4941327839571397);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3550000000000005,1.4941327839571397) -- (0.3700000000000005,1.5463283468132283);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3700000000000005,1.5463283468132283) -- (0.3850000000000005,1.5977468189770634);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3850000000000005,1.5977468189770634) -- (0.4000000000000005,1.648399769821805);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4000000000000005,1.648399769821805) -- (0.41500000000000054,1.6982985964750874);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.41500000000000054,1.6982985964750874) -- (0.43000000000000055,1.747454526383419);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.43000000000000055,1.747454526383419) -- (0.44500000000000056,1.7958786198384082);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.44500000000000056,1.7958786198384082) -- (0.4600000000000006,1.843581772465372);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4600000000000006,1.843581772465372) -- (0.4750000000000006,1.8905747176749017);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4750000000000006,1.8905747176749017) -- (0.4900000000000006,1.9368680290779219);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4900000000000006,1.9368680290779219) -- (0.5050000000000006,1.9824721228647988);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5050000000000006,1.9824721228647988) -- (0.5200000000000006,2.02739726014903);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5200000000000006,2.02739726014903) -- (0.5350000000000006,2.071653549276032);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5350000000000006,2.071653549276032) -- (0.5500000000000006,2.1152509480975685);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5500000000000006,2.1152509480975685) -- (0.5650000000000006,2.1581992662122995);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5650000000000006,2.1581992662122995) -- (0.5800000000000006,2.2005081671729916);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5800000000000006,2.2005081671729916) -- (0.5950000000000006,2.2421871706608525);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5950000000000006,2.2421871706608525) -- (0.6100000000000007,2.2832456546275024);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6100000000000007,2.2832456546275024) -- (0.6250000000000007,2.3236928574050504);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6250000000000007,2.3236928574050504) -- (0.6400000000000007,2.363537879784759);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6400000000000007,2.363537879784759) -- (0.6550000000000007,2.402789687064761);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6550000000000007,2.402789687064761) -- (0.6700000000000007,2.4414571110672894);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6700000000000007,2.4414571110672894) -- (0.6850000000000007,2.479548852125874);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6850000000000007,2.479548852125874) -- (0.7000000000000007,2.517073481042954);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7000000000000007,2.517073481042954) -- (0.7150000000000007,2.554039441018344);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7150000000000007,2.554039441018344) -- (0.7300000000000008,2.5904550495489893);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7300000000000008,2.5904550495489893) -- (0.7450000000000008,2.6263285003004397);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7450000000000008,2.6263285003004397) -- (0.7600000000000008,2.6616678649504557);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7600000000000008,2.6616678649504557) -- (0.7750000000000008,2.6964810950051725);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7750000000000008,2.6964810950051725) -- (0.7900000000000008,2.7307760235882226);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7900000000000008,2.7307760235882226) -- (0.8050000000000008,2.7645603672032197);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8050000000000008,2.7645603672032197) -- (0.8200000000000008,2.7978417274700056);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8200000000000008,2.7978417274700056) -- (0.8350000000000009,2.830627592835047);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8350000000000009,2.830627592835047) -- (0.8500000000000009,2.8629253402563686);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8500000000000009,2.8629253402563686) -- (0.8650000000000009,2.894742236863396);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8650000000000009,2.894742236863396) -- (0.8800000000000009,2.926085441592095);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8800000000000009,2.926085441592095) -- (0.8950000000000009,2.9569620067957594);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8950000000000009,2.9569620067957594) -- (0.9100000000000009,2.9873788798318217);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9100000000000009,2.9873788798318217) -- (0.9250000000000009,3.0173429046250373);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9250000000000009,3.0173429046250373) -- (0.940000000000001,3.046860823207396);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.940000000000001,3.046860823207396) -- (0.955000000000001,3.075939277235109);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.955000000000001,3.075939277235109) -- (0.970000000000001,3.1045848094830077);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.970000000000001,3.1045848094830077) -- (0.985000000000001,3.132803865316697);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.985000000000001,3.132803865316697) -- (1.0000000000000009,3.16060279414279);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0000000000000009,3.16060279414279) -- (1.0150000000000008,3.18798785083755);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0150000000000008,3.18798785083755) -- (1.0300000000000007,3.2149651971542643);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0300000000000007,3.2149651971542643) -- (1.0450000000000006,3.2415409031096667);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0450000000000006,3.2415409031096667) -- (1.0600000000000005,3.2677209483497136);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0600000000000005,3.2677209483497136) -- (1.0750000000000004,3.2935112234950323);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0750000000000004,3.2935112234950323) -- (1.0900000000000003,3.3189175314663335);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0900000000000003,3.3189175314663335) -- (1.1050000000000002,3.3439455887900955);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1050000000000002,3.3439455887900955) -- (1.12,3.368601026884803);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.12,3.368601026884803) -- (1.135,3.3928893933280433);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.135,3.3928893933280433) -- (1.15,3.4168161531047336);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.15,3.4168161531047336) -- (1.1649999999999998,3.4403866898367657);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1649999999999998,3.4403866898367657) -- (1.1799999999999997,3.4636063069943432);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1799999999999997,3.4636063069943432) -- (1.1949999999999996,3.4864802290892847);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1949999999999996,3.4864802290892847) -- (1.2099999999999995,3.5090136028505623);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2099999999999995,3.5090136028505623) -- (1.2249999999999994,3.5312114983823353);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2249999999999994,3.5312114983823353) -- (1.2399999999999993,3.5530789103047455);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2399999999999993,3.5530789103047455) -- (1.2549999999999992,3.574620758877731);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2549999999999992,3.574620758877731) -- (1.2699999999999991,3.5958418911081);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2699999999999991,3.5958418911081) -- (1.284999999999999,3.6167470818401313);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.284999999999999,3.6167470818401313) -- (1.299999999999999,3.6373410348299355);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.299999999999999,3.6373410348299355) -- (1.3149999999999988,3.6576283838038153);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3149999999999988,3.6576283838038153) -- (1.3299999999999987,3.6776136935008785);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3299999999999987,3.6776136935008785) -- (1.3449999999999986,3.6973014607001202);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3449999999999986,3.6973014607001202) -- (1.3599999999999985,3.7166961152322187);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3599999999999985,3.7166961152322187) -- (1.3749999999999984,3.7358020209762657);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3749999999999984,3.7358020209762657) -- (1.3899999999999983,3.754623476841657);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3899999999999983,3.754623476841657) -- (1.4049999999999983,3.773164717735366);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.4049999999999983,3.773164717735366) -- (1.4199999999999982,3.7914299155148155);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.4199999999999982,3.7914299155148155) -- (1.434999999999998,3.8094231799265623);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.434999999999998,3.8094231799265623) -- (1.449999999999998,3.8271485595310093);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.449999999999998,3.8271485595310093) -- (1.4649999999999979,3.8446100426133465);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.4649999999999979,3.8446100426133465) -- (1.4799999999999978,3.861811558080934);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.4799999999999978,3.861811558080934) -- (1.4949999999999977,3.8787569763473204);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.4949999999999977,3.8787569763473204) -- (1.5099999999999976,3.8954501102031065);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.5099999999999976,3.8954501102031065) -- (1.5249999999999975,3.911894715673833);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.5249999999999975,3.911894715673833) -- (1.5399999999999974,3.9280944928651076);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.5399999999999974,3.9280944928651076) -- (1.5549999999999973,3.944053086795141);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.5549999999999973,3.944053086795141) -- (1.5699999999999972,3.9597740882148944);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.5699999999999972,3.9597740882148944) -- (1.584999999999997,3.97526103441601);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.584999999999997,3.97526103441601) -- (1.599999999999997,3.99051741002672);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.599999999999997,3.99051741002672) -- (1.6149999999999969,4.0055466477958985);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6149999999999969,4.0055466477958985) -- (1.6299999999999968,4.02035212936545);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6299999999999968,4.02035212936545) -- (1.6449999999999967,4.034937186031188);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6449999999999967,4.034937186031188) -- (1.6599999999999966,4.049305099492394);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6599999999999966,4.049305099492394) -- (1.6749999999999965,4.063459102590212);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6749999999999965,4.063459102590212) -- (1.6899999999999964,4.07740238003505);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6899999999999964,4.07740238003505) -- (1.7049999999999963,4.091138069123159);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7049999999999963,4.091138069123159) -- (1.7199999999999962,4.10466926044253);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7199999999999962,4.10466926044253) -- (1.734999999999996,4.1179989985682965);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.734999999999996,4.1179989985682965) -- (1.749999999999996,4.131130282747771);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.749999999999996,4.131130282747771) -- (1.764999999999996,4.144066067575292);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.764999999999996,4.144066067575292) -- (1.7799999999999958,4.156809263657019);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7799999999999958,4.156809263657019) -- (1.7949999999999957,4.169362738265831);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7949999999999957,4.169362738265831) -- (1.8099999999999956,4.181729315986476);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8099999999999956,4.181729315986476) -- (1.8249999999999955,4.1939117793511125);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8249999999999955,4.1939117793511125) -- (1.8399999999999954,4.205912869465393);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8399999999999954,4.205912869465393) -- (1.8549999999999953,4.2177352866252225);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8549999999999953,4.2177352866252225) -- (1.8699999999999952,4.229381690924339);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8699999999999952,4.229381690924339) -- (1.8849999999999951,4.240854702852843);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8849999999999951,4.240854702852843) -- (1.899999999999995,4.252156903886821);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.899999999999995,4.252156903886821) -- (1.914999999999995,4.263290837069187);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.914999999999995,4.263290837069187) -- (1.9299999999999948,4.274259007581877);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9299999999999948,4.274259007581877) -- (1.9449999999999947,4.285063883309531);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9449999999999947,4.285063883309531) -- (1.9599999999999946,4.295707895394771);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9599999999999946,4.295707895394771) -- (1.9749999999999945,4.30619343878522);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9749999999999945,4.30619343878522) -- (1.9899999999999944,4.316522872772377);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9899999999999944,4.316522872772377) -- (2.0049999999999946,4.3266985215224665);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0049999999999946,4.3266985215224665) -- (2.0199999999999947,4.336722674599388);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0199999999999947,4.336722674599388) -- (2.034999999999995,4.346597587479871);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.034999999999995,4.346597587479871) -- (2.049999999999995,4.356325482060976);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.049999999999995,4.356325482060976) -- (2.064999999999995,4.365908547160021);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.064999999999995,4.365908547160021) -- (2.079999999999995,4.375348939007084);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.079999999999995,4.375348939007084) -- (2.0949999999999953,4.384648781730158);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0949999999999953,4.384648781730158) -- (2.1099999999999954,4.393810167833089);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1099999999999954,4.393810167833089) -- (2.1249999999999956,4.402835158666399);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1249999999999956,4.402835158666399) -- (2.1399999999999957,4.411725784891101);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1399999999999957,4.411725784891101) -- (2.154999999999996,4.420484046935604);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.154999999999996,4.420484046935604) -- (2.169999999999996,4.429111915445815);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.169999999999996,4.429111915445815) -- (2.184999999999996,4.43761133172855);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.184999999999996,4.43761133172855) -- (2.199999999999996,4.445984208188328);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.199999999999996,4.445984208188328) -- (2.2149999999999963,4.4542324287576776);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2149999999999963,4.4542324287576776) -- (2.2299999999999964,4.462357849321023);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2299999999999964,4.462357849321023) -- (2.2449999999999966,4.4703622981322715);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2449999999999966,4.4703622981322715) -- (2.2599999999999967,4.478247576226173);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2599999999999967,4.478247576226173) -- (2.274999999999997,4.486015457823567);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.274999999999997,4.486015457823567) -- (2.289999999999997,4.4936676907305815);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.289999999999997,4.4936676907305815) -- (2.304999999999997,4.501205996731906);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.304999999999997,4.501205996731906) -- (2.319999999999997,4.508632071978191);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.319999999999997,4.508632071978191) -- (2.3349999999999973,4.515947587367697);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3349999999999973,4.515947587367697) -- (2.3499999999999974,4.52315418892225);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3499999999999974,4.52315418892225) -- (2.3649999999999975,4.530253498157602);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3649999999999975,4.530253498157602) -- (2.3799999999999977,4.5372471124482825);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3799999999999977,4.5372471124482825) -- (2.394999999999998,4.54413660538701);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.394999999999998,4.54413660538701) -- (2.409999999999998,4.550923527138761);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.409999999999998,4.550923527138761) -- (2.424999999999998,4.557609404789563);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.424999999999998,4.557609404789563) -- (2.439999999999998,4.564195742690092);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.439999999999998,4.564195742690092) -- (2.4549999999999983,4.570684022794165);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4549999999999983,4.570684022794165) -- (2.4699999999999984,4.5770757049921755);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4699999999999984,4.5770757049921755) -- (2.4849999999999985,4.583372227439584);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4849999999999985,4.583372227439584) -- (2.4999999999999987,4.589575006880505);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4999999999999987,4.589575006880505) -- (2.514999999999999,4.595685438966481);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.514999999999999,4.595685438966481) -- (2.529999999999999,4.601704898570509);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.529999999999999,4.601704898570509) -- (2.544999999999999,4.607634740096396);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.544999999999999,4.607634740096396) -- (2.559999999999999,4.613476297783501);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.559999999999999,4.613476297783501) -- (2.5749999999999993,4.619230886006948);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.5749999999999993,4.619230886006948) -- (2.5899999999999994,4.624899799573365);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.5899999999999994,4.624899799573365) -- (2.6049999999999995,4.63048431401222);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.6049999999999995,4.63048431401222) -- (2.6199999999999997,4.6359856858628214);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.6199999999999997,4.6359856858628214) -- (2.635,4.641405152957046);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.635,4.641405152957046) -- (2.65,4.646743934697852);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.65,4.646743934697852) -- (2.665,4.652003232333655);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.665,4.652003232333655) -- (2.68,4.65718422922861);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.68,4.65718422922861) -- (2.6950000000000003,4.662288091128877);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.6950000000000003,4.662288091128877) -- (2.7100000000000004,4.6673159664249155);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.7100000000000004,4.6673159664249155) -- (2.7250000000000005,4.672268986409878);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.7250000000000005,4.672268986409878) -- (2.7400000000000007,4.677148265534158);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.7400000000000007,4.677148265534158) -- (2.755000000000001,4.681954901656141);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.755000000000001,4.681954901656141) -- (2.770000000000001,4.686689976289235);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.770000000000001,4.686689976289235) -- (2.785000000000001,4.691354554845207);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.785000000000001,4.691354554845207) -- (2.800000000000001,4.69594968687391);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.800000000000001,4.69594968687391) -- (2.8150000000000013,4.7004764062994395);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.8150000000000013,4.7004764062994395) -- (2.8300000000000014,4.704935731652761);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.8300000000000014,4.704935731652761) -- (2.8450000000000015,4.709328666300893);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.8450000000000015,4.709328666300893) -- (2.8600000000000017,4.7136561986726635);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.8600000000000017,4.7136561986726635) -- (2.8750000000000018,4.717919302481114);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.8750000000000018,4.717919302481114) -- (2.890000000000002,4.722118936942585);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.890000000000002,4.722118936942585) -- (2.905000000000002,4.726256046992549);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.905000000000002,4.726256046992549) -- (2.920000000000002,4.73033156349822);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.920000000000002,4.73033156349822) -- (2.9350000000000023,4.734346403468007);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.9350000000000023,4.734346403468007) -- (2.9500000000000024,4.738301470257839);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.9500000000000024,4.738301470257839) -- (2.9650000000000025,4.742197653774429);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.9650000000000025,4.742197653774429) -- (2.9800000000000026,4.746035830675508);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.9800000000000026,4.746035830675508) -- (2.9950000000000028,4.7498168645670695);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.9950000000000028,4.7498168645670695) -- (3.010000000000003,4.75354160619769);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.010000000000003,4.75354160619769) -- (3.025000000000003,4.757210893649951);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.025000000000003,4.757210893649951) -- (3.040000000000003,4.760825552529009);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.040000000000003,4.760825552529009) -- (3.0550000000000033,4.764386396148361);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.0550000000000033,4.764386396148361) -- (3.0700000000000034,4.767894225712844);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.0700000000000034,4.767894225712844) -- (3.0850000000000035,4.7713498304989095);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.0850000000000035,4.7713498304989095) -- (3.1000000000000036,4.774753988032212);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1000000000000036,4.774753988032212) -- (3.1150000000000038,4.778107464262558);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1150000000000038,4.778107464262558) -- (3.130000000000004,4.781411013736246);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.130000000000004,4.781411013736246) -- (3.145000000000004,4.784665379765846);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.145000000000004,4.784665379765846) -- (3.160000000000004,4.787871294597444);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.160000000000004,4.787871294597444) -- (3.1750000000000043,4.791029479575402);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1750000000000043,4.791029479575402) -- (3.1900000000000044,4.794140645304662);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1900000000000044,4.794140645304662) -- (3.2050000000000045,4.797205491810641);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2050000000000045,4.797205491810641) -- (3.2200000000000046,4.800224708696732);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2200000000000046,4.800224708696732) -- (3.2350000000000048,4.803198975299471);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2350000000000048,4.803198975299471) -- (3.250000000000005,4.806128960841391);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.250000000000005,4.806128960841391) -- (3.265000000000005,4.809015324581601);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.265000000000005,4.809015324581601) -- (3.280000000000005,4.81185871596412);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.280000000000005,4.81185871596412) -- (3.2950000000000053,4.814659774764003);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2950000000000053,4.814659774764003) -- (3.3100000000000054,4.817419131231299);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3100000000000054,4.817419131231299) -- (3.3250000000000055,4.820137406232853);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3250000000000055,4.820137406232853) -- (3.3400000000000056,4.822815211392008);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3400000000000056,4.822815211392008) -- (3.3550000000000058,4.825453149226222);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3550000000000058,4.825453149226222) -- (3.370000000000006,4.828051813282637);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.370000000000006,4.828051813282637) -- (3.385000000000006,4.8306117882716295);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.385000000000006,4.8306117882716295) -- (3.400000000000006,4.833133650198371);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.400000000000006,4.833133650198371) -- (3.4150000000000063,4.835617966492434);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4150000000000063,4.835617966492434) -- (3.4300000000000064,4.838065296135466);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4300000000000064,4.838065296135466) -- (3.4450000000000065,4.840476189786961);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4450000000000065,4.840476189786961) -- (3.4600000000000066,4.8428511899081625);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4600000000000066,4.8428511899081625) -- (3.4750000000000068,4.845190830884117);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4750000000000068,4.845190830884117) -- (3.490000000000007,4.847495639143913);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.490000000000007,4.847495639143913) -- (3.505000000000007,4.849766133279135);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.505000000000007,4.849766133279135) -- (3.520000000000007,4.852002824160541);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.520000000000007,4.852002824160541) -- (3.5350000000000072,4.854206215053015);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5350000000000072,4.854206215053015) -- (3.5500000000000074,4.856376801728804);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5500000000000074,4.856376801728804) -- (3.5650000000000075,4.858515072579067);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5650000000000075,4.858515072579067) -- (3.5800000000000076,4.860621508723766);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5800000000000076,4.860621508723766) -- (3.5950000000000077,4.86269658411992);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5950000000000077,4.86269658411992) -- (3.610000000000008,4.864740765668249);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.610000000000008,4.864740765668249) -- (3.625000000000008,4.866754513318224);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.625000000000008,4.866754513318224) -- (3.640000000000008,4.868738280171561);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.640000000000008,4.868738280171561) -- (3.6550000000000082,4.8706925125841725);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6550000000000082,4.8706925125841725) -- (3.6700000000000084,4.872617650266596);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6700000000000084,4.872617650266596) -- (3.6850000000000085,4.87451412638293);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6850000000000085,4.87451412638293) -- (3.7000000000000086,4.876382367648304);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7000000000000086,4.876382367648304) -- (3.7150000000000087,4.878222794424882);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7150000000000087,4.878222794424882) -- (3.730000000000009,4.880035820816455);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.730000000000009,4.880035820816455) -- (3.745000000000009,4.881821854761609);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.745000000000009,4.881821854761609) -- (3.760000000000009,4.883581298125516);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.760000000000009,4.883581298125516) -- (3.7750000000000092,4.885314546790356);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7750000000000092,4.885314546790356) -- (3.7900000000000094,4.887021990744392);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7900000000000094,4.887021990744392) -- (3.8050000000000095,4.888704014169715);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8050000000000095,4.888704014169715) -- (3.8200000000000096,4.890360995528693);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8200000000000096,4.890360995528693) -- (3.8350000000000097,4.8919933076491215);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8350000000000097,4.8919933076491215) -- (3.85000000000001,4.893601317808115);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.85000000000001,4.893601317808115) -- (3.86500000000001,4.895185387814743);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.86500000000001,4.895185387814743) -- (3.88000000000001,4.8967458740914385);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.88000000000001,4.8967458740914385) -- (3.8950000000000102,4.898283127754198);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8950000000000102,4.898283127754198) -- (3.9100000000000104,4.8997974946915805);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.9100000000000104,4.8997974946915805) -- (3.9250000000000105,4.901289315642537);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.9250000000000105,4.901289315642537) -- (3.9400000000000106,4.902758926273074);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.9400000000000106,4.902758926273074) -- (3.9550000000000107,4.904206657251784);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.9550000000000107,4.904206657251784) -- (3.970000000000011,4.905632834324243);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.970000000000011,4.905632834324243) -- (3.985000000000011,4.907037778386312);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.985000000000011,4.907037778386312) -- (4.000000000000011,4.90842180555633);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.000000000000011,4.90842180555633) -- (4.01500000000001,4.90978522724625);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.01500000000001,4.90978522724625) -- (4.03000000000001,4.911128350231704);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.03000000000001,4.911128350231704) -- (4.04500000000001,4.91245147672103);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.04500000000001,4.91245147672103) -- (4.060000000000009,4.91375490442327);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.060000000000009,4.91375490442327) -- (4.075000000000009,4.915038926615155);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.075000000000009,4.915038926615155) -- (4.090000000000009,4.916303832207098);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.090000000000009,4.916303832207098) -- (4.105000000000008,4.91754990580819);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.105000000000008,4.91754990580819) -- (4.120000000000008,4.918777427790252);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.120000000000008,4.918777427790252) -- (4.135000000000008,4.919986674350905);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.135000000000008,4.919986674350905) -- (4.1500000000000075,4.921177917575728);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1500000000000075,4.921177917575728) -- (4.165000000000007,4.922351425499473);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.165000000000007,4.922351425499473) -- (4.180000000000007,4.923507462166373);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.180000000000007,4.923507462166373) -- (4.1950000000000065,4.924646287689555);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1950000000000065,4.924646287689555) -- (4.210000000000006,4.925768158309566);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.210000000000006,4.925768158309566) -- (4.225000000000006,4.9268733264520295);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.225000000000006,4.9268733264520295) -- (4.2400000000000055,4.927962040784439);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.2400000000000055,4.927962040784439) -- (4.255000000000005,4.929034546272112);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.255000000000005,4.929034546272112) -- (4.270000000000005,4.930091084233309);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.270000000000005,4.930091084233309) -- (4.285000000000005,4.931131892393528);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.285000000000005,4.931131892393528) -- (4.300000000000004,4.932157204938996);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.300000000000004,4.932157204938996) -- (4.315000000000004,4.933167252569361);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.315000000000004,4.933167252569361) -- (4.330000000000004,4.934162262549601);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.330000000000004,4.934162262549601) -- (4.345000000000003,4.9351424587611605);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.345000000000003,4.9351424587611605) -- (4.360000000000003,4.936108061752321);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.360000000000003,4.936108061752321) -- (4.375000000000003,4.93705928878783);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.375000000000003,4.93705928878783) -- (4.390000000000002,4.937996353897783);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.390000000000002,4.937996353897783) -- (4.405000000000002,4.938919467925783);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.405000000000002,4.938919467925783) -- (4.420000000000002,4.939828838576381);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.420000000000002,4.939828838576381) -- (4.435000000000001,4.94072467046181);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.435000000000001,4.94072467046181) -- (4.450000000000001,4.941607165148023);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.450000000000001,4.941607165148023) -- (4.465000000000001,4.942476521200048);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.465000000000001,4.942476521200048) -- (4.48,4.943332934226663);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.48,4.943332934226663) -- (4.495,4.944176596924414);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.495,4.944176596924414) -- (4.51,4.945007699120966);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.51,4.945007699120966) -- (4.5249999999999995,4.945826427817819);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.5249999999999995,4.945826427817819) -- (4.539999999999999,4.946632967232385);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.539999999999999,4.946632967232385) -- (4.554999999999999,4.947427498839435);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.554999999999999,4.947427498839435) -- (4.5699999999999985,4.948210201411931);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.5699999999999985,4.948210201411931) -- (4.584999999999998,4.948981251061256);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.584999999999998,4.948981251061256) -- (4.599999999999998,4.949740821276832);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.599999999999998,4.949740821276832) -- (4.6149999999999975,4.950489082965163);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.6149999999999975,4.950489082965163) -- (4.629999999999997,4.951226204488285);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.629999999999997,4.951226204488285) -- (4.644999999999997,4.951952351701651);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.644999999999997,4.951952351701651) -- (4.659999999999997,4.952667687991449);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.659999999999997,4.952667687991449) -- (4.674999999999996,4.953372374311358);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.674999999999996,4.953372374311358) -- (4.689999999999996,4.954066569218776);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.689999999999996,4.954066569218776) -- (4.704999999999996,4.954750428910486);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.704999999999996,4.954750428910486) -- (4.719999999999995,4.955424107257802);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.719999999999995,4.955424107257802) -- (4.734999999999995,4.956087755841195);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.734999999999995,4.956087755841195) -- (4.749999999999995,4.956741523984396);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.749999999999995,4.956741523984396) -- (4.764999999999994,4.957385558787997);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.764999999999994,4.957385558787997) -- (4.779999999999994,4.958020005162543);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.779999999999994,4.958020005162543) -- (4.794999999999994,4.958645005861146);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.794999999999994,4.958645005861146) -- (4.809999999999993,4.9592607015115995);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.809999999999993,4.9592607015115995) -- (4.824999999999993,4.959867230648024);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.824999999999993,4.959867230648024) -- (4.839999999999993,4.960464729742032);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.839999999999993,4.960464729742032) -- (4.854999999999992,4.961053333233442);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.854999999999992,4.961053333233442) -- (4.869999999999992,4.961633173560522);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.869999999999992,4.961633173560522) -- (4.884999999999992,4.962204381189792);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.884999999999992,4.962204381189792) -- (4.8999999999999915,4.962767084645378);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.8999999999999915,4.962767084645378) -- (4.914999999999991,4.963321410537931);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.914999999999991,4.963321410537931) -- (4.929999999999991,4.963867483593117);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.929999999999991,4.963867483593117) -- (4.9449999999999905,4.964405426679677);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.9449999999999905,4.964405426679677) -- (4.95999999999999,4.964935360837073);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.95999999999999,4.964935360837073) -- (4.97499999999999,4.965457405302727);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.97499999999999,4.965457405302727) -- (4.9899999999999896,4.965971677538847);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.9899999999999896,4.965971677538847) -- (5.004999999999989,4.966478293258855);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.004999999999989,4.966478293258855) -- (5.019999999999989,4.966977366453426);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.019999999999989,4.966977366453426) -- (5.034999999999989,4.967469009416133);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.034999999999989,4.967469009416133) -- (5.049999999999988,4.967953332768718);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.049999999999988,4.967953332768718) -- (5.064999999999988,4.968430445485978);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.064999999999988,4.968430445485978) -- (5.079999999999988,4.968900454920287);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.079999999999988,4.968900454920287) -- (5.094999999999987,4.969363466825751);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.094999999999987,4.969363466825751) -- (5.109999999999987,4.969819585382002);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.109999999999987,4.969819585382002) -- (5.124999999999987,4.970268913217639);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.124999999999987,4.970268913217639) -- (5.139999999999986,4.970711551433322);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.139999999999986,4.970711551433322) -- (5.154999999999986,4.971147599624515);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.154999999999986,4.971147599624515) -- (5.169999999999986,4.971577155903901);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.169999999999986,4.971577155903901) -- (5.184999999999985,4.972000316923457);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.184999999999985,4.972000316923457) -- (5.199999999999985,4.972417177896196);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.199999999999985,4.972417177896196) -- (5.214999999999985,4.972827832617595);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.214999999999985,4.972827832617595) -- (5.229999999999984,4.9732323734867);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.229999999999984,4.9732323734867) -- (5.244999999999984,4.973630891526913);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.244999999999984,4.973630891526913) -- (5.259999999999984,4.974023476406473);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.259999999999984,4.974023476406473) -- (5.2749999999999835,4.974410216458637);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.2749999999999835,4.974410216458637) -- (5.289999999999983,4.974791198701545);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.289999999999983,4.974791198701545) -- (5.304999999999983,4.975166508857811);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.304999999999983,4.975166508857811) -- (5.3199999999999825,4.975536231373802);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.3199999999999825,4.975536231373802) -- (5.334999999999982,4.975900449438646);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.334999999999982,4.975900449438646) -- (5.349999999999982,4.976259245002942);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.349999999999982,4.976259245002942) -- (5.364999999999982,4.976612698797207);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.364999999999982,4.976612698797207) -- (5.379999999999981,4.9769608903500355);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.379999999999981,4.9769608903500355) -- (5.394999999999981,4.977303898005996);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.394999999999981,4.977303898005996) -- (5.409999999999981,4.9776417989432575);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.409999999999981,4.9776417989432575) -- (5.42499999999998,4.977974669190957);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.42499999999998,4.977974669190957) -- (5.43999999999998,4.978302583646305);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.43999999999998,4.978302583646305) -- (5.45499999999998,4.978625616091437);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.45499999999998,4.978625616091437) -- (5.469999999999979,4.9789438392100145);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.469999999999979,4.9789438392100145) -- (5.484999999999979,4.979257324603584);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.484999999999979,4.979257324603584) -- (5.499999999999979,4.97956614280768);
|
||||
\draw (1.0368736470914874,3.101491777808625) node[anchor=north west] {$(1\tau, 3.16\text{V})$};
|
||||
\draw (1.6711309520023216,4.0881142521143685) node[anchor=north west] {$(2\tau, 4.32\text{V})$};
|
||||
\draw (2.563789381136088,4.616662006206731) node[anchor=north west] {$(3\tau, 4.75\text{V})$};
|
||||
\draw (3.538666349795333,4.839826613490173) node[anchor=north west] {$(4\tau, 4.91\text{V})$};
|
||||
\draw (4.548779835394068,4.910299647369155) node[anchor=north west] {$(5\tau, 4.97\text{V})$};
|
||||
\begin{scriptsize}
|
||||
\draw[color=qqwuqq] (-0.2786229853161683,-2.5657146966261535) node {$v$};
|
||||
\draw [fill=uuuuuu] (1.,3.1606027941427883) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (2.,4.323323583816936) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (3.,4.75106465816068) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (4.,4.908421805556329) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (5.,4.966310265004573) circle (2.0pt);
|
||||
\end{scriptsize}
|
||||
\end{axis}
|
||||
\end{tikzpicture}
|
433
Øvinger/Ø1/grafer/condisO2.tex
Normal file
@ -0,0 +1,433 @@
|
||||
\definecolor{uuuuuu}{rgb}{0.26666666666666666,0.26666666666666666,0.26666666666666666}
|
||||
\definecolor{qqwuqq}{rgb}{0.,0.39215686274509803,0.}
|
||||
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=2.2cm,y=3.6cm]
|
||||
\begin{axis}[
|
||||
x=2.4cm,y=3.6cm,
|
||||
axis lines=middle,
|
||||
xmin=-0.5,
|
||||
xmax=5.5,
|
||||
ymin=-0.5,
|
||||
ymax=2.5,
|
||||
ylabel={Spenning [V]},
|
||||
xlabel={Tid [$\tau$]},
|
||||
yticklabel={\SI[round-mode=places, round-precision=1]{\tick}{V}},
|
||||
xticklabel={\SI[round-mode=places, round-precision=0]{\tick}{\tau}},
|
||||
xtick={0.0, 1.0,...,5.0},
|
||||
ytick={-0.5,0.0,...,2.5},]
|
||||
\clip(-0.5,-0.5) rectangle (5.5,2.5);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.0,2.1399914400171203) -- (0.0,2.1399914400171203);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.0,2.1399914400171203) -- (0.013753989999999978,2.1107679508785484);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.013753989999999978,2.1107679508785484) -- (0.027503979999999977,2.081943534512635);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.027503979999999977,2.081943534512635) -- (0.04125396999999997,2.0535127412252265);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.04125396999999997,2.0535127412252265) -- (0.05500395999999998,2.025470195742599);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.05500395999999998,2.025470195742599) -- (0.06875394999999998,1.9978105961951773);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.06875394999999998,1.9978105961951773) -- (0.08250393999999998,1.9705287131151374);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.08250393999999998,1.9705287131151374) -- (0.09625392999999999,1.943619388447697);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.09625392999999999,1.943619388447697) -- (0.11000391999999999,1.9170775345759057);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.11000391999999999,1.9170775345759057) -- (0.12375391,1.890898133358754);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.12375391,1.890898133358754) -- (0.13750389999999998,1.8650762351824168);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.13750389999999998,1.8650762351824168) -- (0.15125388999999997,1.8396069580244552);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.15125388999999997,1.8396069580244552) -- (0.16500387999999996,1.8144854865307944);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.16500387999999996,1.8144854865307944) -- (0.17875386999999995,1.7897070711053082);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.17875386999999995,1.7897070711053082) -- (0.19250385999999994,1.7652670270118362);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.19250385999999994,1.7652670270118362) -- (0.20625384999999993,1.741160733488463);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.20625384999999993,1.741160733488463) -- (0.22000383999999992,1.717383632873892);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.22000383999999992,1.717383632873892) -- (0.2337538299999999,1.6939312297457518);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2337538299999999,1.6939312297457518) -- (0.2475038199999999,1.6707990900706668);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2475038199999999,1.6707990900706668) -- (0.2612538099999999,1.6479828403659367);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2612538099999999,1.6479828403659367) -- (0.2750037999999999,1.6254781668726628);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2750037999999999,1.6254781668726628) -- (0.2887537899999999,1.603280814740166);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.2887537899999999,1.603280814740166) -- (0.3025037799999999,1.5813865872215436);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3025037799999999,1.5813865872215436) -- (0.3162537699999999,1.5597913448802088);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3162537699999999,1.5597913448802088) -- (0.33000375999999987,1.538491004807269);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.33000375999999987,1.538491004807269) -- (0.34375374999999986,1.5174815398495887);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.34375374999999986,1.5174815398495887) -- (0.35750373999999985,1.4967589778483956);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.35750373999999985,1.4967589778483956) -- (0.37125372999999984,1.476319400888283);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.37125372999999984,1.476319400888283) -- (0.3850037199999998,1.4561589445564687);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3850037199999998,1.4561589445564687) -- (0.3987537099999998,1.4362737972121693);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.3987537099999998,1.4362737972121693) -- (0.4125036999999998,1.4166601992659509);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4125036999999998,1.4166601992659509) -- (0.4262536899999998,1.3973144424689217);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4262536899999998,1.3973144424689217) -- (0.4400036799999998,1.378232869211632);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4400036799999998,1.378232869211632) -- (0.4537536699999998,1.3594118718325459);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.4537536699999998,1.3594118718325459) -- (0.46750365999999977,1.34084789193596);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.46750365999999977,1.34084789193596) -- (0.48125364999999976,1.322537419719233);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.48125364999999976,1.322537419719233) -- (0.49500363999999974,1.3044769933092049);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.49500363999999974,1.3044769933092049) -- (0.5087536299999997,1.2866631981076766);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5087536299999997,1.2866631981076766) -- (0.5225036199999997,1.26909266614583);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5225036199999997,1.26909266614583) -- (0.5362536099999997,1.251762075447459);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5362536099999997,1.251762075447459) -- (0.5500035999999997,1.2346681494009035);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5500035999999997,1.2346681494009035) -- (0.5637535899999997,1.2178076561395523);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5637535899999997,1.2178076561395523) -- (0.5775035799999997,1.2011774079308124);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5775035799999997,1.2011774079308124) -- (0.5912535699999997,1.184774260573418);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.5912535699999997,1.184774260573418) -- (0.6050035599999997,1.168595112802972);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6050035599999997,1.168595112802972) -- (0.6187535499999997,1.152636905705605);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6187535499999997,1.152636905705605) -- (0.6325035399999996,1.1368966221396413);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6325035399999996,1.1368966221396413) -- (0.6462535299999996,1.1213712861651615);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6462535299999996,1.1213712861651615) -- (0.6600035199999996,1.1060579624813567);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6600035199999996,1.1060579624813567) -- (0.6737535099999996,1.0909537558715647);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6737535099999996,1.0909537558715647) -- (0.6875034999999996,1.0760558106558862);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.6875034999999996,1.0760558106558862) -- (0.7012534899999996,1.0613613101512729);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7012534899999996,1.0613613101512729) -- (0.7150034799999996,1.046867476138994);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7150034799999996,1.046867476138994) -- (0.7287534699999996,1.0325715683393688);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7287534699999996,1.0325715683393688) -- (0.7425034599999996,1.018470883893677);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7425034599999996,1.018470883893677) -- (0.7562534499999995,1.0045627568531406);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7562534499999995,1.0045627568531406) -- (0.7700034399999995,0.9908445576748875);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7700034399999995,0.9908445576748875) -- (0.7837534299999995,0.9773136927247954);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7837534299999995,0.9773136927247954) -- (0.7975034199999995,0.9639676037871256);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.7975034199999995,0.9639676037871256) -- (0.8112534099999995,0.9508037675808544);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8112534099999995,0.9508037675808544) -- (0.8250033999999995,0.9378196952826073);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8250033999999995,0.9378196952826073) -- (0.8387533899999995,0.9250129320561102);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8387533899999995,0.9250129320561102) -- (0.8525033799999995,0.9123810565880645);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8525033799999995,0.9123810565880645) -- (0.8662533699999995,0.8999216806303614);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8662533699999995,0.8999216806303614) -- (0.8800033599999995,0.887632448548547);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8800033599999995,0.887632448548547) -- (0.8937533499999994,0.8755110368764542);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.8937533499999994,0.8755110368764542) -- (0.9075033399999994,0.8635551538769157);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9075033399999994,0.8635551538769157) -- (0.9212533299999994,0.8517625391084763);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9212533299999994,0.8517625391084763) -- (0.9350033199999994,0.8401309629980226);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9350033199999994,0.8401309629980226) -- (0.9487533099999994,0.8286582264192474);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9487533099999994,0.8286582264192474) -- (0.9625032999999994,0.8173421602768719);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9625032999999994,0.8173421602768719) -- (0.9762532899999994,0.8061806250965458);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9762532899999994,0.8061806250965458) -- (0.9900032799999994,0.7951715106203461);
|
||||
\draw[line width=2.pt,color=qqwuqq] (0.9900032799999994,0.7951715106203461) -- (1.0037532699999994,0.7843127354078016);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0037532699999994,0.7843127354078016) -- (1.0175032599999994,0.7736022464423644);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0175032599999994,0.7736022464423644) -- (1.0312532499999993,0.7630380187432563);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0312532499999993,0.7630380187432563) -- (1.0450032399999993,0.7526180549826151);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0450032399999993,0.7526180549826151) -- (1.0587532299999993,0.7423403851078696);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0587532299999993,0.7423403851078696) -- (1.0725032199999993,0.7322030659692709);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0725032199999993,0.7322030659692709) -- (1.0862532099999993,0.7222041809525109);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.0862532099999993,0.7222041809525109) -- (1.1000031999999993,0.7123418396163568);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1000031999999993,0.7123418396163568) -- (1.1137531899999993,0.7026141773352347);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1137531899999993,0.7026141773352347) -- (1.1275031799999993,0.6930193549466935);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1275031799999993,0.6930193549466935) -- (1.1412531699999993,0.6835555584036838);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1412531699999993,0.6835555584036838) -- (1.1550031599999993,0.6742209984315838);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1550031599999993,0.6742209984315838) -- (1.1687531499999992,0.6650139101899109);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1687531499999992,0.6650139101899109) -- (1.1825031399999992,0.6559325529386508);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1825031399999992,0.6559325529386508) -- (1.1962531299999992,0.6469752097091447);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.1962531299999992,0.6469752097091447) -- (1.2100031199999992,0.6381401869794703);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2100031199999992,0.6381401869794703) -- (1.2237531099999992,0.6294258143542547);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2237531099999992,0.6294258143542547) -- (1.2375030999999992,0.6208304442488626);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2375030999999992,0.6208304442488626) -- (1.2512530899999992,0.6123524515778938);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2512530899999992,0.6123524515778938) -- (1.2650030799999992,0.6039902334479366);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2650030799999992,0.6039902334479366) -- (1.2787530699999992,0.5957422088545167);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2787530699999992,0.5957422088545167) -- (1.2925030599999991,0.5876068183831841);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.2925030599999991,0.5876068183831841) -- (1.3062530499999991,0.5795825239146819);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3062530499999991,0.5795825239146819) -- (1.3200030399999991,0.5716678083341414);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3200030399999991,0.5716678083341414) -- (1.3337530299999991,0.5638611752442492);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.3337530299999991,0.5638611752442492) -- (1.347503019999999,0.5561611486823295);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.347503019999999,0.5561611486823295) -- (1.361253009999999,0.5485662728412918);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.361253009999999,0.5485662728412918) -- (1.375002999999999,0.5410751117943877);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.375002999999999,0.5410751117943877) -- (1.388752989999999,0.533686249223728);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.388752989999999,0.533686249223728) -- (1.402502979999999,0.5263982881525053);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.402502979999999,0.5263982881525053) -- (1.416252969999999,0.5192098506808749);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.416252969999999,0.5192098506808749) -- (1.430002959999999,0.5121195777254417);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.430002959999999,0.5121195777254417) -- (1.443752949999999,0.5051261287623049);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.443752949999999,0.5051261287623049) -- (1.457502939999999,0.49822818157361154);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.457502939999999,0.49822818157361154) -- (1.471252929999999,0.491424431997571);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.471252929999999,0.491424431997571) -- (1.485002919999999,0.48471359368188366);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.485002919999999,0.48471359368188366) -- (1.498752909999999,0.4780943978405362);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.498752909999999,0.4780943978405362) -- (1.512502899999999,0.47156559301391826);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.512502899999999,0.47156559301391826) -- (1.526252889999999,0.4651259448322152);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.526252889999999,0.4651259448322152) -- (1.540002879999999,0.45877423578203164);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.540002879999999,0.45877423578203164) -- (1.553752869999999,0.4525092649762019);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.553752869999999,0.4525092649762019) -- (1.567502859999999,0.44632984792674435);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.567502859999999,0.44632984792674435) -- (1.581252849999999,0.44023481632091555);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.581252849999999,0.44023481632091555) -- (1.595002839999999,0.4342230178003231);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.595002839999999,0.4342230178003231) -- (1.608752829999999,0.428293315743055);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.608752829999999,0.428293315743055) -- (1.622502819999999,0.42244458904878385);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.622502819999999,0.42244458904878385) -- (1.636252809999999,0.41667573192680546);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.636252809999999,0.41667573192680546) -- (1.6500027999999989,0.4109856536869729);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6500027999999989,0.4109856536869729) -- (1.6637527899999989,0.4053732785334844);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6637527899999989,0.4053732785334844) -- (1.6775027799999989,0.39983754536148836);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6775027799999989,0.39983754536148836) -- (1.6912527699999989,0.3943774075564646);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.6912527699999989,0.3943774075564646) -- (1.7050027599999988,0.38899183279634686);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7050027599999988,0.38899183279634686) -- (1.7187527499999988,0.3836798028563457);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7187527499999988,0.3836798028563457) -- (1.7325027399999988,0.37844031341643836);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7325027399999988,0.37844031341643836) -- (1.7462527299999988,0.3732723738714865);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7462527299999988,0.3732723738714865) -- (1.7600027199999988,0.36817500714394724);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7600027199999988,0.36817500714394724) -- (1.7737527099999988,0.36314724949914157);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7737527099999988,0.36314724949914157) -- (1.7875026999999988,0.35818815036304624);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.7875026999999988,0.35818815036304624) -- (1.8012526899999988,0.35329677214257266);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8012526899999988,0.35329677214257266) -- (1.8150026799999988,0.3484721900483012);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8150026799999988,0.3484721900483012) -- (1.8287526699999987,0.3437134919196352);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8287526699999987,0.3437134919196352) -- (1.8425026599999987,0.33901977805234346);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8425026599999987,0.33901977805234346) -- (1.8562526499999987,0.3343901610284574);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8562526499999987,0.3343901610284574) -- (1.8700026399999987,0.32982376554849124);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8700026399999987,0.32982376554849124) -- (1.8837526299999987,0.32531972826595335);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8837526299999987,0.32531972826595335) -- (1.8975026199999987,0.32087719762411715);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.8975026199999987,0.32087719762411715) -- (1.9112526099999987,0.31649533369502186);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9112526099999987,0.31649533369502186) -- (1.9250025999999987,0.312173308020671);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9250025999999987,0.312173308020671) -- (1.9387525899999987,0.3079103034563999);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9387525899999987,0.3079103034563999) -- (1.9525025799999987,0.3037055140163822);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9525025799999987,0.3037055140163822) -- (1.9662525699999986,0.2995581447212456);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9662525699999986,0.2995581447212456) -- (1.9800025599999986,0.29546741144776956);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9800025599999986,0.29546741144776956) -- (1.9937525499999986,0.29143254078063424);
|
||||
\draw[line width=2.pt,color=qqwuqq] (1.9937525499999986,0.29143254078063424) -- (2.0075025399999986,0.28745276986619495);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0075025399999986,0.28745276986619495) -- (2.0212525299999986,0.28352734626825293);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0212525299999986,0.28352734626825293) -- (2.0350025199999986,0.27965552782579595);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0350025199999986,0.27965552782579595) -- (2.0487525099999986,0.27583658251268134);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0487525099999986,0.27583658251268134) -- (2.0625024999999986,0.27206978829923556);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0625024999999986,0.27206978829923556) -- (2.0762524899999986,0.26835443301574313);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0762524899999986,0.26835443301574313) -- (2.0900024799999986,0.26468981421780047);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.0900024799999986,0.26468981421780047) -- (2.1037524699999985,0.261075239053508);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1037524699999985,0.261075239053508) -- (2.1175024599999985,0.25751002413247576);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1175024599999985,0.25751002413247576) -- (2.1312524499999985,0.25399349539661853);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1312524499999985,0.25399349539661853) -- (2.1450024399999985,0.2505249879927144);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1450024399999985,0.2505249879927144) -- (2.1587524299999985,0.24710384614670433);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1587524299999985,0.24710384614670433) -- (2.1725024199999985,0.2437294230397083);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1725024199999985,0.2437294230397083) -- (2.1862524099999985,0.24040108068573407);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.1862524099999985,0.24040108068573407) -- (2.2000023999999985,0.23711818981105645);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2000023999999985,0.23711818981105645) -- (2.2137523899999985,0.23388012973524336);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2137523899999985,0.23388012973524336) -- (2.2275023799999984,0.23068628825380688);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2275023799999984,0.23068628825380688) -- (2.2412523699999984,0.2275360615224567);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2412523699999984,0.2275360615224567) -- (2.2550023599999984,0.22442885394293402);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2550023599999984,0.22442885394293402) -- (2.2687523499999984,0.22136407805040476);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2687523499999984,0.22136407805040476) -- (2.2825023399999984,0.21834115440239046);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2825023399999984,0.21834115440239046) -- (2.2962523299999984,0.21535951146921573);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.2962523299999984,0.21535951146921573) -- (2.3100023199999984,0.21241858552595197);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3100023199999984,0.21241858552595197) -- (2.3237523099999984,0.20951782054583656);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3237523099999984,0.20951782054583656) -- (2.3375022999999984,0.20665666809514757);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3375022999999984,0.20665666809514757) -- (2.3512522899999984,0.203834587229514);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3512522899999984,0.203834587229514) -- (2.3650022799999983,0.20105104439164206);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3650022799999983,0.20105104439164206) -- (2.3787522699999983,0.198305513310438);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3787522699999983,0.198305513310438) -- (2.3925022599999983,0.1955974749015086);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.3925022599999983,0.1955974749015086) -- (2.4062522499999983,0.1929264171690204);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4062522499999983,0.1929264171690204) -- (2.4200022399999983,0.19029183510889902);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4200022399999983,0.19029183510889902) -- (2.4337522299999983,0.18769323061335055);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4337522299999983,0.18769323061335055) -- (2.4475022199999983,0.18513011237668658);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4475022199999983,0.18513011237668658) -- (2.4612522099999983,0.18260199580243552);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4612522099999983,0.18260199580243552) -- (2.4750021999999983,0.18010840291172223);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4750021999999983,0.18010840291172223) -- (2.4887521899999983,0.1776488622528988);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.4887521899999983,0.1776488622528988) -- (2.5025021799999982,0.17522290881240948);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.5025021799999982,0.17522290881240948) -- (2.5162521699999982,0.17283008392687285);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.5162521699999982,0.17283008392687285) -- (2.5300021599999982,0.17046993519636439);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.5300021599999982,0.17046993519636439) -- (2.543752149999998,0.16814201639888354);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.543752149999998,0.16814201639888354) -- (2.557502139999998,0.1658458874059886);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.557502139999998,0.1658458874059886) -- (2.571252129999998,0.16358111409958373);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.571252129999998,0.16358111409958373) -- (2.585002119999998,0.16134726828984236);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.585002119999998,0.16134726828984236) -- (2.598752109999998,0.1591439276342514);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.598752109999998,0.1591439276342514) -- (2.612502099999998,0.15697067555776084);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.612502099999998,0.15697067555776084) -- (2.626252089999998,0.15482710117402418);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.626252089999998,0.15482710117402418) -- (2.640002079999998,0.15271279920771377);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.640002079999998,0.15271279920771377) -- (2.653752069999998,0.15062736991789763);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.653752069999998,0.15062736991789763) -- (2.667502059999998,0.14857041902246224);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.667502059999998,0.14857041902246224) -- (2.681252049999998,0.14654155762356746);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.681252049999998,0.14654155762356746) -- (2.695002039999998,0.14454040213411962);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.695002039999998,0.14454040213411962) -- (2.708752029999998,0.14256657420524835);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.708752029999998,0.14256657420524835) -- (2.722502019999998,0.1406197006547742);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.722502019999998,0.1406197006547742) -- (2.736252009999998,0.13869941339665265);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.736252009999998,0.13869941339665265) -- (2.750001999999998,0.1368053493713821);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.750001999999998,0.1368053493713821) -- (2.763751989999998,0.13493715047736174);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.763751989999998,0.13493715047736174) -- (2.777501979999998,0.133094463503187);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.777501979999998,0.133094463503187) -- (2.791251969999998,0.13127694006086973);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.791251969999998,0.13127694006086973) -- (2.805001959999998,0.12948423651997004);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.805001959999998,0.12948423651997004) -- (2.818751949999998,0.1277160139426277);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.818751949999998,0.1277160139426277) -- (2.832501939999998,0.12597193801948092);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.832501939999998,0.12597193801948092) -- (2.846251929999998,0.12425167900645999);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.846251929999998,0.12425167900645999) -- (2.860001919999998,0.1225549116624441);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.860001919999998,0.1225549116624441) -- (2.873751909999998,0.1208813151877697);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.873751909999998,0.1208813151877697) -- (2.887501899999998,0.11923057316357835);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.887501899999998,0.11923057316357835) -- (2.901251889999998,0.11760237349199291);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.901251889999998,0.11760237349199291) -- (2.915001879999998,0.1159964083371108);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.915001879999998,0.1159964083371108) -- (2.928751869999998,0.1144123740668028);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.928751869999998,0.1144123740668028) -- (2.942501859999998,0.11284997119530689);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.942501859999998,0.11284997119530689) -- (2.956251849999998,0.11130890432660587);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.956251849999998,0.11130890432660587) -- (2.970001839999998,0.10978888209857825);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.970001839999998,0.10978888209857825) -- (2.983751829999998,0.1082896171279118);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.983751829999998,0.1082896171279118) -- (2.997501819999998,0.10681082595576939);
|
||||
\draw[line width=2.pt,color=qqwuqq] (2.997501819999998,0.10681082595576939) -- (3.011251809999998,0.10535222899419681);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.011251809999998,0.10535222899419681) -- (3.025001799999998,0.10391355047326237);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.025001799999998,0.10391355047326237) -- (3.038751789999998,0.10249451838891838);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.038751789999998,0.10249451838891838) -- (3.052501779999998,0.10109486445157471);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.052501779999998,0.10109486445157471) -- (3.066251769999998,0.09971432403537457);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.066251769999998,0.09971432403537457) -- (3.080001759999998,0.09835263612816292);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.080001759999998,0.09835263612816292) -- (3.093751749999998,0.09700954328213814);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.093751749999998,0.09700954328213814) -- (3.107501739999998,0.09568479156517767);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.107501739999998,0.09568479156517767) -- (3.121251729999998,0.09437813051282828);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.121251729999998,0.09437813051282828) -- (3.1350017199999978,0.09308931308095189);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1350017199999978,0.09308931308095189) -- (3.1487517099999978,0.09181809559901817);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1487517099999978,0.09181809559901817) -- (3.1625016999999978,0.0905642377240349);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1625016999999978,0.0905642377240349) -- (3.1762516899999977,0.08932750239510752);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1762516899999977,0.08932750239510752) -- (3.1900016799999977,0.0881076557886191);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.1900016799999977,0.0881076557886191) -- (3.2037516699999977,0.08690446727402246);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2037516699999977,0.08690446727402246) -- (3.2175016599999977,0.08571770937023597);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2175016599999977,0.08571770937023597) -- (3.2312516499999977,0.08454715770263477);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2312516499999977,0.08454715770263477) -- (3.2450016399999977,0.08339259096062936);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2450016399999977,0.08339259096062936) -- (3.2587516299999977,0.08225379085582342);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2587516299999977,0.08225379085582342) -- (3.2725016199999977,0.08113054208074315);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2725016199999977,0.08113054208074315) -- (3.2862516099999977,0.08002263226813003);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.2862516099999977,0.08002263226813003) -- (3.3000015999999976,0.07892985195078965);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3000015999999976,0.07892985195078965) -- (3.3137515899999976,0.07785199452198867);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3137515899999976,0.07785199452198867) -- (3.3275015799999976,0.07678885619639272);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3275015799999976,0.07678885619639272) -- (3.3412515699999976,0.07574023597153767);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3412515699999976,0.07574023597153767) -- (3.3550015599999976,0.07470593558982709);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3550015599999976,0.07470593558982709) -- (3.3687515499999976,0.07368575950104858);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3687515499999976,0.07368575950104858) -- (3.3825015399999976,0.07267951482540208);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3825015399999976,0.07267951482540208) -- (3.3962515299999976,0.071687011317033);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.3962515299999976,0.071687011317033) -- (3.4100015199999976,0.07070806132806333);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4100015199999976,0.07070806132806333) -- (3.4237515099999976,0.06974247977311393);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4237515099999976,0.06974247977311393) -- (3.4375014999999975,0.06879008409431144);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4375014999999975,0.06879008409431144) -- (3.4512514899999975,0.06785069422677278);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4512514899999975,0.06785069422677278) -- (3.4650014799999975,0.06692413256456128);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4650014799999975,0.06692413256456128) -- (3.4787514699999975,0.06601022392710751);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4787514699999975,0.06601022392710751) -- (3.4925014599999975,0.06510879552608873);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.4925014599999975,0.06510879552608873) -- (3.5062514499999975,0.06421967693276065);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5062514499999975,0.06421967693276065) -- (3.5200014399999975,0.0633427000457353);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5200014399999975,0.0633427000457353) -- (3.5337514299999975,0.062477699059198866);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5337514299999975,0.062477699059198866) -- (3.5475014199999975,0.061624510431563584);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5475014199999975,0.061624510431563584) -- (3.5612514099999975,0.06078297285454777);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5612514099999975,0.06078297285454777) -- (3.5750013999999974,0.05995292722267797);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5750013999999974,0.05995292722267797) -- (3.5887513899999974,0.059134216603207695);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.5887513899999974,0.059134216603207695) -- (3.6025013799999974,0.058326686206446876);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6025013799999974,0.058326686206446876) -- (3.6162513699999974,0.05753018335649653);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6162513699999974,0.05753018335649653) -- (3.6300013599999974,0.05674455746238307);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6300013599999974,0.05674455746238307) -- (3.6437513499999974,0.05596965998958676);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6437513499999974,0.05596965998958676) -- (3.6575013399999974,0.055205344431959034);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6575013399999974,0.055205344431959034) -- (3.6712513299999974,0.05445146628402329);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6712513299999974,0.05445146628402329) -- (3.6850013199999974,0.05370788301365388);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6850013199999974,0.05370788301365388) -- (3.6987513099999973,0.05297445403512833);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.6987513099999973,0.05297445403512833) -- (3.7125012999999973,0.05225104068254737);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7125012999999973,0.05225104068254737) -- (3.7262512899999973,0.05153750618361813);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7262512899999973,0.05153750618361813) -- (3.7400012799999973,0.050833715633795185);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7400012799999973,0.050833715633795185) -- (3.7537512699999973,0.05013953597077487);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7537512699999973,0.05013953597077487) -- (3.7675012599999973,0.04945483594933775);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7675012599999973,0.04945483594933775) -- (3.7812512499999973,0.0487794861165348);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7812512499999973,0.0487794861165348) -- (3.7950012399999973,0.048113358787212276);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.7950012399999973,0.048113358787212276) -- (3.8087512299999973,0.04745632801987096);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8087512299999973,0.04745632801987096) -- (3.8225012199999973,0.046808269592854966);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8225012199999973,0.046808269592854966) -- (3.8362512099999972,0.04616906098086576);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8362512099999972,0.04616906098086576) -- (3.8500011999999972,0.04553858133179689);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8500011999999972,0.04553858133179689) -- (3.8637511899999972,0.04491671144388505);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.8637511899999972,0.04491671144388505) -- (3.877501179999997,0.04430333374317321);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.877501179999997,0.04430333374317321) -- (3.891251169999997,0.043698332261281406);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.891251169999997,0.043698332261281406) -- (3.905001159999997,0.04310159261348121);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.905001159999997,0.04310159261348121) -- (3.918751149999997,0.04251300197706953);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.918751149999997,0.04251300197706953) -- (3.932501139999997,0.0419324490700378);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.932501139999997,0.0419324490700378) -- (3.946251129999997,0.04135982413003236);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.946251129999997,0.04135982413003236) -- (3.960001119999997,0.04079501889360227);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.960001119999997,0.04079501889360227) -- (3.973751109999997,0.040237926575730436);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.973751109999997,0.040237926575730436) -- (3.987501099999997,0.0396884418496443);
|
||||
\draw[line width=2.pt,color=qqwuqq] (3.987501099999997,0.0396884418496443) -- (4.001251089999998,0.03914646082690214);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.001251089999998,0.03914646082690214) -- (4.015001079999998,0.03861188103775151);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.015001079999998,0.03861188103775151) -- (4.0287510699999975,0.03808460141175566);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0287510699999975,0.03808460141175566) -- (4.0425010599999975,0.037564522258684674);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0425010599999975,0.037564522258684674) -- (4.0562510499999975,0.037051545249667514);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0562510499999975,0.037051545249667514) -- (4.0700010399999975,0.03654557339860146);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0700010399999975,0.03654557339860146) -- (4.0837510299999975,0.036046511043815434);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0837510299999975,0.036046511043815434) -- (4.0975010199999975,0.035554263829983626);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.0975010199999975,0.035554263829983626) -- (4.1112510099999975,0.035068738690286275);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1112510099999975,0.035068738690286275) -- (4.1250009999999975,0.034589843828813936);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1250009999999975,0.034589843828813936) -- (4.1387509899999975,0.03411748870321206);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1387509899999975,0.03411748870321206) -- (4.1525009799999975,0.03365158400756259);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1525009799999975,0.03365158400756259) -- (4.1662509699999974,0.03319204165549931);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.1662509699999974,0.03319204165549931) -- (4.180000959999997,0.03273877476355383);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.180000959999997,0.03273877476355383) -- (4.193750949999997,0.03229169763472886);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.193750949999997,0.03229169763472886) -- (4.207500939999997,0.03185072574229597);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.207500939999997,0.03185072574229597) -- (4.221250929999997,0.03141577571381447);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.221250929999997,0.03141577571381447) -- (4.235000919999997,0.030986765315368616);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.235000919999997,0.030986765315368616) -- (4.248750909999997,0.030563613436020022);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.248750909999997,0.030563613436020022) -- (4.262500899999997,0.030146240072472418);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.262500899999997,0.030146240072472418) -- (4.276250889999997,0.029734566313945787);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.276250889999997,0.029734566313945787) -- (4.290000879999997,0.0293285143272571);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.290000879999997,0.0293285143272571) -- (4.303750869999997,0.028928007342104774);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.303750869999997,0.028928007342104774) -- (4.317500859999997,0.028532969636554065);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.317500859999997,0.028532969636554065) -- (4.331250849999997,0.028143326522720693);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.331250849999997,0.028143326522720693) -- (4.345000839999997,0.027759004332649957);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.345000839999997,0.027759004332649957) -- (4.358750829999997,0.0273799304043887);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.358750829999997,0.0273799304043887) -- (4.372500819999997,0.027006033068247438);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.372500819999997,0.027006033068247438) -- (4.386250809999997,0.026637241633250146);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.386250809999997,0.026637241633250146) -- (4.400000799999997,0.026273486373769032);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.400000799999997,0.026273486373769032) -- (4.413750789999997,0.02591469851634185);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.413750789999997,0.02591469851634185) -- (4.427500779999997,0.025560810226669246);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.427500779999997,0.025560810226669246) -- (4.441250769999997,0.02521175459678963);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.441250769999997,0.02521175459678963) -- (4.455000759999997,0.02486746563242923);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.455000759999997,0.02486746563242923) -- (4.468750749999997,0.024527878240524856);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.468750749999997,0.024527878240524856) -- (4.482500739999997,0.024192928216917077);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.482500739999997,0.024192928216917077) -- (4.496250729999997,0.02386255223421143);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.496250729999997,0.02386255223421143) -- (4.510000719999997,0.023536687829805447);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.510000719999997,0.023536687829805447) -- (4.523750709999997,0.02321527339407912);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.523750709999997,0.02321527339407912) -- (4.537500699999997,0.022898248158746682);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.537500699999997,0.022898248158746682) -- (4.551250689999997,0.022585552185367414);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.551250689999997,0.022585552185367414) -- (4.565000679999997,0.02227712635401341);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.565000679999997,0.02227712635401341) -- (4.578750669999997,0.021972912352092033);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.578750669999997,0.021972912352092033) -- (4.592500659999997,0.021672852663321033);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.592500659999997,0.021672852663321033) -- (4.606250649999997,0.02137689055685421);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.606250649999997,0.02137689055685421) -- (4.620000639999997,0.021084970076555628);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.620000639999997,0.021084970076555628) -- (4.633750629999997,0.02079703603042019);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.633750629999997,0.02079703603042019) -- (4.647500619999997,0.020513033980138807);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.647500619999997,0.020513033980138807) -- (4.661250609999997,0.02023291023080599);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.661250609999997,0.02023291023080599) -- (4.675000599999997,0.019956611820767987);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.675000599999997,0.019956611820767987) -- (4.688750589999997,0.019684086511609633);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.688750589999997,0.019684086511609633) -- (4.702500579999997,0.019415282778277816);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.702500579999997,0.019415282778277816) -- (4.716250569999997,0.01915014979933994);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.716250569999997,0.01915014979933994) -- (4.730000559999997,0.01888863744737532);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.730000559999997,0.01888863744737532) -- (4.743750549999997,0.018630696279497854);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.743750549999997,0.018630696279497854) -- (4.757500539999997,0.018376277528008092);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.757500539999997,0.018376277528008092) -- (4.771250529999997,0.01812533309117295);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.771250529999997,0.01812533309117295) -- (4.785000519999997,0.01787781552413135);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.785000519999997,0.01787781552413135) -- (4.798750509999997,0.01763367802992406);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.798750509999997,0.01763367802992406) -- (4.812500499999997,0.017392874450645985);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.812500499999997,0.017392874450645985) -- (4.826250489999997,0.017155359258719367);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.826250489999997,0.017155359258719367) -- (4.840000479999997,0.016921087548286043);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.840000479999997,0.016921087548286043) -- (4.853750469999997,0.016690015026717357);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.853750469999997,0.016690015026717357) -- (4.867500459999997,0.016462098006239944);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.867500459999997,0.016462098006239944) -- (4.881250449999997,0.01623729339567589);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.881250449999997,0.01623729339567589) -- (4.895000439999997,0.016015558692295703);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.895000439999997,0.016015558692295703) -- (4.908750429999997,0.015796851973782514);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.908750429999997,0.015796851973782514) -- (4.922500419999997,0.01558113189030603);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.922500419999997,0.01558113189030603) -- (4.936250409999997,0.015368357656704718);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.936250409999997,0.015368357656704718) -- (4.950000399999997,0.015158489044774756);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.950000399999997,0.015158489044774756) -- (4.963750389999997,0.01495148637566427);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.963750389999997,0.01495148637566427) -- (4.977500379999997,0.014747310512371457);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.977500379999997,0.014747310512371457) -- (4.991250369999997,0.014545922852345124);
|
||||
\draw[line width=2.pt,color=qqwuqq] (4.991250369999997,0.014545922852345124) -- (5.005000359999997,0.0143472853201863);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.005000359999997,0.0143472853201863) -- (5.018750349999997,0.0141513603604495);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.018750349999997,0.0141513603604495) -- (5.032500339999997,0.013958110930542294);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.032500339999997,0.013958110930542294) -- (5.046250329999997,0.013767500493721845);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.046250329999997,0.013767500493721845) -- (5.060000319999997,0.013579493012187088);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.060000319999997,0.013579493012187088) -- (5.073750309999997,0.01339405294026522);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.073750309999997,0.01339405294026522) -- (5.087500299999997,0.013211145217691261);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.087500299999997,0.013211145217691261) -- (5.101250289999997,0.013030735262979385);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.101250289999997,0.013030735262979385) -- (5.115000279999997,0.012852788966884745);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.115000279999997,0.012852788966884745) -- (5.128750269999997,0.012677272685954618);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.128750269999997,0.012677272685954618) -- (5.142500259999997,0.012504153236167595);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.142500259999997,0.012504153236167595) -- (5.156250249999997,0.012333397886659629);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.156250249999997,0.012333397886659629) -- (5.170000239999997,0.012164974353535777);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.170000239999997,0.012164974353535777) -- (5.183750229999997,0.01199885079376644);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.183750229999997,0.01199885079376644) -- (5.197500219999997,0.011834995799166942);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.197500219999997,0.011834995799166942) -- (5.211250209999997,0.011673378390459349);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.211250209999997,0.011673378390459349) -- (5.225000199999997,0.01151396801141536);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.225000199999997,0.01151396801141536) -- (5.238750189999997,0.011356734523079177);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.238750189999997,0.011356734523079177) -- (5.252500179999997,0.011201648198069304);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.252500179999997,0.011201648198069304) -- (5.266250169999997,0.0110486797149581);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.266250169999997,0.0110486797149581) -- (5.280000159999997,0.010897800152728144);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.280000159999997,0.010897800152728144) -- (5.293750149999997,0.010748980985304265);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.293750149999997,0.010748980985304265) -- (5.307500139999997,0.010602194076160256);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.307500139999997,0.010602194076160256) -- (5.321250129999997,0.010457411672999233);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.321250129999997,0.010457411672999233) -- (5.335000119999997,0.010314606402506645);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.335000119999997,0.010314606402506645) -- (5.348750109999997,0.010173751265174936);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.348750109999997,0.010173751265174936) -- (5.3625000999999966,0.010034819630198867);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.3625000999999966,0.010034819630198867) -- (5.3762500899999965,0.009897785230440569);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.3762500899999965,0.009897785230440569) -- (5.3900000799999965,0.009762622157463333);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.3900000799999965,0.009762622157463333) -- (5.4037500699999965,0.00962930485663323);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4037500699999965,0.00962930485663323) -- (5.4175000599999965,0.009497808122287617);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4175000599999965,0.009497808122287617) -- (5.4312500499999965,0.009368107092969627);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4312500499999965,0.009368107092969627) -- (5.4450000399999965,0.009240177246727726);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4450000399999965,0.009240177246727726) -- (5.4587500299999965,0.009113994396479473);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4587500299999965,0.009113994396479473) -- (5.4725000199999965,0.008989534685438576);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4725000199999965,0.008989534685438576) -- (5.4862500099999965,0.008866774582604415);
|
||||
\draw[line width=2.pt,color=qqwuqq] (5.4862500099999965,0.008866774582604415) -- (5.4999999999999964,0.008745690878313134);
|
||||
\draw (0.9826971286425398,1.0091692065822461) node[anchor=north west] {$(\tau, 0.79\text{V})$};
|
||||
\draw (1.7132719478893085,0.5951090467957184) node[anchor=north west] {$(2\tau, 0.29\text{V})$};
|
||||
\draw (2.588565094705576,0.46352472684146245) node[anchor=north west] {$(3\tau, 0.11\text{V})$};
|
||||
\draw (3.592848810526346,0.35387112687958255) node[anchor=north west] {$(4\tau, 0.04\text{V})$};
|
||||
\draw (4.597132526347116,0.35387112687958255) node[anchor=north west] {$(5\tau, 0.01\text{V})$};
|
||||
\begin{scriptsize}
|
||||
\draw[color=qqwuqq] (0.14886523614914818,2.1083287262696615) node {$v_c$};
|
||||
\draw [fill=uuuuuu] (1.,0.7872620041068866) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (2.,0.2896175061263512) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (3.,0.10654432630722885) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (4.,0.03919546722189114) circle (2.0pt);
|
||||
\draw [fill=uuuuuu] (5.,0.0144192065780429) circle (2.0pt);
|
||||
\end{scriptsize}
|
||||
\end{axis}
|
||||
\end{tikzpicture}
|
BIN
Øvinger/Ø1/oppgave4e.ggb
Normal file
BIN
Øvinger/Ø1/Øving1.pdf
Normal file
337
Øvinger/Ø1/Øving1.tex
Normal file
@ -0,0 +1,337 @@
|
||||
\documentclass[11pt,largemargins, norsk]{homework}
|
||||
|
||||
\newcommand{\hwname}{Øyvind Skaaden}
|
||||
\newcommand{\hwemail}{oyvindps@ntnu.no}
|
||||
\newcommand{\hwtype}{Øving}
|
||||
\newcommand{\hwnum}{1}
|
||||
\newcommand{\hwclass}{TTT4260}
|
||||
\newcommand{\hwlecture}{}
|
||||
\newcommand{\hwsection}{}
|
||||
|
||||
\newcommand*{\eq}{=}
|
||||
|
||||
\renewcommand{\questiontype}{Oppgave}
|
||||
\newcommand{\figref}[1]{Figur \ref{#1}}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
\question
|
||||
\begin{alphaparts}
|
||||
\item Vi har krets \ref{circ:1a} som vist under med verdiene $R_1 = 1\text{k}\Omega $, $ C_1 = 100\mu\text{F} $ og $V = 5\text{V} $.
|
||||
|
||||
\begin{figure} [h]
|
||||
\centering
|
||||
\begin{circuitikz}
|
||||
|
||||
\draw
|
||||
(0,3) to [V, l=$V$] (0,0)
|
||||
(0,3) to [closing switch, l = $t\eq0$ ] (3,3)
|
||||
to [R, l=$R_1$] (6,3)
|
||||
to [C, l=$C_1$] (6,0) -- (0,0);
|
||||
\end{circuitikz}
|
||||
\caption{Krets til oppgave 1}
|
||||
\label{circ:1a}
|
||||
\end{figure}
|
||||
|
||||
$\tau$ er gitt ved
|
||||
|
||||
$$ \tau = R \cdot C $$
|
||||
|
||||
Da er $\tau$ i denne kretsen er da
|
||||
|
||||
$$ \tau = R_1 \cdot C_1 = 1\text{k}\Omega \cdot 100\mu\text{F} = 100\text{ms}$$
|
||||
|
||||
En funksjon for spenningen over kondensatoren er da
|
||||
|
||||
$$ v_c(t) = 5 \text{V} \cdot ( 1 - e ^ {\frac{-t}{100\text{ms}}}) $$
|
||||
\pagebreak
|
||||
\begin{figure}[!ht]
|
||||
\centering
|
||||
\input{grafer/condisO1a}
|
||||
\caption{Utvikling av spenning over kondensator $v_c$}
|
||||
\label{graph:kondensator1}
|
||||
\end{figure}
|
||||
|
||||
|
||||
\item
|
||||
|
||||
Etter å ha koblet opp kretsen ser vi at spenningen (se \figref{graph:1b}) over kondensatoren når $63\%$ eller $3.16$V etter $\Delta x = 94.83$ms.
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=\textwidth]{TauMaaling.png}
|
||||
\caption{Spennigsutvikling av krets i oppgave 1, $\tau$ er lik $\Delta x$}
|
||||
\label{graph:1b}
|
||||
\end{figure}
|
||||
\pagebreak
|
||||
|
||||
|
||||
|
||||
\item
|
||||
|
||||
Når det skjer utladning av kondensatoren har ikke strømmen noe sted å gå, eneste er å gå gjennom kondensatoren litt og litt.
|
||||
|
||||
\end{alphaparts}
|
||||
|
||||
|
||||
\question
|
||||
For å løse kretsen i oppgave 2, vist i kretsen \figref{circ:krets2} under.
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\begin{circuitikz}
|
||||
\draw
|
||||
(-6,3) to [V, v=V] ++(0,-3)
|
||||
(-6,3) to [opening switch, l=$S_1$] ++(3,0)
|
||||
to [R, l=$R_1$] +(3,0) to [short,-*] ++(0,0)
|
||||
(-6,0) to [short,-*] (0,0)
|
||||
(0,0) to [R, l=$R_2$] (0,3)
|
||||
(0,0) -- (2,0) to [short,-*] (2,0) to [R, l=$R_3$] (2,3) to [short,-*] ++(0,0) -- (0,3)
|
||||
(2,3) to [R, l=$R_4$] (6,3)
|
||||
to [C, l=$C_1$, v_=$v_c$] (6,0) -- (2,0);
|
||||
\end{circuitikz}
|
||||
\caption{Krets i oppgave 2}
|
||||
\label{circ:krets2}
|
||||
\end{figure}
|
||||
|
||||
|
||||
Vi må finne spenningen som ligger over $R_2||R_3$ for å finne startspenningen på $C_1$.
|
||||
|
||||
Begynner med å finne $$R_2||R_3 = \frac{470\ohm \cdot 220\ohm}{470\ohm + 220\ohm} = \frac{10340}{69} \ohm $$
|
||||
|
||||
$$ v_{R_2||R_3} = \frac{V}{R_1 + R_2||R_3} \cdot (R_2||R_3) = \frac{5\text{V}}{200\ohm + \frac{10340}{69} \ohm} \cdot \frac{10340}{69} \ohm = \frac{2585}{1207}\text{V} \approx 2.14\text{V} $$
|
||||
|
||||
Dette er da startspenningen på $c_1$.
|
||||
|
||||
Når bryteren brytes, vi vi få en forenklet krets, som vist i \figref{circ:oppgave2}
|
||||
|
||||
\begin{figure}
|
||||
\centering
|
||||
\begin{circuitikz}
|
||||
\draw
|
||||
(0,0) to [R, l=$R_2$] (0,3)
|
||||
(0,0) -- (2,0) to [short,-*] (2,0) to [R, l=$R_3$] (2,3) to [short,-*] ++(0,0) -- (0,3)
|
||||
(2,3) to [R, l=$R_4$] (6,3)
|
||||
to [C, l=$C_1$, v_=$v_c$] (6,0) -- (2,0);
|
||||
\end{circuitikz}
|
||||
\caption{Foreklet krets i oppgave 2}
|
||||
\label{circ:oppgave2}
|
||||
\end{figure}
|
||||
|
||||
Vi kan da regne ut $R$ i kretsen
|
||||
|
||||
$$ R = R_4 + R_2||R_3 = 300\ohm + \frac{10340}{69} \ohm = \frac{31040}{69}\ohm \approx 449.9\ohm $$
|
||||
|
||||
$\tau$ er da gitt ved $\tau = R \cdot C_1 = = 4.5\mu\text{s}$.
|
||||
|
||||
Funksjonen for spenningen over $v_c$:
|
||||
|
||||
$$ v_c(t) = 2.14e^{\frac{-t}{4.5\mu\text{s}}} $$
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\input{grafer/condisO2}
|
||||
\caption{Graf for oppgave 2}
|
||||
\label{graph:oppg2}
|
||||
\end{figure}
|
||||
|
||||
\clearpage
|
||||
\question
|
||||
\begin{alphaparts}
|
||||
\item
|
||||
Vi har kretsen som gitt i oppgave 3, men tegnet på en forenklet måte i \figref{circ:3a1}.
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\begin{circuitikz}
|
||||
\draw
|
||||
(0,3) to [V, v_=V] (0,0)
|
||||
(0,3) to [R, l=$R_1\eq1\text{k}\ohm$] (3,3)
|
||||
to [closing switch, l=$S_1$] (5,3)
|
||||
to [R, l_=$R_2\eq1\text{k}\ohm$] (5,0) -- (0,0)
|
||||
(5,3) to [short,*-] ++(2,0)
|
||||
to [C, l=$C_1\eq100\mu\text{F}$] ++(0,-3)
|
||||
to [short,-*] (5,0);
|
||||
\end{circuitikz}
|
||||
\caption{Forenklet krets til oppgave 3a}
|
||||
\label{circ:3a1}
|
||||
\end{figure}
|
||||
|
||||
|
||||
Vi skriver om til en Norton ekvivalent ved å regne ut $I_n = \tfrac{V}{R_1}$
|
||||
|
||||
$$ I_n = \frac{1\text{V}}{1\text{k}\ohm} = 1\text{mA} $$
|
||||
|
||||
Vi har da to like motstander i parallell. Siden de er like er den totale motstanden lik halvparten av den ene. Så
|
||||
$$ R_{eq} = 0.5\text{k}\ohm $$
|
||||
Vi regner deretter den nye kretsen tilbake til en thevenin-ekvivalent krets.
|
||||
|
||||
$$ V_{th} = I_n \cdot R_{eq} = 1\text{mA}\cdot 0.5\text{k}\ohm = 0.5\text{V}$$
|
||||
|
||||
Vi har da den nye kretsen under i \figref{circ:3a2}
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\begin{circuitikz}
|
||||
\draw
|
||||
(0,3) to [V, v_=V$_{th}$] (0,0)
|
||||
(0,3) to [R, l=$R_{eq}\eq0.5\text{k}\ohm$] ++(3,0)
|
||||
to [C, l=$C_1\eq100\mu\text{F}$, v=$v_{C_1}$] ++(0,-3)
|
||||
-- (0,0);
|
||||
\end{circuitikz}
|
||||
\caption{Thevenin-ekvivalent krets til oppgave 3a}
|
||||
\label{circ:3a2}
|
||||
\end{figure}
|
||||
|
||||
Det er da veldig lett å lage en funksjon som besrkiver spenningen, $v_{C_1}$, over $C_1$.
|
||||
|
||||
\begin{align*}
|
||||
v_{C_1}(t)&= V_{th}\left(1-e^\frac{-t}{R_{eq}C_1}\right) \\
|
||||
v_{C_1}(t)&= 0.5\text{V}\left(1-e^\frac{-t}{0.5\text{ms}}\right)\\
|
||||
v_{C_1}(t)&= 0.5\text{V}\left(1-e^\frac{-t}{\tau}\right)
|
||||
\end{align*}
|
||||
|
||||
\clearpage
|
||||
\item
|
||||
Etter $6\tau$ har kondensatoren nådd ``steady-state'', da er spenningen $v_{C_1} = V_{th} = 0.5\text{V}$. Når bryteren $S_2$ lukkes får vi en veldig lik krets som i opgpave 3a. Se \figref{circ:3b1}
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\begin{circuitikz}
|
||||
\draw
|
||||
(0,3) to [V, v_=V$\eq1\text{V}$] (0,0)
|
||||
(0,3) to [R, l=$R_1\eq1\text{k}\ohm$] (4,3)
|
||||
to [R, l_=$R_2\eq1\text{k}\ohm$] ++(0,-3) -- (0,0)
|
||||
(4,3) to [short,*-] ++(3,0)
|
||||
to [R, l_=$R_3\eq1\text{k}\ohm$] ++(0,-3)
|
||||
to [short,-*] (4,0)
|
||||
(7,3) to [short,*-] ++(3,0)
|
||||
to [C, l=$C_1\eq100\mu\text{F}$] ++(0,-3)
|
||||
to [short,-*] ++(-3,0);
|
||||
\end{circuitikz}
|
||||
\caption{Forenklet krets til oppgave 3a}
|
||||
\label{circ:3b1}
|
||||
\end{figure}
|
||||
|
||||
Vi gjør det samme som sist, gjør om til norton-ekvivalent, samler motstandene og går tilbake til en thevenin-ekvivalent.
|
||||
|
||||
Siden det her er tre like motstander i parallell er den totale motstanden lik $1/3$ av en av motstandene. Vi får da $V_{th} = \frac{1}{3}\text{V}=\approx 333.3\text{mV}$ og $R_{eq} \approx 333.3\ohm$.
|
||||
|
||||
Kretsen ser da ut som \figref{circ:3b2}
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\begin{circuitikz}
|
||||
\draw
|
||||
(0,3) to [V, v_=V$_{th}\approx 333.3\text{mV}$] (0,0)
|
||||
(0,3) to [R, l=$R_{eq}\approx 333.3\ohm$] ++(3,0)
|
||||
to [C, l=$C_1\eq100\mu\text{F}$, v=$v_{C_1}$] ++(0,-3)
|
||||
-- (0,0);
|
||||
\end{circuitikz}
|
||||
\caption{Thevenin-ekvivalent krets til oppgave 3a}
|
||||
\label{circ:3b2}
|
||||
\end{figure}
|
||||
|
||||
Da er det enkelt å sette opp likningen for spenningen $v_{C_1}$
|
||||
Vi setter $\tau = 1$ for at det skal være lettere å lese grafene. Grafene ser helt like ut men tidsenheten blir da $\tau$ i steden for ms.
|
||||
|
||||
\begin{align*}
|
||||
v_{C_1}(t) &= V_{th}+\left[v_{C_1}(t_0) - V_{th} \right]e^{-\frac{t-t_0}{R_{eq}C_1}}\\
|
||||
&\downarrow \\
|
||||
v_{C_1}(t) &= \frac{1}{3}\text{V} + \frac{1}{6}\text{V} \cdot e^{-\frac{t-6\tau}{\tau}}
|
||||
\end{align*}
|
||||
|
||||
En skisse av spenningsutviklingen kan sees i \figref{fig:3b}.
|
||||
|
||||
\pagebreak
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=\textwidth]{grafer/3b.png}
|
||||
\caption{Spenningen $V_{C_1}$ som graf, der $S_2$ lukkes etter $6\tau$}
|
||||
\label{fig:3b}
|
||||
\end{figure}
|
||||
|
||||
\item
|
||||
|
||||
For å lage en funksjon for kretsen når bryter $S_2$ lukkes når $t=0.5\tau$, tar vi utgangspunkt i funksjonen fra oppgave 3b og spenningen $v_{C_1}(0.5\tau)\approx \frac{1}{5}\text{V}$.
|
||||
|
||||
Funksjonen for spenningen over $C_1$ fra $t=0.5\tau$ blir da
|
||||
|
||||
\begin{align*}
|
||||
v_{C_1}(t) &= V_{th}+\left[v_{C_1}(t_0) - V_{th} \right]e^{-\frac{t-t_0}{R_{eq}C_1}}\\
|
||||
&\downarrow \\
|
||||
v_{C_1}(t) &=\frac{1}{3}\text{V}+\left[\frac{1}{5}\text{V} - \frac{1}{3}\text{V} \right]e^{-\frac{t-0.5\tau}{\tau}}\\
|
||||
v_{C_1}(t) &= \frac{1}{3}\text{V} - \frac{2}{15}\text{V} \cdot e^{-\frac{t-0.5\tau}{\tau}}
|
||||
\end{align*}
|
||||
|
||||
En skisse av spenningsutviklingen kan sees i \figref{fig:3c}.
|
||||
|
||||
\pagebreak
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=\textwidth]{grafer/3c.png}
|
||||
\caption{Spenningen $V_{C_1}$ som graf, der $S_2$ lukkes etter $0.5\tau$}
|
||||
\label{fig:3c}
|
||||
\end{figure}
|
||||
|
||||
\end{alphaparts}
|
||||
|
||||
\question
|
||||
\begin{alphaparts}
|
||||
\item
|
||||
Tidskonstanten $\tau$ er gitt ved
|
||||
|
||||
$$ \tau = R \cdot C $$
|
||||
|
||||
I denne kretsen vil $\tau$ bli følgende.
|
||||
|
||||
$$ \tau = 1\text{k}\ohm \cdot 1\text{nF} = 1\mu\text{s} $$
|
||||
|
||||
\pagebreak
|
||||
\item
|
||||
Graf ved $f=5$kHz
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=\textwidth]{Oppgave4Python/4b.png}
|
||||
\caption{Graf for kretsen i oppgave 4, ved $f=5\text{kHz}$}
|
||||
\label{graph:4b}
|
||||
\end{figure}
|
||||
\item
|
||||
Graf ved $f=30$kHz
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=\textwidth]{Oppgave4Python/4c2.png}
|
||||
\caption{Graf for kretsen i oppgave 4, ved $f=30\text{kHz}$}
|
||||
\label{graph:4c}
|
||||
\end{figure}
|
||||
|
||||
\item
|
||||
|
||||
Etter oppkobling av kretsen ser vi at kondensatoren oppfører seg veldig likt som regnet ut i oppgave 4b. 4c ($30$kHz) er litt mer ulik da kondensatoren lades og utlades litt raskere enn beregnet. Den når litt høyere og litt lavere spenninger enn beregnet.
|
||||
|
||||
\pagebreak
|
||||
\item
|
||||
Vi ser fra \figref{graph:4b} at firkantpulsen er $1$V i $10\tau = 10 \cdot 10\mu\text{s} = 100\mu\text{s}$.
|
||||
|
||||
Vi ønsker da at likningen $v_{C_1}(100\mu\text{s}) = 0.8$V. Vi setter kondensatorverdien konstant og regner ut motstanden $R$ i kretsen.
|
||||
|
||||
\begin{align*}
|
||||
v_{C_1}(t) &= V_1+\left[v_{C_1}(t_0) - V_1 \right]e^{-\frac{t-t_0}{R\cdot C_1}}\\
|
||||
0.8\text{V} &= 1\text{V}\cdot\left(1-e^{-\frac{100\mu\text{s}}{R\cdot10\text{nF}}}\right) \\
|
||||
R &= \frac{10000}{\ln 5}\\
|
||||
R&\approx 6213 \ohm
|
||||
\end{align*}
|
||||
|
||||
Tester dette og ser at den lader seg litt for mye opp.
|
||||
|
||||
Etter å har justert til $6300\ohm$ ser det ut som at spenningen når ca $0.8$V på firkantpulsen.
|
||||
|
||||
|
||||
\end{alphaparts}
|
||||
|
||||
|
||||
\end{document}
|
BIN
Øvinger/Ø2/LF_Ø2.pdf
Normal file
BIN
Øvinger/Ø2/bilder/oppg2_a1.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
Øvinger/Ø2/bilder/oppg2_a2.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
Øvinger/Ø2/grafOppg1.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
Øvinger/Ø2/grafoppg1.ods
Normal file
BIN
Øvinger/Ø2/Øving2.pdf
Normal file
128
Øvinger/Ø2/Øving2.tex
Normal file
@ -0,0 +1,128 @@
|
||||
\documentclass[11pt,largemargins, norsk]{homework}
|
||||
|
||||
\newcommand{\hwname}{Øyvind Skaaden}
|
||||
\newcommand{\hwemail}{oyvindps@ntnu.no}
|
||||
\newcommand{\hwtype}{Øving}
|
||||
\newcommand{\hwnum}{2}
|
||||
\newcommand{\hwclass}{TTT4260}
|
||||
\newcommand{\hwlecture}{}
|
||||
\newcommand{\hwsection}{}
|
||||
|
||||
\renewcommand{\questiontype}{Oppgave}
|
||||
\newcommand{\figref}[1]{Figur \ref{#1}}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
\question
|
||||
\begin{alphaparts}
|
||||
\item
|
||||
Når $A$ er logisk høy, er $C$ logisk lav. Når $A$ er logisk lav, er $C$ logisk høy.
|
||||
|
||||
\item
|
||||
|
||||
Kretsen i oppgave 1 er en inverter fordi den tar inn et logisk signal, og sender ut det motsatte ut etter kretsen. Dersom inngangen er 1 er utgangen 0, og når inngangen er 0 er utgangen 1.
|
||||
|
||||
\item
|
||||
Når det er $0$V på inngangen $A$ er det $5$V på utgangen $C$.
|
||||
|
||||
\item Vi gjør målinger på kretsen, setter spenning på $A$ lik $v_A $ og måler spenningen $v_C $ på utgangen $C$. 43
|
||||
|
||||
\begin{table}[h]
|
||||
\centering
|
||||
\begin{tabular}{|c|c|}
|
||||
\hline
|
||||
$v_A$ & $v_C $ \\ \hline
|
||||
\hline
|
||||
0 & 4.98 \\
|
||||
0.5 & 4.95 \\
|
||||
1 & 4.95 \\
|
||||
1.5 & 4.95 \\
|
||||
2 & 4.93 \\
|
||||
2.1 & 4.89 \\
|
||||
2.2 & 4.79 \\
|
||||
2.3 & 4.56 \\
|
||||
2.4 & 4.13 \\
|
||||
2.5 & 3.4 \\
|
||||
2.6 & 2.32 \\
|
||||
2.7 & 1.11 \\
|
||||
2.8 & 0.23 \\
|
||||
2.9 & 0.12 \\
|
||||
3 & 0.08 \\
|
||||
3.5 & 0.03 \\
|
||||
4 & 0.02 \\
|
||||
4.5 & 0.018 \\
|
||||
5 & 0.014 \\
|
||||
\hline
|
||||
\end{tabular}
|
||||
\caption{Målte spenninger på $C$, alle verdier har enhet V}
|
||||
\label{tab:oppg1}
|
||||
\end{table}
|
||||
|
||||
\begin{figure}[h!]
|
||||
\centering
|
||||
\includegraphics[width=\textwidth]{grafOppg1.png}
|
||||
\caption{Spenning $v_C$ som funksjon av $v_A$}
|
||||
\label{graph:oppg1}
|
||||
\end{figure}
|
||||
|
||||
\item
|
||||
Vi ser i \figref{graph:oppg1} at transistoren begynner å lede rundt $2.2$V til $2.3$V. Den er som en kortslutning ved ca $3.0$V.
|
||||
|
||||
\item
|
||||
Dioden begynner å lyse når $A$ er ca $2$V. Da er $C$ lik $2.42$V.
|
||||
|
||||
\end{alphaparts}
|
||||
|
||||
\question
|
||||
\begin{alphaparts}
|
||||
\item
|
||||
|
||||
Her er begge grafene skisserte.
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=\textwidth]{bilder/oppg2_a1.png}
|
||||
\caption{Graf ved $T=10\tau$}
|
||||
\label{graph:2a1}
|
||||
\end{figure}
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=\textwidth]{bilder/oppg2_a2.png}
|
||||
\caption{Graf ved $T=2\tau$}
|
||||
\label{graph:2a2}
|
||||
\end{figure}
|
||||
|
||||
\clearpage
|
||||
\item
|
||||
|
||||
Vi ønsker at kretsen skal nå $2$V. Vi ønsker å finne tiden det tar.
|
||||
|
||||
$$ 2\text{V} = 5V(1-e^{\frac{-t}{\tau}})$$
|
||||
Som gjør at
|
||||
$$ t = \frac{1}{2}\tau $$
|
||||
|
||||
Vi vet også at perioden er $T=1$ms. Vi vet også at $v_1 $ er $5$V i $1/2$ periode. Som betyr at
|
||||
$$ \frac{1}{2}T = \frac{1}{2}\tau \Leftrightarrow \tau = 1\text{ms}$$
|
||||
|
||||
Vi må lage $\tau$. Velger kondensator lik $100\mu$F.
|
||||
|
||||
$$ \frac{1\text{ms}}{100\mu\text{F}} = 10\ohm$$
|
||||
|
||||
|
||||
\item
|
||||
|
||||
Kobler opp kretsen og oppladning når maksimalt $2$V.
|
||||
|
||||
\item
|
||||
Ved frekvensen $1$kHz vil dioden lyse, og samme for frekvenser over.
|
||||
|
||||
For lave frekvenser, feks $1$Hz vil dioden blinke med frekvensen $1$Hz.
|
||||
|
||||
\item
|
||||
Dioden lyser hele tiden egentlig. Ved veldig lave frekvenser blinker dioden, desto høyere frekvenser jo serkere lys, men veldig lite forskjell.
|
||||
|
||||
|
||||
|
||||
\end{alphaparts}
|
||||
\end{document}
|
BIN
Øvinger/Ø3/ESDAI_ø3.pdf
Normal file
BIN
Øvinger/Ø3/LF_Ø3.pdf
Normal file
8193
Øvinger/Ø3/graf/0.1V1K.csv
Normal file
BIN
Øvinger/Ø3/graf/0.1V1K.png
Normal file
After Width: | Height: | Size: 103 KiB |
8193
Øvinger/Ø3/graf/0.5V1K.csv
Normal file
BIN
Øvinger/Ø3/graf/0.5V1K.png
Normal file
After Width: | Height: | Size: 84 KiB |
37
Øvinger/Ø3/graf/graphs.py
Normal file
@ -0,0 +1,37 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
Created on Sun Jan 13 16:30:58 2019
|
||||
|
||||
@author: oyvind
|
||||
"""
|
||||
|
||||
import csv
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
header = []
|
||||
data = []
|
||||
|
||||
filename = "0.1V1K"
|
||||
|
||||
|
||||
with open(filename + ".csv") as csvfile:
|
||||
csvreader = csv.reader(csvfile)
|
||||
|
||||
header = next(csvreader)
|
||||
|
||||
for dataplot in csvreader:
|
||||
values = [float(value) for value in dataplot]
|
||||
|
||||
data.append(values)
|
||||
|
||||
time = [p[0] * 1000 for p in data]
|
||||
ch1 = [p[1] for p in data]
|
||||
ch2 = [p[2] for p in data]
|
||||
|
||||
plt.plot(time,ch1, time,ch2)
|
||||
plt.xlabel("Tid (ms)")
|
||||
plt.ylabel("Spenning (V)")
|
||||
plt.legend(["Forsterket signal","Inngangssignal"])
|
||||
plt.savefig(filename + ".png", dpi=200)
|
||||
plt.show()
|
BIN
Øvinger/Ø3/pic/SkissetTegning.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
Øvinger/Ø3/pic/vanligForsterker (copy).JPG
Normal file
After Width: | Height: | Size: 1.5 MiB |
BIN
Øvinger/Ø3/pic/vanligForsterker.JPG
Normal file
After Width: | Height: | Size: 623 KiB |
BIN
Øvinger/Ø3/pic/varierendeForsterker (copy).JPG
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
Øvinger/Ø3/pic/varierendeForsterker.JPG
Normal file
After Width: | Height: | Size: 729 KiB |
BIN
Øvinger/Ø3/Øving3.pdf
Normal file
177
Øvinger/Ø3/Øving3.tex
Normal file
@ -0,0 +1,177 @@
|
||||
\documentclass[11pt,largemargins, norsk]{homework}
|
||||
|
||||
\newcommand{\hwname}{Øyvind Skaaden}
|
||||
\newcommand{\hwemail}{oyvindps@ntnu.no}
|
||||
\newcommand{\hwtype}{Øving}
|
||||
\newcommand{\hwnum}{10}
|
||||
\newcommand{\hwclass}{TTT4260}
|
||||
\newcommand{\hwlecture}{}
|
||||
\newcommand{\hwsection}{}
|
||||
|
||||
\renewcommand{\questiontype}{Oppgave}
|
||||
\newcommand{\figref}[1]{Figur \ref{#1}}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
\question
|
||||
\begin{alphaparts}
|
||||
\item
|
||||
For å finne utgangsspenningen $v_2 $ må vi først finne spenningen over $R_i $, $v_1 $. Den er
|
||||
|
||||
$$ v_1 = \frac{R_i}{R_i + R_s} v_s \quad\Rightarrow\quad v_1 = \frac{100\text{k}\Omega}{100\text{k}\Omega + 33\Omega} \cdot 0.6\text{mV} \approx 0.6\text{mV}$$
|
||||
|
||||
Spenningen $Av_1 $, der $A = 10^4 $ blir $Av_1 = 6$V.
|
||||
|
||||
Spenningen $v_2 $ blir da spenningen over $R_L $. Den er
|
||||
|
||||
$$ v_2 = \frac{R_L}{R_L + R_0} Av_1 \quad\Rightarrow\quad v_2 = \frac{1\text{k}\Omega}{1\text{k}\Omega + 200\Omega} = 5\text{V}$$
|
||||
|
||||
\item Se \figref{graph:oppgave1b}
|
||||
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=0.8\textwidth]{pic/SkissetTegning.png}
|
||||
\caption{Skissert spenning $v_2 $ med ikke-ideell op-amp}
|
||||
\label{graph:oppgave1b}
|
||||
\end{figure}
|
||||
|
||||
\item
|
||||
Signalet er klippet fra 5V og oppver. Dette kan forhindres ved å senke amplituden til inngangssignalet ned til $0.5$mV. Dette kan gjøres ved å øke motstanden $R_s $ og senke $R_i $.
|
||||
|
||||
\end{alphaparts}
|
||||
|
||||
|
||||
\question
|
||||
|
||||
\begin{alphaparts}
|
||||
\item
|
||||
Kretsen i figur 3 er en buffer. Den vil kunne ta inn et inngangssignal og levere akkurat det samme tilbake til kretsen. Den har en forsterkning på 1, altså det samme signalet inn som ut. Den brukes ofte der kretsen som leverer signalet ikke klarer å levere nok strøm til det den leverer til. Bufferen klarer da å levere nok strøm.
|
||||
|
||||
|
||||
\item
|
||||
|
||||
Kretsen i figur 4 er en inverterende forsterker. Det går ingen strøm gjennom forsterkeren, men det går en strøm fra $v_i $ til $v_o $. Vi kan da sette opp KVL, basert på at det går en strøm fra $v_i $ til $v_o $.
|
||||
|
||||
\begin{align}
|
||||
-v_i + R_1 \cdot i + R_2 \cdot i + v_o = 0
|
||||
\label{eq:2b}
|
||||
\end{align}
|
||||
Vi har også at spenningen til terminalene er like mellom seg, og at den ikke inverterende er koblet til jord.
|
||||
|
||||
$$ -v_i + R_1\cdot i = 0 \qquad\Leftrightarrow\qquad i = \frac{v_i}{R_1} $$
|
||||
|
||||
Setter vi dette inn i (\ref{eq:2b}), får vi
|
||||
|
||||
\begin{align*}
|
||||
-v_i + R_1 \cdot \frac{v_i}{R_1} + R_2 \cdot \frac{v_i}{R_1} + v_o &= 0 \\
|
||||
\frac{v_o}{v_i} &= -\frac{R_2}{R_1}
|
||||
\end{align*}
|
||||
|
||||
\item
|
||||
|
||||
Kretsen i figur 5 er en ikke inverterende forsterker. Spenningen over terminalene er lik. Bruker nodespenning.
|
||||
|
||||
\begin{align*}
|
||||
\frac{v_i}{R_1} + \frac{v_i + v_o}{R_2} &= 0 \\
|
||||
\frac{R_2}{R_1} &= \frac{-v_i + v_o}{v_i} \\
|
||||
\frac{v_o}{v_i} - 1 &= \frac{R_2}{R_1} \\
|
||||
\frac{v_o}{v_i} &= \frac{R_2 + R_1}{R_1}
|
||||
\end{align*}
|
||||
|
||||
\item
|
||||
|
||||
Kretsen i figur 6 er en derivator. Vi vet at strømmen gjennom en kondensator er $ i_c = C\frac{dv_c}{dt} $ Vi vet også at det ikke går noe strøm gjennom forsterkeren, så all strøm må gå gjennom motstanden $R_1 $. Siden det ikke er noen spenning mellom terminalene på forsterkeren, og den ikke inverterende er koblet til jord vil spenningen over motstanden $R_1 $ være $-v_o $
|
||||
|
||||
Setter dette lik hverandre.
|
||||
|
||||
\begin{align*}
|
||||
C\frac{dv_i}{dt} &= \frac{-v_o}{R_1}\\
|
||||
v_o &= -RC\frac{dv_i}{dt}
|
||||
\end{align*}
|
||||
|
||||
\item
|
||||
|
||||
Kretsen i figur 7 er en integrator. Her er det tilsvarende som oppgaven over.
|
||||
|
||||
Finner strømmen gjennom $R $ og $C $.
|
||||
|
||||
\begin{align*}
|
||||
\frac{v_i}{R_1} &= -C\frac{dv_o}{dt} \\
|
||||
\frac{dv_o}{dt} &= -\frac{v_i}{RC} \\
|
||||
v_o &= -\frac{1}{RC}\int v_i\ dt
|
||||
\end{align*}
|
||||
|
||||
\item
|
||||
|
||||
Kretsen i figur 8 er en komparator. Den har en terskelspenning som kan settes på den inverterende inngangen. Dersom inngangssignalet er mindre enn terskelspenningen vil utgangssignalet trekkes ned mot det nedre spenningsforsyningen.
|
||||
Dersom den er større, vil utgangssignalet trekkes til den øvre spenningsforsyning.
|
||||
|
||||
\end{alphaparts}
|
||||
|
||||
\question
|
||||
|
||||
\begin{alphaparts}
|
||||
\item Kretsen i figur 9 fungerer ikke på samme måte som kretsen i figur 4 (inverterende forsterker). Denne kretsen vil vokse veldig fort oppover når inngangsspenning er positiv og omvendt når inngangen er negativ.
|
||||
|
||||
Etter litt søking på internettet er dette en ``Schmitt-trigger'' \footnote{Wikipedia contributors. (2019, January 20). Operational amplifier. In Wikipedia, The Free Encyclopedia. Retrieved 10:43, February 7, 2019, from \url{https://en.wikipedia.org/w/index.php?title=Operational_amplifier&oldid=879387924}}
|
||||
|
||||
\item
|
||||
Dersom $v_1 $ er et trekantsignal vil signalet ut på $v_2 $ bli et firkantsignal.
|
||||
|
||||
\item
|
||||
|
||||
Dersom vi integrerer et firkantsignal vil vi få en kurve som alternerer mellom et konstant stignigstall som er positivt og et negativt. Den eneste kurven som passer dette, er en trekantbølge.
|
||||
|
||||
|
||||
\end{alphaparts}
|
||||
|
||||
|
||||
\question
|
||||
|
||||
\begin{alphaparts}
|
||||
\item Krets koblet opp. Inngangsamplitude er på $0.1$V. Forventet utgangsamplitude er $1$V, forsterkingen er på -10. Valgte motstander $R_1 = 1\text{k}\Omega $ og $R_2 = 10\text{k}\Omega$
|
||||
Vi kan se forsterkningssignalet i \figref{graph:oppgave4a}
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=0.7\textwidth]{pic/vanligForsterker.JPG}
|
||||
\caption{Oppkoblet krets etter Figur 4 i oppgavetekten, en inverterende forsterker}
|
||||
\label{pic:oppgave4a}
|
||||
\end{figure}
|
||||
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=\textwidth]{graf/0.1V1K.png}
|
||||
\caption{OP-Amp med inngangsspenning $0.1$V og forventet utgangsspenning på $1$V}
|
||||
\label{graph:oppgave4a}
|
||||
\end{figure}
|
||||
|
||||
\item
|
||||
Forsterkeren blir mettet når inngangssignalet overstiger 0.5V. Vi kan se dette i grafen i \figref{graph:oppgave4b}
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=\textwidth]{graf/0.5V1K.png}
|
||||
\caption{OP-Amp med inngangsspenning $0.5$V. Her klipper forsterkeren på ca 4V}
|
||||
\label{graph:oppgave4b}
|
||||
\end{figure}
|
||||
|
||||
\end{alphaparts}
|
||||
|
||||
\clearpage
|
||||
\question
|
||||
|
||||
Kobler opp kretsen i oppgave 5. Bruker inngangsspenning 1V og spenningskilde 5V og -5V. Bruker et 10k potmeter. Kan variere forsterkningen fra 3.45V til 0.18V, eller i dB, ca +10db til -14.9dB
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=0.7\textwidth]{pic/varierendeForsterker.JPG}
|
||||
\caption{Fysisk krets for en varierende inverterende forserker}
|
||||
\label{pic:oppgave5}
|
||||
\end{figure}
|
||||
|
||||
|
||||
\end{document}
|
BIN
Øvinger/Ø4/Ø4.pdf
Normal file
BIN
Øvinger/Ø5/Analyse_5(1).pdf
Normal file
28
Øvinger/Ø5/BodeDiagram
Normal file
@ -0,0 +1,28 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
Created on Thu Feb 28 11:00:18 2019
|
||||
|
||||
@author: oyvind
|
||||
"""
|
||||
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
def H(f):
|
||||
w = 2 * np.pi * f
|
||||
|
||||
return (w * 10**(-4))/np.sqrt(1+(w*10**(-4))**2)
|
||||
|
||||
frq = []
|
||||
values = []
|
||||
for i in range(2*10**5):
|
||||
frq.append(i)
|
||||
value = 20 * np.log10(abs(H(i)))
|
||||
values.append(value)
|
||||
|
||||
plt.plot(frq, values)
|
||||
plt.xscale('log')
|
||||
plt.gca().xaxis.grid(True)
|
||||
|
||||
|
44
Øvinger/Ø5/BodeDiagram.py
Normal file
@ -0,0 +1,44 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
Created on Thu Feb 28 11:00:18 2019
|
||||
|
||||
@author: oyvind
|
||||
"""
|
||||
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
def H13(f):
|
||||
w = 2 * np.pi * f
|
||||
|
||||
return (w * 10**(-4))/np.sqrt(1+(w*10**(-4))**2)
|
||||
|
||||
def H2(f):
|
||||
w = 2 * np.pi * f
|
||||
|
||||
return (1/np.sqrt(1+(w*100*10**(-9)*10**4)**2))
|
||||
|
||||
def H4(f):
|
||||
w = 2 * np.pi * f
|
||||
|
||||
R = 99.76
|
||||
L = 100 * 10**(-3)
|
||||
|
||||
t = L / R
|
||||
|
||||
return (1/np.sqrt(1+(w*t)**2))
|
||||
|
||||
frq = []
|
||||
values = []
|
||||
for i in range(2*10**4):
|
||||
frq.append(i)
|
||||
value = 20 * np.log10(abs(H4(i)))
|
||||
values.append(value)
|
||||
|
||||
plt.plot(frq, values)
|
||||
plt.xscale('log')
|
||||
plt.gca().xaxis.grid(True)
|
||||
plt.gca().yaxis.grid(True)
|
||||
|
||||
|
44
Øvinger/Ø5/Frekvensrespons.py
Normal file
@ -0,0 +1,44 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
Created on Thu Feb 28 11:00:18 2019
|
||||
|
||||
@author: oyvind
|
||||
"""
|
||||
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
def H13(f):
|
||||
w = 2 * np.pi * f
|
||||
|
||||
return np.arctan(1/(w * 10**-4)) * 180 / np.pi
|
||||
|
||||
|
||||
def H2(f):
|
||||
w = 2 * np.pi * f
|
||||
|
||||
return np.arctan(w * 100*10**(-9) * 10**4) * 180 / np.pi
|
||||
|
||||
def H4(f):
|
||||
w = 2 * np.pi * f
|
||||
|
||||
R = 99.76
|
||||
L = 100 * 10**(-3)
|
||||
|
||||
t = L / R
|
||||
|
||||
return np.arctan(w * t) * 180 / np.pi
|
||||
|
||||
frq = []
|
||||
values = []
|
||||
for i in range(1, 2*10**4):
|
||||
frq.append(i)
|
||||
value = H4(i)
|
||||
values.append(value)
|
||||
|
||||
plt.plot(frq, values)
|
||||
plt.xscale('log')
|
||||
plt.gca().xaxis.grid(True)
|
||||
|
||||
|
BIN
Øvinger/Ø6/Bode Oppgave 1b Pic.png
Normal file
After Width: | Height: | Size: 30 KiB |
172
Øvinger/Ø6/BodeOppgave1b.csv
Normal file
@ -0,0 +1,172 @@
|
||||
#Digilent WaveForms Network Analyzer - Bode
|
||||
#Device Name: Discovery2NI
|
||||
#Serial Number: SN:210321A36D3D
|
||||
#Date Time: 2019-03-04 13:47:34.600
|
||||
#Start: 10 Hz
|
||||
#Stop: 20000 Hz
|
||||
#Steps: 151
|
||||
#Wavegen: Wavegen1
|
||||
#Amplification: 1 X
|
||||
#Settle: 10 ms
|
||||
#MinPeriods: 16
|
||||
#Channel: Channel 1
|
||||
#Range: 5.47148 V
|
||||
#Offset: -3.64348e-05 V
|
||||
#Relative: no
|
||||
#Channel: Channel 2
|
||||
#Range: 5.48107 V
|
||||
#Offset: -6.42632e-05 V
|
||||
#Relative: yes
|
||||
|
||||
Frequency (Hz),Channel 1 Magnitude (dB),Channel 2 Magnitude (dB),Channel 2 Phase (°)
|
||||
10,-0.00537326,-0.00481132,-0.3339
|
||||
10.5198,-0.00550897,-0.00468579,-0.350273
|
||||
11.0666,-0.00553953,-0.00497733,-0.366327
|
||||
11.6418,-0.00540155,-0.00537231,-0.38602
|
||||
12.2469,-0.00550687,-0.00508884,-0.406273
|
||||
12.8835,-0.00509335,-0.00539532,-0.427304
|
||||
13.5532,-0.00553483,-0.00544864,-0.448588
|
||||
14.2577,-0.00527835,-0.0057729,-0.469659
|
||||
14.9987,-0.00519837,-0.00589985,-0.495311
|
||||
15.7784,-0.00532765,-0.00593774,-0.520151
|
||||
16.5985,-0.00538368,-0.00622925,-0.547678
|
||||
17.4613,-0.00528162,-0.00670784,-0.57488
|
||||
18.3689,-0.00546862,-0.00668217,-0.604199
|
||||
19.3237,-0.00555204,-0.00687947,-0.634738
|
||||
20.3281,-0.00533271,-0.00723183,-0.666323
|
||||
21.3847,-0.00538782,-0.00742054,-0.701453
|
||||
22.4962,-0.00546445,-0.00789399,-0.735715
|
||||
23.6656,-0.00519679,-0.00848513,-0.774108
|
||||
24.8957,-0.00538932,-0.00843235,-0.812998
|
||||
26.1897,-0.00523701,-0.00917148,-0.853232
|
||||
27.551,-0.00518192,-0.00980661,-0.898256
|
||||
28.9831,-0.00530315,-0.00982177,-0.943569
|
||||
30.4896,-0.00545199,-0.0100736,-0.991705
|
||||
32.0744,-0.00528373,-0.0106913,-1.0408
|
||||
33.7415,-0.00529,-0.0111226,-1.09468
|
||||
35.4954,-0.0052797,-0.0118656,-1.14995
|
||||
37.3404,-0.00554357,-0.0121321,-1.20827
|
||||
39.2813,-0.00531512,-0.0130159,-1.27031
|
||||
41.323,-0.00543937,-0.013854,-1.33445
|
||||
43.471,-0.00540697,-0.0144741,-1.40109
|
||||
45.7305,-0.00532245,-0.0151413,-1.47166
|
||||
48.1075,-0.00547021,-0.0159066,-1.54728
|
||||
50.6081,-0.00517615,-0.0173125,-1.62645
|
||||
53.2386,-0.0050528,-0.0183198,-1.70792
|
||||
56.0059,-0.00538225,-0.0192564,-1.79434
|
||||
58.917,-0.0053449,-0.0202372,-1.88548
|
||||
61.9794,-0.00544656,-0.0216106,-1.98053
|
||||
65.201,-0.00550144,-0.022905,-2.08071
|
||||
68.59,-0.00564915,-0.0243751,-2.1851
|
||||
72.1552,-0.00544825,-0.0261777,-2.29628
|
||||
75.9057,-0.00531167,-0.027924,-2.41336
|
||||
79.8512,-0.0052448,-0.0299534,-2.53401
|
||||
84.0018,-0.00539383,-0.0318696,-2.66404
|
||||
88.368,-0.00566807,-0.0338469,-2.79711
|
||||
92.9613,-0.00558168,-0.0361629,-2.93891
|
||||
97.7933,-0.00577305,-0.0389504,-3.08796
|
||||
102.876,-0.00527313,-0.0417832,-3.2438
|
||||
108.224,-0.00559215,-0.0446737,-3.40746
|
||||
113.849,-0.00547246,-0.048086,-3.58008
|
||||
119.767,-0.00530848,-0.0517561,-3.75967
|
||||
125.992,-0.00557531,-0.0552902,-3.95007
|
||||
132.541,-0.00536839,-0.0594675,-4.15219
|
||||
139.43,-0.00523049,-0.0641689,-4.36139
|
||||
146.678,-0.00526805,-0.068836,-4.58326
|
||||
154.302,-0.00551183,-0.0742347,-4.81298
|
||||
162.322,-0.00520949,-0.0801541,-5.05723
|
||||
170.759,-0.00539274,-0.0864603,-5.3143
|
||||
179.635,-0.00590949,-0.0933259,-5.58317
|
||||
188.972,-0.00538619,-0.101251,-5.86634
|
||||
198.795,-0.00518577,-0.109384,-6.16444
|
||||
209.128,-0.0055917,-0.118142,-6.47923
|
||||
219.998,-0.00548197,-0.128142,-6.80825
|
||||
231.433,-0.0056232,-0.138748,-7.15653
|
||||
243.463,-0.00544606,-0.150422,-7.52181
|
||||
256.118,-0.00561499,-0.163397,-7.90551
|
||||
269.43,-0.00534262,-0.17782,-8.31212
|
||||
283.435,-0.00570721,-0.193078,-8.74015
|
||||
298.167,-0.00559709,-0.209895,-9.19166
|
||||
313.666,-0.0053281,-0.228781,-9.66573
|
||||
329.969,-0.00557465,-0.249558,-10.1691
|
||||
347.121,-0.0054418,-0.272464,-10.6997
|
||||
365.164,-0.00500028,-0.297813,-11.2592
|
||||
384.144,-0.0058747,-0.325873,-11.8502
|
||||
404.112,-0.00593924,-0.356397,-12.4764
|
||||
425.117,-0.00577392,-0.391047,-13.144
|
||||
447.214,-0.0055284,-0.429207,-13.8464
|
||||
470.459,-0.00541712,-0.472221,-14.5937
|
||||
494.913,-0.00561611,-0.519669,-15.3865
|
||||
520.638,-0.00591756,-0.572987,-16.2316
|
||||
547.7,-0.00559437,-0.633294,-17.1321
|
||||
576.168,-0.00564262,-0.701158,-18.0914
|
||||
606.117,-0.00572966,-0.77783,-19.1153
|
||||
637.622,-0.00561941,-0.86511,-20.2107
|
||||
670.764,-0.00599837,-0.964436,-21.3856
|
||||
705.63,-0.00600291,-1.07843,-22.6453
|
||||
742.307,-0.00597806,-1.2097,-23.9973
|
||||
780.891,-0.00649728,-1.36134,-25.4537
|
||||
821.481,-0.00581668,-1.53865,-27.0226
|
||||
864.18,-0.00694608,-1.74573,-28.7155
|
||||
909.099,-0.00683892,-1.99015,-30.5369
|
||||
956.352,-0.00666713,-2.28027,-32.5032
|
||||
1006.06,-0.00682924,-2.62797,-34.6139
|
||||
1058.36,-0.00723345,-3.04851,-36.8706
|
||||
1113.37,-0.00701525,-3.56212,-39.2585
|
||||
1171.24,-0.00721427,-4.19514,-41.748
|
||||
1232.12,-0.00627676,-4.98529,-44.2612
|
||||
1296.16,-0.00828824,-5.98207,-46.6703
|
||||
1363.53,-0.00712476,-7.26275,-48.6667
|
||||
1434.41,-0.00784158,-8.93457,-49.6496
|
||||
1508.97,-0.00770318,-11.161,-48.246
|
||||
1587.4,-0.00798169,-14.1194,-40.9149
|
||||
1669.91,-0.00749812,-17.3491,-18.5697
|
||||
1756.71,-0.00623631,-17.4354,20.0198
|
||||
1848.02,-0.00694516,-14.2128,43.2097
|
||||
1944.08,-0.00648254,-11.192,50.8481
|
||||
2045.13,-0.00745522,-8.91228,52.3001
|
||||
2151.43,-0.00684777,-7.19389,51.2377
|
||||
2263.26,-0.00673777,-5.87635,49.1091
|
||||
2380.9,-0.00589962,-4.84806,46.5311
|
||||
2504.66,-0.00670404,-4.03516,43.8232
|
||||
2634.85,-0.00510321,-3.38328,41.1268
|
||||
2771.8,-0.0047664,-2.85714,38.5313
|
||||
2915.88,-0.00446474,-2.42779,36.0732
|
||||
3067.44,-0.00391824,-2.07449,33.7663
|
||||
3226.88,-0.00355361,-1.78134,31.6205
|
||||
3394.61,-0.00341895,-1.53735,29.6276
|
||||
3571.05,-0.00350624,-1.33174,27.7739
|
||||
3756.67,-0.00331146,-1.1588,26.0669
|
||||
3951.94,-0.00231351,-1.01238,24.479
|
||||
4157.36,-0.00225369,-0.886585,23.0086
|
||||
4373.45,-0.00139882,-0.778564,21.6437
|
||||
4600.77,-0.00102246,-0.686038,20.3781
|
||||
4839.91,-0.000220647,-0.606433,19.1892
|
||||
5091.49,0.00105067,-0.537312,18.0879
|
||||
5356.13,0.00167097,-0.476906,17.0608
|
||||
5634.54,0.00162972,-0.424867,16.0998
|
||||
5927.41,0.00207173,-0.378397,15.2028
|
||||
6235.51,0.00112702,-0.338463,14.3593
|
||||
6559.62,0.00372765,-0.302806,13.5651
|
||||
6900.58,0.000302864,-0.271531,12.8235
|
||||
7259.27,0.00538512,-0.244025,12.1227
|
||||
7636.59,0.00663817,-0.219858,11.4623
|
||||
8033.53,-0.00340019,-0.197586,10.8473
|
||||
8451.1,0.00407549,-0.179074,10.2594
|
||||
8890.38,0.00814818,-0.162264,9.70367
|
||||
9352.48,0.00881934,-0.147006,9.18092
|
||||
9838.61,0.0101511,-0.13357,8.69056
|
||||
10350,0.011041,-0.121674,8.22173
|
||||
10888,0.0111862,-0.110205,7.77288
|
||||
11453.9,0.0134568,-0.101829,7.3539
|
||||
12049.3,0.0143843,-0.0925829,6.95629
|
||||
12675.6,0.0109394,-0.0856871,6.57951
|
||||
13334.4,0.0107169,-0.0779623,6.21708
|
||||
14027.6,0.0159309,-0.0715899,5.87416
|
||||
14756.7,0.0168666,-0.0671844,5.55194
|
||||
15523.7,0.00627492,-0.0613767,5.23519
|
||||
16330.6,0.0184252,-0.0579301,4.94486
|
||||
17179.5,0.0197432,-0.0538634,4.65643
|
||||
18072.4,0.0210424,-0.0503017,4.38578
|
||||
19011.8,0.0220391,-0.0471414,4.13298
|
||||
20000,0.0186899,-0.043639,3.88622
|
Can't render this file because it has a wrong number of fields in line 21.
|
BIN
Øvinger/Ø7/MålingAvOverføring.dwf3scope
Normal file
BIN
Øvinger/Ø7/MålingForsterker.dwf3work
Normal file
BIN
Øvinger/Ø7/MålingForsterkning.png
Normal file
After Width: | Height: | Size: 117 KiB |
8193
Øvinger/Ø7/MålingForsterkningCSV.csv
Normal file
BIN
Øvinger/Ø7/MålingForsterkningOppg1g.png
Normal file
After Width: | Height: | Size: 127 KiB |
8193
Øvinger/Ø7/MålingForsterkningOppg1gCSV.csv
Normal file
BIN
Øvinger/Ø7/MålingOverføring.dwf3work
Normal file
BIN
Øvinger/Ø7/MålingOverføringskurve.png
Normal file
After Width: | Height: | Size: 109 KiB |
8001
Øvinger/Ø7/MålingOverføringskurveCSV.csv
Normal file
BIN
Øvinger/Ø7/MålingOverføringskurveWhite.png
Normal file
After Width: | Height: | Size: 105 KiB |