de-CH
utf-8
math math-format
Anwendung zur Flussberechnung
va-04-01
multiple
658560
randRangeExclude(-8,8,[-1,0,1]) randRangeExclude(-8,8,[-1,0,1]) randRangeExclude(-8,8,[-1,0,1]) randRangeExclude(-8,8,[0,1,abs(C)]) randRangeExclude(-8,8,[0]) randRangeExclude(-8,8,[0,X]) A*abs(X)*abs(Y)

Gegeben sei das Vektorfeld K_{\color{red}b}: \mathbb R^2 \to \mathbb R^2 mit K_{\color{red}b}(x,y) =\begin{pmatrix} A x + B y+Cxy^2 \\ D{\color{red}b}y^3 \end{pmatrix} und das Rechteck unten mit der positiv orientierten Randkurve \gamma = \partial R.



graphInit({ range: [[-9, 9],[-9, 9]], scale: [20,20], tickStep: [1,1], gridStep: [1,1], labelStep: [2,2], gridOpacity: 0.1, axisOpacity: 0.8, tickOpacity: 0.6, labelOpacity: 0.8 }); label( [ 0, 9.5 ], "y", "above" ); label( [9.5,0 ], "x", "right" ); line( [0, 0], [X/2, 0], { stroke: ORANGE } ); line( [X/2, 0], [X, 0], { stroke: ORANGE } ); line( [X,0], [X, Y], { stroke: ORANGE } ); line( [X, Y], [0, Y], { stroke: ORANGE } ); line( [0,Y], [0, 0], { stroke: ORANGE } );

Finden Sie ein {\color{red}b}, sodass der Fluss durch \gamma von Innen nach aussen gleich F ist, das heisst

\displaystyle \oint_\gamma K \cdot n \ ds = F.

b {\color{red}b}= -C/(3*D)

Wir möchten den Fluss \displaystyle \oint_\gamma K \cdot n \ ds mit dem Satz von Gauss in der Ebene berechnen.

Dieser besagt \displaystyle \oint_\gamma K \cdot n \ ds = \iint_R \operatorname{div}(K)(x,y) \ dA.

Wir berechnen die Divergenz mit \displaystyle \operatorname{div}(K)(x,y) = \left(A\cdot x + B\cdot y+Cxy^2\right)_x + \left( D{\color{red}b}y^3 \right)_y = A+Cy^2 + 3*D{\color{red}b}y^2.

Wählen wir \displaystyle {\color{red}b} = fractionReduce(-C, 3*D) , wird die Divergenz konstant =A.

Dies setzen wir in den Satz von Gauss ein und erhalten:

\displaystyle \oint_\gamma K \cdot n \ ds = \iint_R A \ dA = A \iint_R 1 \ dA = A \cdot ( Flächeninhalt des Rechtecks R).

Und schlussendlich \displaystyle \oint_\gamma K \cdot n \ ds = A \cdot abs(X) *abs(Y)= F.