summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsijanec <anton@sijanec.eu>2021-06-01 20:51:30 +0200
committersijanec <anton@sijanec.eu>2021-06-01 20:51:30 +0200
commitad80953b886b7f8924a32ed01294de8b23fccce1 (patch)
tree59ec7ca3d14360cd049ca542dc62508c9684c895
parentvideoanaliza končana (diff)
downloadsola-gimb-2-ad80953b886b7f8924a32ed01294de8b23fccce1.tar
sola-gimb-2-ad80953b886b7f8924a32ed01294de8b23fccce1.tar.gz
sola-gimb-2-ad80953b886b7f8924a32ed01294de8b23fccce1.tar.bz2
sola-gimb-2-ad80953b886b7f8924a32ed01294de8b23fccce1.tar.lz
sola-gimb-2-ad80953b886b7f8924a32ed01294de8b23fccce1.tar.xz
sola-gimb-2-ad80953b886b7f8924a32ed01294de8b23fccce1.tar.zst
sola-gimb-2-ad80953b886b7f8924a32ed01294de8b23fccce1.zip
-rwxr-xr-xfiz/naloga/podatki-obdelani/a.outbin0 -> 21504 bytes
-rw-r--r--fiz/naloga/podatki-obdelani/obdelaj.c142
-rw-r--r--fiz/naloga/predstavitev/dokument.log109
-rw-r--r--fiz/naloga/predstavitev/dokument.pdfbin2105611 -> 2809861 bytes
-rw-r--r--fiz/naloga/predstavitev/dokument.synctex.gzbin41925 -> 43959 bytes
-rw-r--r--fiz/naloga/predstavitev/dokument.tex33
-rw-r--r--fiz/naloga/predstavitev/stderr.log2
-rw-r--r--fiz/naloga/predstavitev/stdout.log180
8 files changed, 281 insertions, 185 deletions
diff --git a/fiz/naloga/podatki-obdelani/a.out b/fiz/naloga/podatki-obdelani/a.out
new file mode 100755
index 0000000..ac61ebe
--- /dev/null
+++ b/fiz/naloga/podatki-obdelani/a.out
Binary files differ
diff --git a/fiz/naloga/podatki-obdelani/obdelaj.c b/fiz/naloga/podatki-obdelani/obdelaj.c
new file mode 100644
index 0000000..bc855ae
--- /dev/null
+++ b/fiz/naloga/podatki-obdelani/obdelaj.c
@@ -0,0 +1,142 @@
+#define _XOPEN_SOURCE
+#include <stdio.h>
+#include <dirent.h>
+#include <time.h>
+#include <unistd.h>
+#include <string.h>
+#include <stdlib.h>
+struct meritev {
+ int t_alpha; /* milisekunde */
+ long double F_m;
+ long double h_alpha;
+ long double F_alpha;
+ long double V_alpha; /* litri */
+ long double F_g;
+};
+struct poskus {
+ int id;
+ struct tm cas;
+ struct meritev meritev[256]; /* maks 256 meritev */
+ int meritevn;
+ long double t_m; /* milisekunde */
+ long double F_alpha_avg;
+ long double a_k;
+ int P_0;
+ long double V_0;
+ long double t_0; /* čas, ko je prvič F_m > 0.5 N */
+};
+long double /* liter */ h2v (long double /* meter */ x) {
+ if (x > 0.245)
+ return 1;
+ if (x < 0.055)
+ return 0;
+ return 0.106 + (0.001459010809 /* r^2 */ * 3.14159265 * (x - 0.055));
+}
+int main (int argc, char ** argv) {
+ DIR * videod, * vagad;
+ struct dirent * dir;
+ struct poskus poskus[256]; /* maks 256 poskusov */
+ int i = 0;
+ /* videod = opendir("../podatki-video"); */
+ vagad = opendir("../podatki-vaga");
+ if (/* !videod || */ !vagad) {
+ fprintf(stderr, "ni uspelo odpreti direktorija!\n");
+ /* closedir(videod); */
+ closedir(vagad);
+ return 1;
+ }
+ fprintf(stderr, "berem direktorij ... \n");
+ while ((dir = readdir(vagad)) != NULL) {
+ strptime(dir->d_name, "%m%d%H%M", &poskus[i].cas);
+ sscanf(dir->d_name, "%d-%LfL-%dbar", &poskus[i].id, &poskus[i].V_0, &poskus[i].P_0);
+ char videofn[256], vagafn[256], buf[256], outfn[256];
+ snprintf(videofn, 256, "../podatki-video/za-%d.csv", poskus[i].id);
+ snprintf(vagafn, 256, "../podatki-vaga/%s", dir->d_name);
+ if (strstr(dir->d_name, "slabfilm") || strstr(dir->d_name, "brezfilma") || dir->d_name[3] == '0')
+ continue;
+ FILE * vagaf = fopen(vagafn, "r");
+ FILE * videof = fopen(videofn, "r");
+ if (!vagaf || !videof) {
+ fclose(vagaf);
+ fclose(videof);
+ fprintf(stderr, "ni uspelo odpreti %s ali %s\n", vagafn, videofn);
+ continue;
+ }
+ int t0;
+ long double ldbuf;
+ char * cp;
+ fgets(buf, 256, vagaf);
+ poskus[i].meritevn = 0;
+ while (!feof(vagaf)) {
+#define nmer poskus[i].meritev[poskus[i].meritevn]
+ ldbuf = strtold(buf, &cp);
+ if (!poskus[i].meritevn)
+ t0 = ldbuf;
+ nmer.t_alpha = ldbuf - t0;
+ cp++;
+ ldbuf = strtold(cp, &cp);
+ nmer.F_m = ldbuf*9.81;
+ nmer.F_alpha = 0;
+ fgets(buf, 256, vagaf);
+ poskus[i].meritevn++;
+ }
+ fgets(buf, 256, videof);
+ while (!feof(videof)) {
+ ldbuf = strtold(buf, &cp);
+ ldbuf = (ldbuf*1000);
+ int j = 0;
+#define omer poskus[i].meritev[j]
+ for (j = 0; j < poskus[i].meritevn - 1; j++)
+ if (poskus[i].meritev[j].t_alpha <= ldbuf && poskus[i].meritev[j+1].t_alpha > ldbuf)
+ break;
+ cp++;
+ omer.h_alpha = strtold(cp, &cp);
+ omer.V_alpha = h2v(omer.h_alpha);
+ omer.F_g = 0.0005*9.81 /* teža plastenke */ + omer.V_alpha*9.81 /* teža vode */;
+ omer.F_alpha = omer.F_m + omer.F_g;
+ }
+ int intbuf = -1;
+ poskus[i].t_0 = 0;
+ for (int j = 0; j < poskus[i].meritevn; j++) {
+ if (intbuf != -1 && poskus[i].meritev[j].F_m < 0.5) {
+ poskus[i].t_m = poskus[i].meritev[j].t_alpha - poskus[i].meritev[intbuf].t_alpha;
+ poskus[i].F_alpha_avg = 0;
+ for (int k = intbuf; k <= j; k++) {
+ poskus[i].F_alpha_avg += poskus[i].meritev[k].F_alpha;
+ }
+ poskus[i].F_alpha_avg /= ((j-intbuf)+1) ? (j-intbuf)+1 : fprintf(stderr, "deljenje z nič pri %s\n", vagafn);
+ }
+ if (poskus[i].meritev[j].F_m > 0.5) {
+ intbuf /* pričetek intervala */ = j ? j - 1 : j;
+ poskus[i].t_0 = poskus[i].meritev[j].t_alpha;
+ }
+ }
+ poskus[i].a_k = 0;
+ for (int j = 0; j < poskus[i].meritevn; j++) /* poor man's integral function */
+ poskus[i].a_k += poskus[i].meritev[j].F_alpha/(poskus[i].meritev[j].F_g/9.81);
+ snprintf(outfn, 256, "%08d-%LfL-%dbar.csv", poskus[i].id, poskus[i].V_0, poskus[i].P_0);
+ FILE * outf = fopen(outfn, "w");
+ if (!outf) {
+ fprintf(stderr, "ni uspelo odpreti za pisanje datoteke %s\n", outf);
+ continue;
+ }
+ for (int j = 0; j < poskus[i].meritevn; j++) {
+ fprintf(outf, "%d,%Lf,%Lf,%Lf,%Lf,%Lf\n",
+ poskus[i].meritev[j].t_alpha,
+ poskus[i].meritev[j].F_m,
+ poskus[i].meritev[j].h_alpha,
+ poskus[i].meritev[j].F_alpha,
+ poskus[i].meritev[j].V_alpha,
+ poskus[i].meritev[j].F_g
+ );
+ }
+ fclose(vagaf);
+ fclose(videof);
+ fclose(outf);
+ fprintf(stdout, "zabeležil %d: V_0: %Lf, P_0: %Lf, a_k: %Lf, t_m: %Lf, F_alpha_avg: %Lf\n",
+ poskus[i].id, poskus[i].V_0, poskus[i].P_0, poskus[i].a_k, poskus[i].t_m, poskus[i].F_alpha_avg);
+ i++;
+ }
+ /* closedir(videod); */
+ closedir(vagad);
+}
diff --git a/fiz/naloga/predstavitev/dokument.log b/fiz/naloga/predstavitev/dokument.log
index 2ffdd1a..326ec01 100644
--- a/fiz/naloga/predstavitev/dokument.log
+++ b/fiz/naloga/predstavitev/dokument.log
@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 1 JUN 2021 16:13
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 1 JUN 2021 20:30
entering extended mode
\write18 enabled.
%&-line parsing enabled.
@@ -1961,28 +1961,6 @@ Overfull \hbox (5.0pt too wide) in paragraph at lines 171--171
[5
<../tekst/img-tracked/rampa.jpg>]
-
-LaTeX Warning: Command \v invalid in math mode on input line 196.
-
-! Please use \mathaccent for accents in math mode.
-\add@accent ... \let \ignorespaces \relax \accent
- #1 #2\egroup \spacefactor ...
-l.196 \end{frame}
-
-I'm changing \accent to \mathaccent here; wish me luck.
-(Accents are not the same in formulas as they are in text.)
-
-! You can't use `\spacefactor' in math mode.
-\add@accent ... \accent #1 #2\egroup \spacefactor
- \accent@spacefactor
-l.196 \end{frame}
-
-Sorry, but I'm not programmed to handle this case;
-I'll just pretend that you didn't ask for it.
-If you're in the wrong mode, you might be able to
-return to the right one by typing `I}' or `I$' or `I\par'.
-
-Missing character: There is no in font cmex10!
<totem.jpg, id=271, 1314.9125pt x 1915.155pt>
File: totem.jpg Graphic file (type jpg)
<use totem.jpg>
@@ -2000,65 +1978,31 @@ Overfull \vbox (57.14857pt too high) detected at line 196
[6
<./totem.jpg>]
-! Undefined control sequence.
-\beamer@doifinframe ...\centi \meter })\cdot \pii
- (\SI {38,197}{\milli \mete...
-l.234 \end{frame}
-
-The control sequence at the end of the top line
-of your error message was never \def'ed. If you have
-misspelled it (e.g., `\hobx'), type `I' and the correct
-spelling (e.g., `I\hbox'). Otherwise just continue,
-and I'll forget about whatever was undefined.
-
-
-Overfull \hbox (1.17192pt too wide) detected at line 234
+Overfull \hbox (1.17192pt too wide) detected at line 235
\OT1/mathkerncmss/m/sl/10.95 f\OT1/cmss/m/n/10.95 (\OT1/mathkerncmss/m/sl/10.95
x\OT1/cmss/m/n/10.95 ) = []
[]
LaTeX Font Info: Trying to load font information for OMS+cmss on input line
-234.
-LaTeX Font Info: No file OMScmss.fd. on input line 234.
+235.
+LaTeX Font Info: No file OMScmss.fd. on input line 235.
LaTeX Font Warning: Font shape `OMS/cmss/m/n' undefined
(Font) using `OMS/cmsy/m/n' instead
-(Font) for symbol `textbraceleft' on input line 234.
-
-
-LaTeX Warning: Command \v invalid in math mode on input line 234.
-
-! Please use \mathaccent for accents in math mode.
-\add@accent ... \let \ignorespaces \relax \accent
- #1 #2\egroup \spacefactor ...
-l.234 \end{frame}
-
-I'm changing \accent to \mathaccent here; wish me luck.
-(Accents are not the same in formulas as they are in text.)
-
-! You can't use `\spacefactor' in math mode.
-\add@accent ... \accent #1 #2\egroup \spacefactor
- \accent@spacefactor
-l.234 \end{frame}
-
-Sorry, but I'm not programmed to handle this case;
-I'll just pretend that you didn't ask for it.
-If you're in the wrong mode, you might be able to
-return to the right one by typing `I}' or `I$' or `I\par'.
-
-Missing character: There is no in font cmex10!
+(Font) for symbol `textbraceleft' on input line 235.
+
<špric.jpg, id=301, 1388.18625pt x 2039.62pt>
File: špric.jpg Graphic file (type jpg)
<use špric.jpg>
-Package pdftex.def Info: špric.jpg used on input line 234.
+Package pdftex.def Info: špric.jpg used on input line 235.
(pdftex.def) Requested size: 216.67201pt x 318.3475pt.
-Overfull \hbox (5.0pt too wide) in paragraph at lines 234--234
+Overfull \hbox (5.0pt too wide) in paragraph at lines 235--235
[]
[]
-Overfull \vbox (60.63068pt too high) detected at line 234
+Overfull \vbox (60.08603pt too high) detected at line 235
[]
[7
@@ -2067,9 +2011,24 @@ Overfull \vbox (60.63068pt too high) detected at line 234
] [9
-] [10
-
]
+<kompresor.jpg, id=379, 1071.00125pt x 1656.1875pt>
+File: kompresor.jpg Graphic file (type jpg)
+<use kompresor.jpg>
+Package pdftex.def Info: kompresor.jpg used on input line 276.
+(pdftex.def) Requested size: 216.67201pt x 335.0476pt.
+
+Overfull \hbox (5.0pt too wide) in paragraph at lines 276--276
+ []
+ []
+
+
+Overfull \vbox (47.67085pt too high) detected at line 276
+ []
+
+[10
+
+ <./kompresor.jpg>]
Package biblatex Warning: '\mainlang' is deprecated in favour of
(biblatex) '\textmainlang'.
@@ -2081,7 +2040,7 @@ Package biblatex Warning: '\mainlang' is deprecated in favour of
</usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamericonarticle.pdf>]
LaTeX Font Info: Trying to load font information for TS1+cmss on input line
-284.
+303.
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/ts1cmss.fd
File: ts1cmss.fd 2019/12/16 v2.5j Standard LaTeX font definitions
) [12
@@ -2112,10 +2071,10 @@ Package logreq Info: Writing requests to 'dokument.run.xml'.
)
Here is how much of TeX's memory you used:
- 48461 strings out of 478994
- 1108077 string characters out of 5858190
- 1933556 words of memory out of 5000000
- 64985 multiletter control sequences out of 15000+600000
+ 48466 strings out of 478994
+ 1108171 string characters out of 5858190
+ 1934556 words of memory out of 5000000
+ 64989 multiletter control sequences out of 15000+600000
418854 words of font info for 85 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
131i,16n,132p,1094b,2881s stack positions out of 5000i,500n,10000p,200000b,80000s
@@ -2136,10 +2095,10 @@ texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/local/t
exlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb></usr/local/te
xlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt9.pfb></usr/local/texl
ive/2021/texmf-dist/fonts/type1/public/cm-super/sfss1095.pfb>
-Output written on dokument.pdf (14 pages, 16231255 bytes).
+Output written on dokument.pdf (14 pages, 16790038 bytes).
PDF statistics:
- 587 PDF objects out of 1000 (max. 8388607)
+ 588 PDF objects out of 1000 (max. 8388607)
526 compressed objects within 6 object streams
47 named destinations out of 1000 (max. 500000)
- 252 words of extra memory for PDF output out of 10000 (max. 10000000)
+ 257 words of extra memory for PDF output out of 10000 (max. 10000000)
diff --git a/fiz/naloga/predstavitev/dokument.pdf b/fiz/naloga/predstavitev/dokument.pdf
index 9b935b2..e3f1b30 100644
--- a/fiz/naloga/predstavitev/dokument.pdf
+++ b/fiz/naloga/predstavitev/dokument.pdf
Binary files differ
diff --git a/fiz/naloga/predstavitev/dokument.synctex.gz b/fiz/naloga/predstavitev/dokument.synctex.gz
index 573ac50..71e7e33 100644
--- a/fiz/naloga/predstavitev/dokument.synctex.gz
+++ b/fiz/naloga/predstavitev/dokument.synctex.gz
Binary files differ
diff --git a/fiz/naloga/predstavitev/dokument.tex b/fiz/naloga/predstavitev/dokument.tex
index 265a6a9..b55f26e 100644
--- a/fiz/naloga/predstavitev/dokument.tex
+++ b/fiz/naloga/predstavitev/dokument.tex
@@ -181,9 +181,9 @@
\item \textit{masa plastenke}, \textit{kalibracijski delitelj vage}
\item \textbf{čas, ko je $F_\alpha > F_g$}, \textbf{maksimalna $F_m$ $\rightarrow$ maksimalna $F_\alpha$}, \textbf{povprečna $F_m$/$F_\alpha$}
\item \texttt{začetna količina vode v plastenki ($V_0$): \SI{0,3}{\liter}, \SI{0,6}{\liter} in \SI{0,9}{\liter}}, \texttt{začetni tlak v plastenki ($P_0$): \SI{10}{\kilo\pascal}, \SI{20}{\kilo\pascal}, \SI{30}{\kilo\pascal} in \SI{40}{\kilo\pascal}}
- \item Grafi, s katerimi bodo prikazane meritve: $F_\alpha(t)$, $F_\alpha(P_0)$, $F_\alpha(V_0)$, $\tavg(V_0)$, $\tavg(P_0)$, $š_{max}(V_0, P_0)$ -- predv. viš.
+ \item Grafi, s katerimi bodo prikazane meritve: $F_\alpha(t)$, $F_\alpha(P_0)$, $F_\alpha(V_0)$, $\tavg(V_0)$, $\tavg(P_0)$, $v_{k}(V_0, P_0)$ -- končna hitrost
\item Za vsako kombinacijo volumna in pritiska so bile izvedene tri meritve, katerih povprečje se upošteva
- \item Videoanaliza bo uporabljena za $t_0$ in za $h_\alpha \rightarrow V_\alpha \rightarrow m_\alpha$
+ \item Videoanaliza bo uporabljena za $t_0$ in za $h_\alpha \rightarrow V_\alpha \rightarrow m_\alpha \rightarrow F_{g_\alpha}$
\end{itemize}
\vfill\null\columnbreak
\vspace*{-4cm}
@@ -202,24 +202,25 @@
\begin{multicols}{2}
\begin{itemize}
\item CSV datoteki: $F_m(t)$ in $h_\alpha(t)$
- \item Natančnost: $F_m$: \SI{1}{\centi\newton}, $h_\alpha$: \SI{1}{\milli\meter}
+ \item Natanč.: $F_m$: \SI{1}{\centi\newton}, $h_\alpha$: \SI{1}{\milli\meter}, $t$: \SI[parse-numbers=false]{\frac{1}{11}}{\second}
\item $h_\alpha \rightarrow V_\alpha$:
\end{itemize}
$$
- g(x) = \SI{106}{\milli\liter}+(x-\SI{5,5}{\centi\meter})\cdot\pii(\SI{38,197}{\milli\meter})^2
+ g(x) = \SI{106}{\milli\liter}+(x-\SI{5,5}{\centi\meter})\cdot\pi\cdot(\SI{38,197}{\milli\meter})^2
$$
\[
f(x) =
\begin{dcases}
g(x); & \SI{5,5}{\centi\meter} \leq x \leq \SI{24,5}{\centi\meter} \\
x < \SI{106}{\milli\liter}; & x < \SI{5,5}{\centi\meter} \\
- \SI{947}{\milli\liter} > & \\
+ %\SI{947}{\milli\liter} > & \\
+ \SI{1}{\liter} > & \\
x > \SI{871}{\milli\liter}; & x > \SI{24,5}{\centi\meter}
\end{dcases}
\]
\begin{itemize}
\item $\tavg$: čas, ko je $F_m > \SI{0,5}{\newton}$
- \item Po obdelavi: \{$F_\alpha$, $V_\alpha$\}($t$) in \{$\tavg$, $\overline{F_\alpha}$, $š_{max}$\}(\{$P_0$, $V_0$\})
+ \item Po obdelavi s programom \texttt{obdelaj.c}: \{$F_\alpha$, $V_\alpha$\}($t$) in \{$\tavg$, $\overline{F_\alpha}$, $v_{k}$\}(\{$P_0$, $V_0$\})
\end{itemize}
\vfill\null\columnbreak
\vspace*{-4cm}
@@ -249,10 +250,28 @@
\subsection{Rezultati in komentarji nanje ter ugotovitve}
\begin{frame}
\frametitle{\secname}
+ \framesubtitle{\subsecname}
\begin{multicols}{2}
\begin{itemize}
- \item Obstajajo kombinacije $P_0$ in $V_0$, kjer voda ne bo v celoti izrinjena, ker bo prej $P_\alpha = 0$
+ \item Obstajajo kombinacije $P_0$ in $V_0$, kjer voda ne bo v celoti izrinjena, ker bo prej $P_\alpha = 0$. Bojlov zakon:
+ $$
+ P_1V_1=P_2V_2 \rightarrow
+ $$
+ $$
+ \text{izlito} = P_0\cdot(\SI{1}{\liter}-V_0)-(\SI{1}{\liter}-V_0)
+ $$
+ \item 2. njutnov zakon:
+ \[
+ a=\frac{R}{m} \rightarrow
+ \int_{F_m > \SI{0}{\newton}}^{F_m < \SI{0}{\newton}} \frac{R_\alpha}{m_\alpha} d\alpha = a_k
+ \]
\end{itemize}
+ \vfill\null\columnbreak
+ \vspace*{-4cm}
+ \begin{figure}[H]
+ \centering
+ \includegraphics[width=0.5\textwidth]{kompresor.jpg}
+ \end{figure}
\end{multicols}
\end{frame}
diff --git a/fiz/naloga/predstavitev/stderr.log b/fiz/naloga/predstavitev/stderr.log
index 675931e..e85351f 100644
--- a/fiz/naloga/predstavitev/stderr.log
+++ b/fiz/naloga/predstavitev/stderr.log
@@ -1 +1 @@
-<</Type/XRef/Filter/FlateDecode/ID[<D665C258C3C03AC8C070D0EF60CADAF5><D665C258C3C03AC8C070D0EF60CADAF5>]/Index[ 0 588]/Info 586 0 R/Length 1392/Root 585 0 R/Size 588/W[ 1 3 1]>>
+<</Type/XRef/Filter/FlateDecode/ID[<4FFF7B9A65CA4B194627933366624A26><4FFF7B9A65CA4B194627933366624A26>]/Index[ 0 589]/Info 587 0 R/Length 1423/Root 586 0 R/Size 589/W[ 1 4 1]>>
diff --git a/fiz/naloga/predstavitev/stdout.log b/fiz/naloga/predstavitev/stdout.log
index 5341d27..06329a3 100644
--- a/fiz/naloga/predstavitev/stdout.log
+++ b/fiz/naloga/predstavitev/stdout.log
@@ -438,58 +438,30 @@ Overfull \hbox (5.0pt too wide) in paragraph at lines 146--146
Overfull \hbox (5.0pt too wide) in paragraph at lines 171--171
[]
[5 <../tekst/img-tracked/rampa.jpg>]
-
-LaTeX Warning: Command \v invalid in math mode on input line 196.
-
-! Please use \mathaccent for accents in math mode.
-\add@accent ... \let \ignorespaces \relax \accent
- #1 #2\egroup \spacefactor ...
-l.196 \end{frame}
-
-! You can't use `\spacefactor' in math mode.
-\add@accent ... \accent #1 #2\egroup \spacefactor
- \accent@spacefactor
-l.196 \end{frame}
-
-
Overfull \hbox (5.0pt too wide) in paragraph at lines 196--196
[]
Overfull \vbox (57.14857pt too high) detected at line 196
[6 <./totem.jpg>]
-! Undefined control sequence.
-\beamer@doifinframe ...\centi \meter })\cdot \pii
- (\SI {38,197}{\milli \mete...
-l.234 \end{frame}
-
-
-Overfull \hbox (1.17192pt too wide) detected at line 234
+Overfull \hbox (1.17192pt too wide) detected at line 235
\OT1/mathkerncmss/m/sl/10.95 f\OT1/cmss/m/n/10.95 (\OT1/mathkerncmss/m/sl/10.95
x\OT1/cmss/m/n/10.95 ) = []
LaTeX Font Warning: Font shape `OMS/cmss/m/n' undefined
(Font) using `OMS/cmsy/m/n' instead
-(Font) for symbol `textbraceleft' on input line 234.
-
+(Font) for symbol `textbraceleft' on input line 235.
-LaTeX Warning: Command \v invalid in math mode on input line 234.
-! Please use \mathaccent for accents in math mode.
-\add@accent ... \let \ignorespaces \relax \accent
- #1 #2\egroup \spacefactor ...
-l.234 \end{frame}
-
-! You can't use `\spacefactor' in math mode.
-\add@accent ... \accent #1 #2\egroup \spacefactor
- \accent@spacefactor
-l.234 \end{frame}
-
+Overfull \hbox (5.0pt too wide) in paragraph at lines 235--235
+ []
-Overfull \hbox (5.0pt too wide) in paragraph at lines 234--234
+Overfull \vbox (60.08603pt too high) detected at line 235
+[7 <./špric.jpg>] [8] [9]
+Overfull \hbox (5.0pt too wide) in paragraph at lines 276--276
[]
-Overfull \vbox (60.63068pt too high) detected at line 234
-[7 <./špric.jpg>] [8] [9] [10]
+Overfull \vbox (47.67085pt too high) detected at line 276
+[10 <./kompresor.jpg>]
Package biblatex Warning: '\mainlang' is deprecated in favour of
(biblatex) '\textmainlang'.
@@ -522,7 +494,7 @@ s/type1/public/amsfonts/cm/cmssi9.pfb></usr/local/texlive/2021/texmf-dist/fonts
type1/public/amsfonts/cm/cmtt10.pfb></usr/local/texlive/2021/texmf-dist/fonts/t
ype1/public/amsfonts/cm/cmtt9.pfb></usr/local/texlive/2021/texmf-dist/fonts/typ
e1/public/cm-super/sfss1095.pfb>
-Output written on dokument.pdf (14 pages, 16231255 bytes).
+Output written on dokument.pdf (14 pages, 16790038 bytes).
SyncTeX written on dokument.synctex.gz.
Transcript written on dokument.log.
Reading 1 0 R
@@ -867,8 +839,8 @@ Reading 293 0 R
Reading 294 0 R
Reading 295 0 R
-> Uncompressing object 295 0
--> Original Length: 2346
--> Uncompressed Length: 11021
+-> Original Length: 2349
+-> Uncompressed Length: 11163
Reading 296 0 R
Reading 297 0 R
Reading 298 0 R
@@ -902,8 +874,8 @@ Reading 323 0 R
Reading 324 0 R
Reading 325 0 R
-> Uncompressing object 325 0
--> Original Length: 2164
--> Uncompressed Length: 10754
+-> Original Length: 2284
+-> Uncompressed Length: 11194
Reading 326 0 R
Reading 327 0 R
Reading 328 0 R
@@ -964,6 +936,9 @@ Reading 377 0 R
-> Uncompressed Length: 4827
Reading 378 0 R
Reading 379 0 R
+-> Uncompressing object 379 0
+-> Original Length: 556779
+-> Uncompressed Length: 5281650
Reading 380 0 R
Reading 381 0 R
Reading 382 0 R
@@ -987,11 +962,11 @@ Reading 399 0 R
Reading 400 0 R
Reading 401 0 R
Reading 402 0 R
--> Uncompressing object 402 0
--> Original Length: 1253
--> Uncompressed Length: 5481
Reading 403 0 R
-Reading 405 0 R
+-> Uncompressing object 403 0
+-> Original Length: 1834
+-> Uncompressed Length: 7984
+Reading 404 0 R
Reading 406 0 R
Reading 407 0 R
Reading 408 0 R
@@ -1016,16 +991,13 @@ Reading 426 0 R
Reading 427 0 R
Reading 428 0 R
Reading 429 0 R
--> Uncompressing object 429 0
+Reading 430 0 R
+-> Uncompressing object 430 0
-> Original Length: 1181
-> Uncompressed Length: 5210
-Reading 430 0 R
Reading 431 0 R
Reading 432 0 R
Reading 433 0 R
--> Uncompressing object 433 0
--> Original Length: 15
--> Uncompressed Length: 7
Reading 434 0 R
-> Uncompressing object 434 0
-> Original Length: 15
@@ -1035,6 +1007,9 @@ Reading 435 0 R
-> Original Length: 15
-> Uncompressed Length: 7
Reading 436 0 R
+-> Uncompressing object 436 0
+-> Original Length: 15
+-> Uncompressed Length: 7
Reading 437 0 R
Reading 438 0 R
Reading 439 0 R
@@ -1061,10 +1036,10 @@ Reading 459 0 R
Reading 460 0 R
Reading 461 0 R
Reading 462 0 R
--> Uncompressing object 462 0
+Reading 463 0 R
+-> Uncompressing object 463 0
-> Original Length: 1125
-> Uncompressed Length: 5158
-Reading 463 0 R
Reading 464 0 R
Reading 465 0 R
Reading 466 0 R
@@ -1092,13 +1067,13 @@ Reading 487 0 R
Reading 488 0 R
Reading 489 0 R
Reading 490 0 R
--> Uncompressing object 490 0
+Reading 491 0 R
+-> Uncompressing object 491 0
-> Original Length: 1599
-> Uncompressed Length: 6356
-Reading 491 0 R
Reading 492 0 R
Reading 493 0 R
-Reading 495 0 R
+Reading 494 0 R
Reading 496 0 R
Reading 497 0 R
Reading 498 0 R
@@ -1122,10 +1097,10 @@ Reading 515 0 R
Reading 516 0 R
Reading 517 0 R
Reading 518 0 R
--> Uncompressing object 518 0
--> Original Length: 1427
--> Uncompressed Length: 6036
Reading 519 0 R
+-> Uncompressing object 519 0
+-> Original Length: 1426
+-> Uncompressed Length: 6036
Reading 520 0 R
Reading 521 0 R
Reading 522 0 R
@@ -1145,88 +1120,88 @@ Reading 535 0 R
Reading 536 0 R
Reading 537 0 R
Reading 538 0 R
--> Uncompressing object 538 0
--> Original Length: 7194
--> Uncompressed Length: 7668
Reading 539 0 R
+-> Uncompressing object 539 0
+-> Original Length: 7421
+-> Uncompressed Length: 7903
Reading 540 0 R
--> Uncompressing object 540 0
--> Original Length: 7132
--> Uncompressed Length: 7586
Reading 541 0 R
+-> Uncompressing object 541 0
+-> Original Length: 7518
+-> Uncompressed Length: 7986
Reading 542 0 R
--> Uncompressing object 542 0
+Reading 543 0 R
+-> Uncompressing object 543 0
-> Original Length: 6968
-> Uncompressed Length: 7411
-Reading 543 0 R
Reading 544 0 R
--> Uncompressing object 544 0
--> Original Length: 7103
--> Uncompressed Length: 7544
Reading 545 0 R
+-> Uncompressing object 545 0
+-> Original Length: 7224
+-> Uncompressed Length: 7670
Reading 546 0 R
--> Uncompressing object 546 0
--> Original Length: 14309
--> Uncompressed Length: 15366
Reading 547 0 R
+-> Uncompressing object 547 0
+-> Original Length: 14448
+-> Uncompressed Length: 15504
Reading 548 0 R
--> Uncompressing object 548 0
+Reading 549 0 R
+-> Uncompressing object 549 0
-> Original Length: 9546
-> Uncompressed Length: 10184
-Reading 549 0 R
Reading 550 0 R
--> Uncompressing object 550 0
--> Original Length: 11612
--> Uncompressed Length: 12390
Reading 551 0 R
+-> Uncompressing object 551 0
+-> Original Length: 11692
+-> Uncompressed Length: 12477
Reading 552 0 R
--> Uncompressing object 552 0
+Reading 553 0 R
+-> Uncompressing object 553 0
-> Original Length: 10244
-> Uncompressed Length: 10937
-Reading 553 0 R
Reading 554 0 R
--> Uncompressing object 554 0
+Reading 555 0 R
+-> Uncompressing object 555 0
-> Original Length: 9264
-> Uncompressed Length: 9860
-Reading 555 0 R
Reading 556 0 R
--> Uncompressing object 556 0
--> Original Length: 10199
--> Uncompressed Length: 10870
Reading 557 0 R
+-> Uncompressing object 557 0
+-> Original Length: 10309
+-> Uncompressed Length: 10989
Reading 558 0 R
--> Uncompressing object 558 0
--> Original Length: 7493
--> Uncompressed Length: 7958
Reading 559 0 R
+-> Uncompressing object 559 0
+-> Original Length: 7329
+-> Uncompressed Length: 7788
Reading 560 0 R
--> Uncompressing object 560 0
+Reading 561 0 R
+-> Uncompressing object 561 0
-> Original Length: 7624
-> Uncompressed Length: 8098
-Reading 561 0 R
Reading 562 0 R
--> Uncompressing object 562 0
+Reading 563 0 R
+-> Uncompressing object 563 0
-> Original Length: 7877
-> Uncompressed Length: 8367
-Reading 563 0 R
Reading 564 0 R
--> Uncompressing object 564 0
+Reading 565 0 R
+-> Uncompressing object 565 0
-> Original Length: 13347
-> Uncompressed Length: 14059
-Reading 565 0 R
Reading 566 0 R
--> Uncompressing object 566 0
+Reading 567 0 R
+-> Uncompressing object 567 0
-> Original Length: 7810
-> Uncompressed Length: 8290
-Reading 567 0 R
Reading 568 0 R
--> Uncompressing object 568 0
+Reading 569 0 R
+-> Uncompressing object 569 0
-> Original Length: 1731
-> Uncompressed Length: 1887
-Reading 569 0 R
Reading 570 0 R
Reading 571 0 R
-Reading 573 0 R
+Reading 572 0 R
Reading 574 0 R
Reading 575 0 R
Reading 576 0 R
@@ -1241,9 +1216,10 @@ Reading 584 0 R
Reading 585 0 R
Reading 586 0 R
Reading 587 0 R
--> Uncompressing object 587 0
--> Original Length: 1392
--> Uncompressed Length: 2940
+Reading 588 0 R
+-> Uncompressing object 588 0
+-> Original Length: 1423
+-> Uncompressed Length: 3534
/home/a/Documents/sola-gimb-2/fiz/naloga/predstavitev/dokument.pdf was successfully uncompressed to: /home/a/Documents/sola-gimb-2/fiz/naloga/predstavitev/dokument-uncompressed.pdf
**** Error: An error occurred while reading an XREF table.
**** The file has been damaged. This may have been caused