4.3.3
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 80 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 74 KiB |
@@ -167,7 +167,7 @@
|
||||
\@writefile{toc}{\contentsline {paragraph}{Logic operations}{49}{}\protected@file@percent }
|
||||
\acronymused{DSP}
|
||||
\acronymused{DSP}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {39}{\ignorespaces Manual implementation of function, returning the maximum of two integer values, taking 12 cycles to execute. The intrinsic functions of the DSP compiler allows a 4-cycle implementation of such an operations.}}{49}{}\protected@file@percent }
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {39}{\ignorespaces Manual implementation of a max-function, returning the maximum of two integer values, taking 12 cycles to execute. The intrinsic functions of the DSP compiler allows a 4-cycle implementation of such an operations.}}{49}{}\protected@file@percent }
|
||||
\newlabel{fig:fig_dsp_code_find_max}{{39}{49}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {paragraph}{Cyclic array iteration}{49}{}\protected@file@percent }
|
||||
\acronymused{ANR}
|
||||
@@ -203,18 +203,25 @@
|
||||
\@writefile{toc}{\contentsline {paragraph}{update\_filter\_coefficient}{53}{}\protected@file@percent }
|
||||
\acronymused{DSP}
|
||||
\acronymused{MAC}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {43}{\ignorespaces Visualization of the coefficient calculation in the $update\_filter\_coefficient$-function during the 2nd cyclce of a calculation loop. The output is multiplied with the step size and the corresponding sample from the sample line, before being added to the current filter coefficient.}}{53}{}\protected@file@percent }
|
||||
\newlabel{fig:fig_dsp_coefficient_cycle.jpg}{{43}{53}{}{}{}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {43}{\ignorespaces Code snippet of the $update\_filter\_coefficient$-function, again making use of of the dual \ac {MAC} architecture of the \ac {DSP} and the fractional multiplication function. Additionaly, 32-bit values are loaded and stored as 64-bit values, using two also intrinisc functions, allowing to update two filter coefficients in a single cycle.}}{53}{}\protected@file@percent }
|
||||
\acronymused{MAC}
|
||||
\acronymused{DSP}
|
||||
\newlabel{fig:fig_dsp_code_update_filter_coefficients}{{43}{53}{}{}{}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {44}{\ignorespaces Visualization of the coefficient calculation in the $update\_filter\_coefficient$-function during the 2nd cyclce of a calculation loop. The output is multiplied with the step size and the corresponding sample from the sample line, before being added to the current filter coefficient.}}{54}{}\protected@file@percent }
|
||||
\newlabel{fig:fig_dsp_coefficient_cycle.jpg}{{44}{54}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {paragraph}{write\_output}{54}{}\protected@file@percent }
|
||||
\newlabel{equation_computing}{{22}{54}{}{}{}}
|
||||
\newlabel{equation_c_1}{{23}{54}{}{}{}}
|
||||
\newlabel{equation_c_2}{{24}{54}{}{}{}}
|
||||
\newlabel{equation_c_3}{{25}{54}{}{}{}}
|
||||
\newlabel{equation_c_4}{{26}{54}{}{}{}}
|
||||
\newlabel{equation_computing_final}{{28}{54}{}{}{}}
|
||||
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.3.3}Performance evaluation of different implementation variants}{54}{}\protected@file@percent }
|
||||
\newlabel{equation_c_5}{{28}{54}{}{}{}}
|
||||
\newlabel{equation_computing_final}{{29}{55}{}{}{}}
|
||||
\acronymused{DSP}
|
||||
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.3.3}Performance evaluation of different implementation variants}{55}{}\protected@file@percent }
|
||||
\@setckpt{chapter_04}{
|
||||
\setcounter{page}{55}
|
||||
\setcounter{equation}{28}
|
||||
\setcounter{page}{56}
|
||||
\setcounter{equation}{29}
|
||||
\setcounter{enumi}{0}
|
||||
\setcounter{enumii}{0}
|
||||
\setcounter{enumiii}{0}
|
||||
@@ -227,7 +234,7 @@
|
||||
\setcounter{subsubsection}{3}
|
||||
\setcounter{paragraph}{0}
|
||||
\setcounter{subparagraph}{0}
|
||||
\setcounter{figure}{43}
|
||||
\setcounter{figure}{44}
|
||||
\setcounter{table}{0}
|
||||
\setcounter{float@type}{16}
|
||||
\setcounter{tabx@nest}{0}
|
||||
@@ -345,10 +352,10 @@
|
||||
\setcounter{bbx:relatedcount}{0}
|
||||
\setcounter{bbx:relatedtotal}{0}
|
||||
\setcounter{parentequation}{0}
|
||||
\setcounter{lstnumber}{14}
|
||||
\setcounter{lstnumber}{15}
|
||||
\setcounter{FancyVerbLine}{0}
|
||||
\setcounter{linenumber}{1}
|
||||
\setcounter{LN@truepage}{54}
|
||||
\setcounter{LN@truepage}{55}
|
||||
\setcounter{FancyVerbWriteLine}{0}
|
||||
\setcounter{FancyVerbBufferLine}{0}
|
||||
\setcounter{FV@TrueTabGroupLevel}{0}
|
||||
|
||||
@@ -137,7 +137,7 @@ The simple function shown in Figure \ref{fig:fig_dsp_code_find_max} returns the
|
||||
return (a > b) ? a : b;
|
||||
}
|
||||
\end{lstlisting}
|
||||
\caption{Manual implementation of function, returning the maximum of two integer values, taking 12 cycles to execute. The intrinsic functions of the DSP compiler allows a 4-cycle implementation of such an operations.}
|
||||
\caption{Manual implementation of a max-function, returning the maximum of two integer values, taking 12 cycles to execute. The intrinsic functions of the DSP compiler allows a 4-cycle implementation of such an operations.}
|
||||
\label{fig:fig_dsp_code_find_max}
|
||||
\end{figure}
|
||||
\paragraph{Cyclic array iteration}
|
||||
@@ -167,16 +167,17 @@ To support such operations, a 72-bit accumulator is provided, allowing to store
|
||||
|
||||
\subsubsection{Performance quantization of the ANR calculation}
|
||||
The $calculate\_output()$-function, forms the center of the \ac{ANR} algorithm on the \ac{DSP} core and is responsbile for the actual processing of the audio samples. The general functionality of the function in C is the same as in the high-level implementation (refer to Figure \ref{fig:fig_anr_logic}), and will therefore not be described in detail again. The main focus lies now on the computational efficiency of the different parts of the function, with the goal of generating a formula by quantizizing the computational effort of the different sub-parts in relation to changeable parameters like the filter length.\\ \\
|
||||
The $calculate\_output()$ functions consists out of the following four main parts:
|
||||
The $calculate\_output()$ functions consists out of the following five main parts:
|
||||
\begin{itemize}
|
||||
\item $write\_buffer$: Pointer handling and buffer management
|
||||
\item $apply\_fir\_filter$: Application of the \ac{FIR} filter on the reference noise signal
|
||||
\item $update\_output$: Calculation of the output sample (=error signal)
|
||||
\item $update\_filter\_coefficients$: Update of the \ac{FIR} filter coefficients based on the error signal
|
||||
\item $write\_output$: Writing the output sample back to the output port in the shared memory section
|
||||
\end{itemize}
|
||||
These sub-functions feature \ac{DSP}-spefic optimizations and are partly depenend on the setable parameters like the filter length in regard of their computational cost. The following paragraphs will analyze the computational efficiency of these sub-functions in detail.
|
||||
\paragraph{write\_buffer}The $write\_buffer$-function is responsible for managing the input line, where the samples of the reference noise signal are stored for further processing. The buffer management mainly consits out of a cyclic pointer increase operation and a pointer dereference operation to write the new sample into the buffer. The cyclic pointer increase operation is implemented using the already mentioned intrinsic function of the \ac{DSP} compiler, while the pointer dereference operation takes 15 cycles to execute. This results in a total duration of 16 cycles for the $write\_buffer$-function to process, indipentent of the filter length or other parameters.
|
||||
\paragraph{apply\_fir\_filter} The $apply\_fir\_filter$-function is responsible for applying the coefficients of the \ac{FIR} filter on the reference noise signal samples stored in the input line. The needed cycles for this function are mainly depenendent on the lenght of the filter, as the number of multiplications and additions increase with the filter length. To increase the perdormance, the dual \ac{MAC} architecture of the \ac{DSP} is utilized, allowing two multiplications and two additions to be performed in a single cycle. Another \ac{DSP}-specific optimization is the use of the already introduced 72-bit accumulators and the fractional multiplication function, which allows to perform multiplications on two 32-bit integers without losing precision or the need for manual bit-shifting operations.
|
||||
\paragraph{apply\_fir\_filter} The $apply\_fir\_filter$-function is responsible for applying the coefficients of the \ac{FIR} filter on the reference noise signal samples stored in the input line. The needed cycles for this function are mainly depenendent on the lenght of the filter, as the number of multiplications and additions increase with the filter length. To increase the performance, the dual \ac{MAC} architecture of the \ac{DSP} is utilized, allowing two multiplications and two additions to be performed in a single cycle. Another \ac{DSP}-specific optimization is the use of the already introduced 72-bit accumulators and the fractional multiplication function, which allows to perform multiplications on two 32-bit integers without losing precision or the need for manual bit-shifting operations.
|
||||
\begin{figure}[H]
|
||||
\centering
|
||||
\begin{lstlisting}[language=C]
|
||||
@@ -203,36 +204,64 @@ These sub-functions feature \ac{DSP}-spefic optimizations and are partly depenen
|
||||
\caption{Visualization of the FIR filter calculation in the $apply\_fir\_filter$-function during the 2nd cyclce of a calculation loop. The reference noise signal samples are stored in the sample line, while the filter coefficients are stored in a separate memory section (filter line).}
|
||||
\label{fig:fig_dsp_fir_cycle.jpg}
|
||||
\end{figure}
|
||||
\noindent The final result is represented in a computing effort of 1 cycle per item in the sample line buffer (which equals the filter length) plus 16 cycles for general function overhead, resulting in a total of $L+16$ cycles for the $apply\_fir\_filter$-function, with $L$ being the filter length.
|
||||
\noindent The final result is represented in a computing effort of 1 cycle per item in the sample line buffer (which equals the filter length) plus 12 cycles for general function overhead, resulting in a total of $N+12$ cycles for the $apply\_fir\_filter$-function, with $N$ being the filter length.
|
||||
\paragraph{update\_output} The $update\_output$-function is responsible for calculating the output sample based on the error signal and the accumulated filter output. The calculation is a simple subtraction and only takes 1 cycle to execute, independent of the filter length or other parameters.
|
||||
\paragraph{update\_filter\_coefficient} The $update\_filter\_coefficient$-function represents the most computationally expensive part of the $calculate\_output()$-function. The calculated output from the previous function is now multiplied with the step size and the corresponding sample from the reference noise signal, which is stored in the sample line buffer. The result is then added to the current filter coefficient to update it for the next cycle. Again, \ac{DSP}-specific optimizations, like the dual \ac{MAC} architecture, are used, resulting in a computing effort of 5 cycles per filter coeffcient. Per function call, a overhead of XX cycles is added, resulting in a total of $5L+XX$ cycles for the $update\_filter\_coefficient$-function, with $L$ being the filter length.
|
||||
\paragraph{update\_filter\_coefficient} The $update\_filter\_coefficient$-function represents the second computationally expensive part of the $calculate\_output()$-function. The calculated output from the previous function is now multiplied with the step size and the corresponding sample from the reference noise signal, which is stored in the sample line buffer. The result is then added to the current filter coefficient to update it for the next cycle. Again, \ac{DSP}-specific optimizations, like the dual \ac{MAC} architecture, are used, resulting in a computing effort of 6 cycles per filter coeffcient. Per function call, a overhead of 8 cycles is added, resulting in a total of $6*N+8$ cycles for the $update\_filter\_coefficient$-function, with $N$ again being the filter length.
|
||||
\begin{figure}[H]
|
||||
\centering
|
||||
\begin{lstlisting}[language=C]
|
||||
for (int i=0; i< n_coeff; i+=2) chess_loop_range(1,){
|
||||
lldecompose(*((long long *)p_w0), w0, w1);
|
||||
acc_w0 = to_accum(w0);
|
||||
acc_w1 = to_accum(w1);
|
||||
|
||||
acc_w0 += fract_mult(correction, *p_x0);
|
||||
acc_w1 += fract_mult(correction, *p_x1);
|
||||
|
||||
p_x0 = cyclic_add(p_x0, -2, p_xstart, sample_line_len);
|
||||
p_x1 = cyclic_add(p_x1, -2, p_xstart, sample_line_len);
|
||||
|
||||
*((long long *)p_w0) = llcompose(rnd_saturate(acc_w0), rnd_saturate(acc_w1));
|
||||
p_w0+=2;
|
||||
}
|
||||
\end{lstlisting}
|
||||
\caption{Code snippet of the $update\_filter\_coefficient$-function, again making use of of the dual \ac{MAC} architecture of the \ac{DSP} and the fractional multiplication function. Additionaly, 32-bit values are loaded and stored as 64-bit values, using two also intrinisc functions, allowing to update two filter coefficients in a single cycle.}
|
||||
\label{fig:fig_dsp_code_update_filter_coefficients}
|
||||
\end{figure}
|
||||
\begin{figure}[H]
|
||||
\centering
|
||||
\includegraphics[width=1.0\linewidth]{Bilder/fig_dsp_coefficient_cycle.jpg}
|
||||
\caption{Visualization of the coefficient calculation in the $update\_filter\_coefficient$-function during the 2nd cyclce of a calculation loop. The output is multiplied with the step size and the corresponding sample from the sample line, before being added to the current filter coefficient.}
|
||||
\label{fig:fig_dsp_coefficient_cycle.jpg}
|
||||
\end{figure}
|
||||
\noindent The total computing effort of the $calculate\_output()$-function in dependency of the filter length $L$ can now be calculated by summing up the computing efforts of the different sub-functions:
|
||||
\paragraph{write\_output} The $update\_output$-function is responsible for writing the calculated output sample back into the shared memory section. The operation takes 5 cycles to execute, independent of the filter length or other parameters.
|
||||
\noindent The total computing effort of the $calculate\_output()$-function in dependency of the filter length $N$ can now be calculated by summing up the computing efforts of the different sub-functions:
|
||||
\begin{equation}
|
||||
\label{equation_computing}
|
||||
C_{total} = C_{write\_buffer} + C_{apply\_fir\_filter} + C_{update\_output} + C_{update\_filter\_coefficient}
|
||||
\begin{aligned}
|
||||
C_{total} = C_{write\_buffer} + C_{apply\_fir\_filter} + C_{update\_output} + \\
|
||||
C_{update\_filter\_coefficient} + C_{write\_output}
|
||||
\end{aligned}
|
||||
\end{equation}
|
||||
The sub-functions can now seperatly be expressed in dependency of the filter length $L$ and also in dependency of the update rate of the filter coefficients, which is represented by the parameter $1/U$ (e.g., if the coefficients are updated every 2 cycles, $1/U$ would result in a vaule of 0.5):
|
||||
The sub-functions can seperatly be expressed in dependency of the filter length $N$ and also in dependency of the update rate of the filter coefficients, which is represented by the parameter $1/U$ (e.g., if the coefficients are updated every 2 cycles, $1/U$ would result in a vaule of 0.5):
|
||||
\begin{gather}
|
||||
\label{equation_c_1}
|
||||
C_{write\_buffer} = 16 \\
|
||||
\label{equation_c_2}
|
||||
C_{apply\_fir\_filter} = L + 16 \\
|
||||
C_{apply\_fir\_filter} = N + 12 \\
|
||||
\label{equation_c_3}
|
||||
C_{update\_output} = 1 \\
|
||||
\label{equation_c_4}
|
||||
C_{update\_filter\_coefficient} = \frac{1}{U}(5L + XX)\\
|
||||
C_{update\_filter\_coefficient} = \frac{1}{U}(6*N + 8)\\
|
||||
C_{write\_output} = 5 \\
|
||||
\label{equation_c_5}
|
||||
\end{gather}
|
||||
\noindent By inserting the sub-function costs into the total computing effort formula, Equation \ref{equation_computing} can now be expressed as:
|
||||
\begin{equation}
|
||||
\label{equation_computing_final}
|
||||
C_{total} = L + \frac{5L+XX}{U} + 17
|
||||
C_{total} = N + \frac{6*N+8}{U} + 34
|
||||
\end{equation}
|
||||
Equation \ref{equation_computing_final} now provides an estimation of the necessary computing effort for one output sample in relation to the filter length $N$ and the update rate of the filter coefficients $1/U$. This formula can now be used to estimate the needed computing power (and therefore the power consumption) of the \ac{DSP} core for different parameter settings, alowing to find an optimal parameter configuration in regard of the quality of the noise reduction and the power consumption of the system.
|
||||
\subsubsection{Performance evaluation of different implementation variants}
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" version="29.3.8">
|
||||
<diagram name="Page-1" id="V-e6ogSouhfiz4ZDr4nW">
|
||||
<mxGraphModel dx="983" dy="512" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
|
||||
<mxGraphModel dx="815" dy="425" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
|
||||
<root>
|
||||
<mxCell id="0" />
|
||||
<mxCell id="1" parent="0" />
|
||||
@@ -688,7 +688,7 @@
|
||||
<mxCell id="GcUYTYrn2KeO2qM5n07K-316" parent="1" style="text;html=1;whiteSpace=wrap;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;rounded=0;fontStyle=1;fontSize=14;" value="2nd Cycle - FIR Caclulation" vertex="1">
|
||||
<mxGeometry height="30" width="210" x="40" y="820" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="GcUYTYrn2KeO2qM5n07K-317" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" value="Acc<div><span style="font-size: 7px;">(=w1 * x1)</span></div>" vertex="1">
|
||||
<mxCell id="GcUYTYrn2KeO2qM5n07K-317" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" value="Acc<div><span style="font-size: 7px;">(=w<sub>1</sub> * x<sub>1</sub>)</span></div>" vertex="1">
|
||||
<mxGeometry height="30" width="50" x="264.5" y="1091" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="GcUYTYrn2KeO2qM5n07K-318" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" value="d<sub>2</sub>" vertex="1">
|
||||
@@ -730,7 +730,7 @@
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-8" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="0" vertex="1">
|
||||
<mxGeometry height="30" width="80" x="753.75" y="605" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-9" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" value="w<sub>1<br></sub><font style="font-size: 10px;">(=&nbsp;<span style="color: rgb(32, 33, 34); font-family: sans-serif; font-style: italic; text-align: start;">µ*d1*x1)</span></font>" vertex="1">
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-9" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" value="w<sub>1<br></sub><font style="font-size: 10px;">(=&nbsp;<span style="color: rgb(32, 33, 34); font-family: sans-serif; font-style: italic; text-align: start;">µ*d<sub>1</sub>*x<sub>1</sub>)</span></font>" vertex="1">
|
||||
<mxGeometry height="30" width="80" x="913.75" y="515" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-10" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" value="0" vertex="1">
|
||||
@@ -964,10 +964,10 @@
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-117" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="0" vertex="1">
|
||||
<mxGeometry height="30" width="80" x="753.75" y="995" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-118" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" value="w<sub>1</sub><br><font style="font-size: 10px;"><span style="background-color: transparent; color: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));">(= w<sub>1</sub> +&nbsp;</span><span style="background-color: transparent; color: rgb(32, 33, 34); font-family: sans-serif; font-style: italic; text-align: start;">µ*o2*x2)</span></font>" vertex="1">
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-118" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" value="w<sub>1</sub><br><font style="font-size: 10px;"><span style="background-color: transparent; color: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));">(= w<sub>1</sub> +&nbsp;</span><span style="background-color: transparent; color: rgb(32, 33, 34); font-family: sans-serif; font-style: italic; text-align: start;">µ*o<sub>2</sub>*x<sub>2</sub>)</span></font>" vertex="1">
|
||||
<mxGeometry height="30" width="80" x="913.75" y="905" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-119" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" value="w<sub>2</sub><br><font style="font-size: 10px;"><span style="background-color: transparent; color: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));">(=&nbsp;</span><span style="background-color: transparent; color: rgb(32, 33, 34); font-family: sans-serif; font-style: italic; text-align: start;">µ*o2*x2)</span></font>" vertex="1">
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-119" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" value="w<sub>2</sub><br><font style="font-size: 10px;"><span style="background-color: transparent; color: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));">(=&nbsp;</span><span style="background-color: transparent; color: rgb(32, 33, 34); font-family: sans-serif; font-style: italic; text-align: start;">µ*o<sub>2</sub>*x<sub>2</sub>)</span></font>" vertex="1">
|
||||
<mxGeometry height="30" width="80" x="913.75" y="935" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-120" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" value="0" vertex="1">
|
||||
@@ -1156,7 +1156,7 @@
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-157" parent="1" style="text;html=1;whiteSpace=wrap;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;rounded=0;fontStyle=1;fontSize=14;" value="2nd Cycle - Coefficient adaption" vertex="1">
|
||||
<mxGeometry height="30" width="236.25" x="623.75" y="820" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-158" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" value="Acc<div><span style="font-size: 7px;">(=w1 * x1)</span></div>" vertex="1">
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-158" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" value="Acc<div><span style="font-size: 7px;">(=w<sub>1</sub> * x<sub>1</sub>)</span></div>" vertex="1">
|
||||
<mxGeometry height="30" width="50" x="848.25" y="1091" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="zqf6Z4ZYqrToiwcanCgf-159" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" value="d<sub>2</sub>" vertex="1">
|
||||
|
||||
Reference in New Issue
Block a user