Consider the following code:
\documentclass{scrbook}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter{Introduction}
\part{A}
\chapter{First}
\chapter{Second}
\chapter{Third}
\part{B}
\chapter{First}
\chapter{Second}
\chapter{Third}
\appendix
\chapter{Appendix}
\end{document}
As expected, there is a lot of space between Introduction and Part I, as Introduction does not belong to Part I.
However, there is little space between Part II and the Appendix, even though Appendix does not belong to Part II.
Is it possible to make the space between Part II and Appendix as large as the space between Introduction and Part I?
I know I can do this manually Space between conclusion and appendices in ToC, but I need to guess the correct spacing.

