﻿<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<VIRTUALLAB>
	<TITLE>Unbekannte Metalle</TITLE>
 	<AUTHOR>Isabel Braun</AUTHOR>
	<DESCRIPTION>
		Ziel dieser Aufgabe ist es, zwei unbekannte Metalle zu identifizieren und zwei chemische Reaktionsgleichungen 
		korrekt aufzustellen. Hierzu müssen einfache quantitative Experimente durchgeführt werden, um die Reaktion 
		der unbekannten Metalle mit Zink zu bestimmen (gegebene Informationen: molare Masse von Zink, Kupfer, Silber, 
		Eisen und Magnesium; Zink reagiert mit Salzlösungen der Metalle Kupfer, Silber, Eisen, nicht jedoch mit 
		Magnesiumsalzlösung).

	</DESCRIPTION>
	
	<!-- An arbitrary number of realms can be specified here as the data
	  providers of the virtual lab.  Each realm must be given a name and also
	  have a valid driver file.  Other properties are specific to a realm's
	  implementation, and for more information you should see the realm's 
	  documentation. -->
	<REALM name="default" driver="irydium.textRealm.TextRealm"
		filesystem="unbekannteMetalle_es/filesystem.xml"/>
	
	<!-- For now, only one knowledgebase can be present.  The only required
	  field is the driver property, which should refer to a valid Knowlegdebase
	  class.  However, similar to a Realm, each Knowledgebase can have it's own
	  specific properties which should be documented by that Knowledgebase's 
	  documentation. -->
	<KNOWLEDGEBASE driver="irydium.textRealm.TextKnowledgebase"
		species="unbekannteMetalle_es/species.xml" 
		reactions="unbekannteMetalle_es/reactions.xml"
                spectra="unbekannteMetalle_es/spectra.xml"/>
	
	<!-- Assuming that all of the realms specified were indeed loaded, this
	  tag allows you to arbitrarilly mount realm paths into the stockroom
	  view. -->
	<STOCKROOM>
		<MOUNT realm="default" path="/Lagerraum">Irydium Solutions</MOUNT>
	</STOCKROOM>
	
	<!-- Loads the specified viewers.  The Driver property is required of each
	  viewer, and should specify a valid Viewer class to load.  A name for the
	  viewer must also be provided.  One can optionally set the enabled state of
	  the viewer by using the enabled property with a boolean value
	  (default==true). In addition, any other xml parameters specified will be
	  passed into the viewer as well, so each viewer may define additional
	  behaviour on an individual basis. -->
	<SOLUTION_VIEWERS>
		<VIEWER name="Eigenschaften der Lösung"
			driver="irydium.vlab.viewer.PropertiesPanel"
			honorSignificantFigures="false"/>
		<VIEWER name="Speziesanzeige"
			driver="irydium.vlab.viewer.SpeciesViewer"
			aqEnabled="true" sEnabled="true" gEnabled="true" 
			unitsToggleEnabled="false"/>
			<!-- Specify whether the user is able to change
			  the units displayed in the concentration viewer
                          by clicking on the table header. 
			  Use parameter : unitsToggleEnabled="true" -->
			<!-- Specify different units for the concentration
			  viewer when displaying aqueous species by adding parameter : 
			  aqUnits="grams" or aqUnits="moles" 
			  (default is molarity). 
			  Solids will still be displayed in grams and gases
			  in atms. -->
		<VIEWER name="Thermometer"
			driver="irydium.vlab.viewer.Thermometer"/>
		<VIEWER name="pH-Messgerät"
			driver="irydium.vlab.viewer.PhViewer"/>
	</SOLUTION_VIEWERS>
	
	<!-- Specifies the available transfer models for use by the transfer bar.
	  Each model should provide a valid driver to load as well as a String 
	  representation of the transfer model.  In addition, each transfer model
	  supports an optional enabled value (default==true). -->
	<TRANSFERBAR>
		<MODEL name="Präzises Übertragen" 
			driver="irydium.vlab.transfer.PreciseTransferModel"/>
		<MODEL name="Übertragen signifikanter Zahlenwerte"
			driver="irydium.vlab.transfer.SignificantFiguresTransferModel"/>
		<MODEL name="Realistisches Übertragen" 
			driver="irydium.vlab.transfer.RealisticTransferModel"/>
	</TRANSFERBAR>
</VIRTUALLAB>
