"Analysieren Sie Ihre Ergebnisse aus wissenschaflticher Sicht. Berücksichtigen Sie dabei Ihre oben genannte Forschungsfrage."
"Analysieren Sie Ihre Ergebnisse aus wissenschaflticher Sicht. Berücksichtigen Sie dabei Ihre oben genannte Forschungsfrage. Wie wirkt sich die mit der Probe aus dem Heißwasserbad transportierte Wassermenge auf das Ergebnis aus? Welche weiteren Fehlerquellen gibt es?"
]
]
},
},
{
{
...
...
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
# Kalorimetrie Laborversuch
# Kalorimetrie Laborversuch
Author: XXXXX
Author: XXXXX
Datum: XXXXX
Datum: XXXXX
Gruppe: XXXXX
Gruppe: XXXXX
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
## Forschungsfrage
## Forschungsfrage
Formulieren Sie eine oder mehrere Forschungsfragen zu diesem Versuch.
Formulieren Sie eine oder mehrere Forschungsfragen zu diesem Versuch.
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
## Versuchsaufbau und Durchführung
## Versuchsaufbau und Durchführung
Beschreiben Sie den Versuchsaufbau und die Versuchsdurchführung. Nutzen Sie hier Ihr eigenes Bild.
Beschreiben Sie den Versuchsaufbau und die Versuchsdurchführung. Nutzen Sie hier Ihr eigenes Bild.
# TODO: Call function to get the experiment data out of hdf5
# TODO: Call function to get the experiment data out of hdf5
## DONE ##
## DONE ##
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
index_calorimeter=[]
index_calorimeter=[]
index_bath=[]
index_bath=[]
index_env=[]
index_env=[]
# TODO: Get index of sensors in the temperature array for uncertainty calculation and plot.
# TODO: Get index of sensors in the temperature array for uncertainty calculation and plot.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (ii) Unsicherheit für Plots bestimmen
#### (ii) Unsicherheit für Plots bestimmen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
importlib.reload(utility)
importlib.reload(utility)
calorimeter_data_with_uncert=np.array([[],[]])
calorimeter_data_with_uncert=np.array([[],[]])
env_data_with_uncert=np.array([[],[]])
env_data_with_uncert=np.array([[],[]])
heat_data_with_uncert=np.array([[],[]])
heat_data_with_uncert=np.array([[],[]])
# TODO: Calculate the uncertainty of the sensor data by calling the function.
# TODO: Calculate the uncertainty of the sensor data by calling the function.
## DONE ##
## DONE ##
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
plot_data=np.concatenate(
plot_data=np.concatenate(
(
(
calorimeter_data_with_uncert[None,...],
calorimeter_data_with_uncert[None,...],
env_data_with_uncert[None,...],
env_data_with_uncert[None,...],
heat_data_with_uncert[None,...]
heat_data_with_uncert[None,...]
)
)
)
)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (iii) Daten ploten
#### (iii) Daten ploten
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
importlib.reload(utility)
importlib.reload(utility)
# TODO: Plot and save the plot by calling the function.
# TODO: Plot and save the plot by calling the function.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (iv) Metadaten auslesen
#### (iv) Metadaten auslesen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
# TODO: Read mass of the water from the metadata of the experiment.
# TODO: Read mass of the water from the metadata of the experiment.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (v) Anfangs- und Endwert der Temperatur
#### (v) Anfangs- und Endwert der Temperatur
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
importlib.reload(utility)
importlib.reload(utility)
temperature_mix=None
temperature_mix=None
temperature_start_water=None
temperature_start_water=None
# TODO: Calling function to get the temperatures for heat capacity calculation.
# TODO: Calling function to get the temperatures for heat capacity calculation.
## DONE ##
## DONE ##
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
temperature_start_sample=None
temperature_start_sample=None
# TODO: Determine the initial temperature of the sample.
# TODO: Determine the initial temperature of the sample.
# Since the temperature of the water bath is stable, the initial temperature of the sample can be taken as the average of the 10 data after the start of the measurement.
# Since the temperature of the water bath is stable, the initial temperature of the sample can be taken as the average of the 10 data after the start of the measurement.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (vi) spezifische Wärmekapazität bestimmen
#### (vi) spezifische Wärmekapazität bestimmen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
sample_heat_capa=None
sample_heat_capa=None
# TODO: Calulate specific heat capacity of the sample.
# TODO: Calulate specific heat capacity of the sample.
## DONE ##
## DONE ##
sample_heat_capa
sample_heat_capa
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
### spezifische Wärmekapazität: zweite Probe
### spezifische Wärmekapazität: zweite Probe
Hinweis: Nutzen Sie die Funktionen *get_ids_from_setup* und *get_json_entry* um auf Metadaten zuzugreifen.
Hinweis: Nutzen Sie die Funktionen *get_ids_from_setup* und *get_json_entry* um auf Metadaten zuzugreifen.
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (i) Messdaten einlesen
#### (i) Messdaten einlesen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
datafile_path_prob2=None
datafile_path_prob2=None
# TODO: Define the path to hdf5 file, which containing experiment data.
# TODO: Define the path to hdf5 file, which containing experiment data.
# TODO: Call function to get the experiment data out of hdf5
# TODO: Call function to get the experiment data out of hdf5
## DONE ##
## DONE ##
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
index_calorimeter=[]
index_calorimeter=[]
index_bath=[]
index_bath=[]
index_env=[]
index_env=[]
# TODO: Get index of sensors in the temperature array for uncertainty calculation and plot.
# TODO: Get index of sensors in the temperature array for uncertainty calculation and plot.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (ii) Unsicherheit für Plots bestimmen
#### (ii) Unsicherheit für Plots bestimmen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
importlib.reload(utility)
importlib.reload(utility)
calorimeter_data_with_uncert=np.array([[],[]])
calorimeter_data_with_uncert=np.array([[],[]])
env_data_with_uncert=np.array([[],[]])
env_data_with_uncert=np.array([[],[]])
heat_data_with_uncert=np.array([[],[]])
heat_data_with_uncert=np.array([[],[]])
# TODO: Calculate the uncertainty of the sensor data by calling the function.
# TODO: Calculate the uncertainty of the sensor data by calling the function.
## DONE ##
## DONE ##
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
plot_data=np.concatenate(
plot_data=np.concatenate(
(
(
calorimeter_data_with_uncert[None,...],
calorimeter_data_with_uncert[None,...],
env_data_with_uncert[None,...],
env_data_with_uncert[None,...],
heat_data_with_uncert[None,...]
heat_data_with_uncert[None,...]
)
)
)
)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (iii) Daten ploten
#### (iii) Daten ploten
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
importlib.reload(utility)
importlib.reload(utility)
# TODO: Plot and save the plot by calling the function.
# TODO: Plot and save the plot by calling the function.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (iv) Metadaten auslesen
#### (iv) Metadaten auslesen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
# TODO: Read mass of the water from the metadata of the experiment.
# TODO: Read mass of the water from the metadata of the experiment.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (v) Anfangs- und Endwert der Temperatur
#### (v) Anfangs- und Endwert der Temperatur
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
importlib.reload(utility)
importlib.reload(utility)
temperature_mix=None
temperature_mix=None
temperature_start_water=None
temperature_start_water=None
# TODO: Calling function to get the temperatures for heat capacity calculation.
# TODO: Calling function to get the temperatures for heat capacity calculation.
## DONE ##
## DONE ##
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
temperature_start_sample=None
temperature_start_sample=None
# TODO: Determine the initial temperature of the sample.
# TODO: Determine the initial temperature of the sample.
# Since the temperature of the water bath is stable, the initial temperature of the sample can be taken as the average of the 10 data after the start of the measurement.
# Since the temperature of the water bath is stable, the initial temperature of the sample can be taken as the average of the 10 data after the start of the measurement.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (vi) spezifische Wärmekapazität bestimmen
#### (vi) spezifische Wärmekapazität bestimmen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
sample_heat_capa=None
sample_heat_capa=None
# TODO: Calulate specific heat capacity of the sample.
# TODO: Calulate specific heat capacity of the sample.
## DONE ##
## DONE ##
sample_heat_capa
sample_heat_capa
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
### spezifische Wärmekapazität: dritte Probe
### spezifische Wärmekapazität: dritte Probe
Hinweis: Nutzen Sie die Funktionen *get_ids_from_setup* und *get_json_entry* um auf Metadaten zuzugreifen.
Hinweis: Nutzen Sie die Funktionen *get_ids_from_setup* und *get_json_entry* um auf Metadaten zuzugreifen.
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (i) Messdaten einlesen
#### (i) Messdaten einlesen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
datafile_path_prob3=None
datafile_path_prob3=None
# TODO: Define the path to hdf5 file, which containing experiment data.
# TODO: Define the path to hdf5 file, which containing experiment data.
# TODO: Call function to get the experiment data out of hdf5
# TODO: Call function to get the experiment data out of hdf5
## DONE ##
## DONE ##
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
index_calorimeter=[]
index_calorimeter=[]
index_bath=[]
index_bath=[]
index_env=[]
index_env=[]
# TODO: Get index of sensors in the temperature array for uncertainty calculation and plot.
# TODO: Get index of sensors in the temperature array for uncertainty calculation and plot.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (ii) Unsicherheit für Plots bestimmen
#### (ii) Unsicherheit für Plots bestimmen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
importlib.reload(utility)
importlib.reload(utility)
calorimeter_data_with_uncert=np.array([[],[]])
calorimeter_data_with_uncert=np.array([[],[]])
env_data_with_uncert=np.array([[],[]])
env_data_with_uncert=np.array([[],[]])
heat_data_with_uncert=np.array([[],[]])
heat_data_with_uncert=np.array([[],[]])
# TODO: Calculate the uncertainty of the sensor data by calling the function.
# TODO: Calculate the uncertainty of the sensor data by calling the function.
## DONE ##
## DONE ##
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
plot_data=np.concatenate(
plot_data=np.concatenate(
(
(
calorimeter_data_with_uncert[None,...],
calorimeter_data_with_uncert[None,...],
env_data_with_uncert[None,...],
env_data_with_uncert[None,...],
heat_data_with_uncert[None,...]
heat_data_with_uncert[None,...]
)
)
)
)
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (iii) Daten ploten
#### (iii) Daten ploten
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
importlib.reload(utility)
importlib.reload(utility)
# TODO: Plot and save the plot by calling the function.
# TODO: Plot and save the plot by calling the function.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (iv) Metadaten auslesen
#### (iv) Metadaten auslesen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
# TODO: Read mass of the water from the metadata of the experiment.
# TODO: Read mass of the water from the metadata of the experiment.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (v) Anfangs- und Endwert der Temperatur
#### (v) Anfangs- und Endwert der Temperatur
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
importlib.reload(utility)
importlib.reload(utility)
temperature_mix=None
temperature_mix=None
temperature_start_water=None
temperature_start_water=None
# TODO: Calling function to get the temperatures for heat capacity calculation.
# TODO: Calling function to get the temperatures for heat capacity calculation.
## DONE ##
## DONE ##
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
temperature_start_sample=None
temperature_start_sample=None
# TODO: Determine the initial temperature of the sample.
# TODO: Determine the initial temperature of the sample.
# Since the temperature of the water bath is stable, the initial temperature of the sample can be taken as the average of the 10 data after the start of the measurement.
# Since the temperature of the water bath is stable, the initial temperature of the sample can be taken as the average of the 10 data after the start of the measurement.
## DONE ##
## DONE ##
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
#### (vi) spezifische Wärmekapazität bestimmen
#### (vi) spezifische Wärmekapazität bestimmen
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
sample_heat_capa=None
sample_heat_capa=None
# TODO: Calulate specific heat capacity of the sample.
# TODO: Calulate specific heat capacity of the sample.
## DONE ##
## DONE ##
sample_heat_capa
sample_heat_capa
```
```
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
## Genutzte Daten und Metadaten
## Genutzte Daten und Metadaten
Geben Sie an welche Daten Sie verwenden und wie diese aufgebaut sind. Erklären Sie weiterhin in wenigen Sätzen das genutzte Metadaten-Konzept, sodass eine andere Person Ihre genutzten Daten versteht.
Geben Sie an welche Daten Sie verwenden und wie diese aufgebaut sind. Erklären Sie weiterhin in wenigen Sätzen das genutzte Metadaten-Konzept, sodass eine andere Person Ihre genutzten Daten versteht.
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
## Analyse
## Analyse
Analysieren Sie Ihre Ergebnisse aus wissenschaflticher Sicht. Berücksichtigen Sie dabei Ihre oben genannte Forschungsfrage.
Analysieren Sie Ihre Ergebnisse aus wissenschaflticher Sicht. Berücksichtigen Sie dabei Ihre oben genannte Forschungsfrage. Wie wirkt sich die mit der Probe aus dem Heißwasserbad transportierte Wassermenge auf das Ergebnis aus? Welche weiteren Fehlerquellen gibt es?