Skip to content
Snippets Groups Projects
Commit b34354e0 authored by Hermann, Benjamin's avatar Hermann, Benjamin
Browse files

revision of notebook

parent b3e5d919
No related branches found
No related tags found
No related merge requests found
%% 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.
<img src="image/picture_231010_Beispielbild_Kalorimeter_Pruefstand_Auswertung.jpg" width="800"> <img src="image/picture_231010_Beispielbild_Kalorimeter_Pruefstand_Auswertung.jpg" width="800">
%% Cell type:markdown id: tags: %% Cell type:markdown id: tags:
## Versuchsauswertung ## Versuchsauswertung
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ``` python
import numpy as np import numpy as np
from matplotlib import pyplot as plt from matplotlib import pyplot as plt
from datetime import datetime from datetime import datetime
import h5py as h5 import h5py as h5
import json import json
import sympy import sympy
import utility import utility
import importlib import importlib
plt.style.use("../supplements/FST.mplstyle") plt.style.use("../supplements/FST.mplstyle")
``` ```
%% Cell type:markdown id: tags: %% Cell type:markdown id: tags:
### Kalorimeterkonstante ### Kalorimeterkonstante
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_const = None datafile_path_const = None
# TODO: Define the path to hdf5 file, which containing experiment data for constant. # TODO: Define the path to hdf5 file, which containing experiment data for constant.
## DONE ## ## DONE ##
``` ```
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ``` python
importlib.reload(utility) importlib.reload(utility)
temperature, time, data_name = np.array([]), np.array([]), np.array([]) temperature, time, data_name = np.array([]), np.array([]), np.array([])
# 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
sensor_name = ["calorimeter", "environment", "heating_bath"] sensor_name = ["calorimeter", "environment", "heating_bath"]
index_calorimeter = [] index_calorimeter = []
index_bath = [] index_bath = []
index_env = [] index_env = []
# TODO: Get index of sensors in the temperature array for plot # TODO: Get index of sensors in the temperature array for 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
# Generating plot data by combining data containing uncertainty. # Generating plot data by combining data containing uncertainty.
# np.concatenate is called here where each ndarray contained in the tupel is expected to be 2d and have a first dimension of 2. # np.concatenate is called here where each ndarray contained in the tupel is expected to be 2d and have a first dimension of 2.
# The syntax of [None, ...] syntax represents the addition of an extra dimension to the front. # The syntax of [None, ...] syntax represents the addition of an extra dimension to the front.
# Therefore the plot_data variable is expected to be a 3d ndarray with the first dimension 3 and the second dimension 2. # Therefore the plot_data variable is expected to be a 3d ndarray with the first dimension 3 and the second dimension 2.
# If you got exception hier, make sure the dimensions are correct. # If you got exception hier, make sure the dimensions are correct.
plot_data = np.concatenate( plot_data = np.concatenate(
( (
# Add dimension for plot function to work # Add dimension for plot function to work
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 picture by calling the function. # TODO: plot and save the picture 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
# Heat capacity of Water # Heat capacity of Water
water_heat_capa = 4.18 water_heat_capa = 4.18
water_mass = None water_mass = None
# 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:code id: tags: %% Cell type:code id: tags:
``` python ``` python
current = None current = None
heat_time = None heat_time = None
voltage = None voltage = None
# TODO: Reading heater related data from hdf5 file, please use the same datafile_path_const variable. # TODO: Reading heater related data from hdf5 file, please use the same datafile_path_const variable.
## 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_end = None temperature_end = None
temperature_start = None temperature_start = 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:markdown id: tags: %% Cell type:markdown id: tags:
#### (vi) Kalorimeterkonstante bestimmen #### (vi) Kalorimeterkonstante bestimmen
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ``` python
calorimeter_const = None calorimeter_const = None
# TODO: Calculate heat capacity of the calorimeter # TODO: Calculate heat capacity of the calorimeter
## DONE ## ## DONE ##
calorimeter_const calorimeter_const
``` ```
%% Cell type:markdown id: tags: %% Cell type:markdown id: tags:
### spezifische Wärmekapazität: erste Probe ### spezifische Wärmekapazität: erste 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_prob1 = None datafile_path_prob1 = None
# TODO: Define the path to hdf5 file, which containing experiment data. # TODO: Define the path to hdf5 file, which containing experiment data.
## DONE ## ## DONE ##
``` ```
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ``` python
importlib.reload(utility) importlib.reload(utility)
temperature, time, data_name = np.array([]), np.array([]), np.array([]) temperature, time, data_name = np.array([]), np.array([]), np.array([])
# 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.
## DONE ## ## DONE ##
``` ```
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ``` python
importlib.reload(utility) importlib.reload(utility)
temperature, time, data_name = np.array([]), np.array([]), np.array([]) temperature, time, data_name = np.array([]), np.array([]), np.array([])
# 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.
## DONE ## ## DONE ##
``` ```
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ``` python
importlib.reload(utility) importlib.reload(utility)
temperature, time, data_name = np.array([]), np.array([]), np.array([]) temperature, time, data_name = np.array([]), np.array([]), np.array([])
# 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?
%% Cell type:markdown id: tags: %% Cell type:markdown id: tags:
## Fazit ## Fazit
Ziehe Sie ein persönliches Fazit zum Versuch. Ziehe Sie ein persönliches Fazit zum Versuch.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment