Skip to content
Snippets Groups Projects
Forked from vaclab / ptb-latex
110 commits behind the upstream repository.
calibration_fees-2021.tex 4.42 KiB

%---------------------------
\setcounter{errorcontextlines}{100}
\listfiles
\documentclass[fontsize=11pt,paper=a4,pagesize]{scrartcl}
\usepackage[top=20mm,bottom=25mm,left=15mm,right=15mm]{geometry}

\usepackage{iftex}

\iftutex% LuaTeX oder XeTeX
  \RequirePackage{unicode-math}
  \setsansfont{texgyreheros}[
    Ligatures=TeX,
    Extension=.otf,
    UprightFont=*-regular,
    BoldFont=*-bold,
    ItalicFont=*-italic,
    BoldItalicFont=*-bolditalic]
  \renewcommand*\familydefault{\sfdefault}
\else% pdfTeX oder TeX+dvips
  \usepackage[utf8]{inputenc}
  \usepackage[T1]{fontenc}
  \usepackage{textcomp}
  \usepackage{tgheros}
\fi

\usepackage[english]{babel}
\usepackage{xltabular,booktabs,ragged2e,calc,siunitx-PTB}
\usepackage{eurosym}
\let\texteuro=\officialeuro

\renewcommand\familydefault{\sfdefault}

\newdimen\numwidth
\setlength\numwidth{\widthof{9999.99}}

\newcolumntype{L}{>{\RaggedRight\arraybackslash}X}
\newcolumntype{V}{>{\hspace{\numwidth}\rlap\bgroup}c<{\egroup}}

\newcommand*\markerI{$\circ$}
\newcommand*\markerII{\textbullet}

\newcounter{cdevice}
\newcommand*\tsection[1]{%
  \noalign{\stepcounter{cdevice}}%
  \multicolumn{1}{@{}L}{\textbf{\arabic{cdevice}.~#1}}
}
\newcommand*\basic[1]{%
  \multicolumn{1}{@{\hspace{1em}\markerI~}L}{#1}
}

\setlength\parindent{0pt}

\pagestyle{empty}

\begin{document}

\begin{center} \usekomafont{disposition}\Large
Physikalisch-Technische Bundesanstalt \\[.1\baselineskip]
Vacuum Metrology \\[.5\baselineskip]
Fees for Calibrations \par
\end{center}

\setlength\extrarowheight{.5ex}

\begin{xltabular}[l]{\textwidth}{@{\hspace{1.8em}\markerII~}LV@{}}
\toprule 
\multicolumn{1}{@{}c}{\textbf{Calibration device}} & 
\multicolumn{1}{c@{}}{\textbf{Fee in €}} \\
\toprule
\endhead
\tsection{Ionization gauge} \\
\basic{baked out, two decades, basic fee} & \num{1837.00} \\
\basic{not baked out, two decades, basic fee} & \num{1586.50} \\
additional decade & \num{417.50} \\
additional decade under \SI{1e-10}{\mbar} & \num{542.75} \\
additional decade over \SI{1e-4}{\mbar} & \num{375.75} \\
additional gas, two decades & \num{1043.75} \\

\midrule

\tsection{Spinning rotor gauge} \\
\basic{Sigma (effective accommodation coefficient), basic fee} & 
  \num{1377.75} \\
each additional gas & \num{501.00} \\

\midrule

\tsection{Capacitance diaphragm gauge} \\

\basic{Full scale: \SI{0.01}{\torr}, two decades, basic fee} & \num{1544.75} \\
\basic{Full scale: \SI{0.1}{\torr}, \SI{0.25}{\torr}, two decades, basic fee} & 
  \num{1336.00} \\
Full scale: \SI{0.1}{\torr}, \SI{0.25}{\torr}, each additional gas, 
two decades & \num{668.00} \\
Full scale: \SI{0.1}{\torr}, \SI{0.25}{\torr}, additional decade &
\num{334.00} \\
\basic{Full scale: \SI{1}{\torr}, \SI{10}{\torr}, two decades, basic fee} 
& \num{1169.00} \\
Full scale: \SI{1}{\torr}, \SI{10}{\torr}, each additional gas, two 
decades & \num{501.00} \\
Full scale: \SI{1}{\torr}, \SI{10}{\torr}, additional decade &
\num{292.25} \\
Full scale: \SI{1}{\torr}, \SIrange{30}{130}{\Pa} with FRS5, additional fee & 
  \num{375.75} \\
Full scale: \SI{10}{\torr}, \SIrange{30}{1300}{\Pa} with FRS5, additional fee & 
  \num{584.50} \\  
\basic{Full scale: \SI{100}{\torr}, \SI{1000}{\torr}, three decades, basic fee} 
& \num{1419.50} \\
Full scale: \SI{100}{\torr}, \SI{1000}{\torr}, each additional gas, 
three decades & \num{793.25} \\
Full scale: \SI{100}{\torr}, \SI{1000}{\torr}, additional decade &
\num{250.50} \\
Full scale: \SI{100}{\torr}, \SIrange{30}{10000}{\Pa} with FRS5, 
  additional fee & \num{751.50} \\

\midrule

\tsection{Test leak} \\

\basic{against vacuum, basic fee} & \num{1336.00} \\
each additional temperature or additional pressure & \num{835.00} \\
gas flow under \SI{1e-9}{\mbar\litre\per\second}, additional fee &
\num{835.00} \\  
\basic{against atmosphere, basic fee} & \num{835.00} \\
\basic{against atmosphere, with pressure setting and measuring, basic fee} & 
\num{1336.00} \\ 
each additional temperature or additional pressure & \num{334.00} \\

\bottomrule
\end{xltabular}

These fees are valid from October~1, 2021. German customers pay VAT with the bill.
Customers outside Germany pay VAT reverse charge. In exceptional cases, when the 
actual working time on a unit under test exceeds \SI{25}{\percent} of the 
average working time, the actual costs have to be charged. Other additional 
costs may result from expenditures of PTB for unusual special gases, special 
services, transportation, customs, or other duties.  

\end{document}
%---------------------------