Skip to content
Snippets Groups Projects
Commit bc9150e4 authored by Rolfes's avatar Rolfes
Browse files

test

parent c38de354
Branches
No related tags found
No related merge requests found
%% Cell type:markdown id:valued-saskatchewan tags: %% Cell type:markdown id:valued-saskatchewan tags:
## Binäre Bilanz ## Binäre Bilanz
%% Cell type:markdown id:genuine-country tags: %% Cell type:markdown id:genuine-country tags:
### Kennzeichen einer binären Bilanz ### Kennzeichen einer binären Bilanz
* Nur __extensive__ Größen lassen sich bilanzieren * Nur __extensive__ Größen lassen sich bilanzieren
* Beispiele: * Beispiele:
* Masse m, Stoffmenge n, Teilchenzahl N * Masse m, Stoffmenge n, Teilchenzahl N
* Volumen V * Volumen V
* innere Energie U * innere Energie U
* freie Energie F, freie Enthalpie G, Entropie S * freie Energie F, freie Enthalpie G, Entropie S
* Enthalpie H * Enthalpie H
* elektrische Ladung Q * elektrische Ladung Q
* eine binäre Bilanz summiert __zwei__ (binär) Größen zu einer Dritten * eine binäre Bilanz summiert __zwei__ (binär) Größen zu einer Dritten
* Beispiele: * Beispiele:
* $m_{AB} = m_A + m_B $ * $m_{AB} = m_A + m_B $
* $n_{AB} = n_A + n_B $ * $n_{AB} = n_A + n_B $
* $H_{AB} = H_A + H_B $ * $H_{AB} = H_A + H_B $
* Gehaltsangaben erweitern die Ausdrucksweise * Gehaltsangaben erweitern die Ausdrucksweise
* Beispiele * Beispiele
* Verhältnisse \ Beladungen z.B. $\quad\zeta_{A}=\tfrac{m_A}{m_B}$ * Verhältnisse \ Beladungen z.B. $\quad\zeta_{A}=\tfrac{m_A}{m_B}$
* Anteile \ Gehalt z.B. $\quad\xi_{A}=\tfrac{m_A}{m_A + m_B}$ * Anteile \ Gehalt z.B. $\quad\xi_{A}=\tfrac{m_A}{m_A + m_B}$
* Konzentration (bezug auf Volumen) z.B. $\quad\beta_{A}=\tfrac{m_A}{V_A + V_B}$ * Konzentration (bezug auf Volumen) z.B. $\quad\beta_{A}=\tfrac{m_A}{V_A + V_B}$
%% Cell type:markdown id:76ca1106-5032-4a20-abaf-b2b439dbffe8 tags: %% Cell type:markdown id:76ca1106-5032-4a20-abaf-b2b439dbffe8 tags:
### Bedingungen zur Berechnung einer binären Bilanz ### Bedingungen zur Berechnung einer binären Bilanz
* Zwei Größen müssen vorgeben werden * Zwei Größen müssen vorgeben werden
* von den zwei Größen muss eine extensiv sein * von den zwei Größen muss eine extensiv sein
* Volumenberechnung kann nur bei __gleichen Druck und Temperatur__ erfolgen * Volumenberechnung kann nur bei __gleichen Druck und Temperatur__ erfolgen
%% Cell type:markdown id:e9ef6dfa-3343-4a59-b87e-3259c9d3b464 tags: %% Cell type:markdown id:e9ef6dfa-3343-4a59-b87e-3259c9d3b464 tags:
![biary_balance_1.jpg](attachment:fd6be7dd-f8a4-4b4d-8ba6-9936489a7e98.jpg) ![biary_balance_1.jpg](attachment:fd6be7dd-f8a4-4b4d-8ba6-9936489a7e98.jpg)
%% Cell type:code id:ab70ee95-ce3c-4c4c-a7bc-2658a1a5d41a tags: %% Cell type:code id:ab70ee95-ce3c-4c4c-a7bc-2658a1a5d41a tags:
``` python ``` python
import nowo1_base as no_ba import nowo1_base as no_ba
import nowo1_sim_binary as no_bi import nowo1_sim_binary as no_bi
import nowo1_gui_base as no_gui import nowo1_gui_base as no_gui
import nowo1_log_base as no_log import nowo1_log_base as no_log
``` ```
%% Cell type:code id:eec838fd-a5a9-49c8-a873-07c0e3653622 tags: %% Cell type:code id:eec838fd-a5a9-49c8-a873-07c0e3653622 tags:
``` python ``` python
bilanz_1 = no_bi.binary_node('bilanz_1') # Umgebungs bilanz_1 = no_bi.binary_node('bilanz_1') # Umgebungs
step = no_ba.step_single('step') step = no_ba.step_single('step')
gui_data = no_gui.gui_ipysheet('gui_data') gui_data = no_gui.gui_ipysheet('gui_data')
log = no_log.log_sheet('log') log = no_log.log_sheet('log')
``` ```
%% Cell type:code id:5e7dc37c-8fe1-4569-a233-e3e45f450ae2 tags: %% Cell type:code id:5e7dc37c-8fe1-4569-a233-e3e45f450ae2 tags:
``` python ``` python
step.Init(work_objs=[bilanz_1.Calc_A_B]) step.Init(work_objs=[bilanz_1.Calc_A_B])
log.Init(Values=[bilanz_1.log_all], Gui_For_Data = gui_data) log.Init(Values=[bilanz_1.log_all], Gui_For_Data = gui_data)
``` ```
%% Cell type:code id:9a853d13-b21f-475a-8262-b9616bad6a60 tags: %% Cell type:code id:9a853d13-b21f-475a-8262-b9616bad6a60 tags:
``` python ``` python
gui_data.Show_GUI() gui_data.Show_GUI()
``` ```
%% Output %% Output
%% Cell type:code id:155a052c-b1b6-4098-8614-19388211296a tags: %% Cell type:code id:155a052c-b1b6-4098-8614-19388211296a tags:
``` python ``` python
bilanz_1.Show_GUI() bilanz_1.Show_GUI()
``` ```
%% Output %% Output
%% Cell type:code id:aa1fe3ad-55bb-491d-a677-ea20354ba5c1 tags: %% Cell type:code id:aa1fe3ad-55bb-491d-a677-ea20354ba5c1 tags:
``` python ``` python
step.Show_GUI() step.Show_GUI()
``` ```
%% Output %% Output
%% Cell type:code id:6de5555e-b239-41f5-82e6-8691f8eb946a tags:
``` python
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment