<!doctype html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8">        <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9">               <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js">                      <!--<![endif]-->
<head>
    <meta charset="utf-8">

    <title>Deutschland 83/Berlin 16 - students get insiders’ view of German capital </title>

    <link type="text/css" rel="stylesheet" href="/_assets/css/general/basic.css" />
    <link rel="canonical" href="https://www-2018.swansea.ac.uk/press-office/news-archive/2016/deutschland83berlin16-studentsgetinsidersviewofgermancapital.php" /> 





<meta name="viewport" content="width=device-width, initial-scale=1.0;">
<meta property="su:page-type" content="News Item">
<meta property="su:section-id" content="106934">

    <script type="text/javascript" src="/_assets/vendor/enhance.js"></script>
    <script type="text/javascript">

        var SU =        {
                            customScripts: {
                                preRepositioning:  [],
                                postRepositioning: []
                            }
                        },

            dataLayer = [],

            styles =    [
                            '/_assets/css/general/desktop.css',
                            {
                                href: '/_assets/css/common/ie.css',
                                iecondition: 'all'
                            },
                            {
                                href: '/_assets/css/common/ie7.css',
                                iecondition: 7
                            },
                            {
                                href: '/_assets/css/common/ie8.css',
                                iecondition: 8
                            }
                        ],
        
            scripts =   [
                           '/_assets/js/common/modernizr-jquery.all.min.js'
                        ];
        

        

        

        scripts = scripts.concat([
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.js',
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.swipe.js',
            '/_assets/vendor/jquery-plugins/auto-complete/jquery.auto-complete.js',
            '/_assets/vendor/mustache.js',
            '/_assets/js/common/console.js',
            '/_assets/js/common/su.js',
            '/_assets/js/common/su/http/link.js',
            '/_assets/js/common/jquery-plugins/jQuery.showCookieMessage.js',
            '/_assets/vendor/jquery-plugins/ba-throttle-debounce/jquery.ba-throttle-debounce.js',
            '/_assets/js/common/jquery-plugins/jQuery.initialiseNavigation.js',
            '/_assets/js/common/jquery-plugins/jQuery.inputClear.js',
            '/_assets/js/general/desktop/enhanceFooterLinks.js',
            '/_assets/js/general/desktop/jQuery.initialiseSplashGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseFeaturedGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseTabPods.js',
            '/_assets/js/general/desktop/jQuery.initialiseQuadSliders.js',
            '/_assets/js/general/desktop/jQuery.stripeTableRows.js',
            '/_assets/vendor/jquery-plugins/ba-bbq/jquery.ba-bbq.js',
            '/_assets/js/general/desktop/jQuery.initialiseExpanders.js',
            '/_assets/vendor/jquery-plugins/cookie/jquery.cookie.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.easing.1.3.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.jBreadCrumb.1.1.js',
            '/_assets/js/general/desktop.js',
            '/_assets/js/precedent/coreFunctions.js'
        ]);

        enhance({
            loadStyles: styles,
            loadScripts: scripts,
            forcePassText: 'Enhanced version',
            forceFailText: 'Basic version'
        });
    </script>


</head>

<body id="content" class="layout-general-wrapper">
 

    <div id="general" class="layout-general">

        <!--noindex-->
        <div id="header" class="layout-header">
<h1 id="logo" class="logo">
    <span class="logo-text">Deutschland 83/Berlin 16 - students get insiders’ view of German capital </span>
    <a id="logo-link" href="https://www.swansea.ac.uk/">

        <img class="logo-image" src="/_assets/images/precedent/logo.en.png" alt="Swansea University Logo" />

    </a>
</h1>
            <div id="skipToContent" class="skip-to-content">
                <a class="skip-to-content-link" tabindex="1" href="#content-items" title="skip to content">Skip to content</a>
            </div>

<div id="globalNavWrapper" class="header-links">
    <ul id="globalNav" class="header-links-list">
    
        <!-- navigation object : SU_audience navigation --><li class="header-links-list-item"><a href="http://myuni.swan.ac.uk/">Current Students</a></li><li class="header-links-list-item"><a href="https://staff.swansea.ac.uk/">Staff</a></li><li class="header-links-list-item"><a href="http://www.swanseauniversity.com.cn">&#20013;&#25991;</a></li>
        
        

    </ul>
</div>
            
            <div id="globalSearch" class="global-search-form">
<div class="global-search-form">
	<form action="https://www.swansea.ac.uk/search/">
	  <div>
	    <input type="hidden" name="c" value="swansea-web" />
	    <input
           id="global-search-form-q"
	       type="text"
	       name="q"
	       placeholder="Site Search"
	       size="31"
	       class="global-search-form-query"
	    />
	    <input class="global-search-form-submit" type="submit" value="GO" />
	  </div>
	</form>
</div>

<script class="register-custom-scripts">
(function () {
    SU.customScripts.postRepositioning.push(function () {
    
        var endpoint = 'https://swansea.funnelback.co.uk/s/suggest.json',

            unique = function(arr) {
                var hash = {}, result = [];
                for ( var i = 0, l = arr.length; i < l; ++i ) {
                    if ( !hash.hasOwnProperty(arr[i]) ) {
                        hash[ arr[i] ] = true;
                        result.push(arr[i]);
                    }
                }
                return result;
            },
            
            setHandler = function() {
                $('#global-search-form-q').off().autoComplete({
                    source: function(term, response) {
                        console.log("You typed [" + term + "]");
                        $.getJSON(
                            endpoint,
                            {
                                collection:    'swansea-web',
                                partial_query: term
                            },
                            function(data) {
                                response(unique(data));
                            }
                        );
                    }
                });
            };
    
        console.group('Initialising auto complete');
        window.setTimeout(function () {
            setHandler();
        }, 500);
        
        console.groupEnd();
    });
}());
</script>
            </div>
            
            <div id="naviBar" class="main-nav">
<!-- navigation object : SU_Main_Nav -->

            </div>
        </div>
        <!--endnoindex-->
        
        <div class="layout-container">
            <div id="main" class="layout-content">
                <div id="contentHeader" class="content-header">

                    <!--noindex-->
<div class="breadCrumbHolder module">
    <div class="breadCrumb module">
        <ul>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/" itemprop="url">
                    <span itemprop="title">Home</span>
                </a>
            </li>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/press-office/" itemprop="url">
                    <span itemprop="title">Press Office</span>
                </a>
            </li>
	</ul>
    </div>
</div>
                    <!--endnoindex-->

                    <h1 class="content-header-heading">Deutschland 83/Berlin 16 - students get insiders’ view of German capital </h1>
                </div>

                <div id="splash-items" class="layout-splash">
                </div>

                <!--noindex-->
                <div class="layout-content-nav">
                    <div id="secondaryNavWrapper"></div>
                </div>
                <!--endnoindex-->

                <div id="content-items" class="layout-content-items content-items">
                    <div class="layout-featured-items">
                    </div>

                    <div class="layout-article-items">
  <div class="news-item-fulltext">
<p style="padding: 1.5em; text-align: center; background-color: #ffc266; font-weight: bold">
    Please note, this page has been archived and is no longer being updated.
</p>
    <p class="news-item-summary">A group studying German at Swansea University got an insider’s perspective on Berlin, one of the world’s most vibrant and fascinating cities, on a recent study visit, supported by a successful bid for German government funding.  </p>

    <div class="news-item-content">
        <p>&zwnj;The city is not only the German capital, but one of the main focal points for the entire continent.&nbsp; Its front-line role in the Cold War was recently in the spotlight once again thanks to the success of Channel 4&rsquo;s spy series <strong><a href="https://www.youtube.com/watch?v=Eb0yFr2jVAU">Deutschland 83</a></strong>.&nbsp; Yet this is just one of the chapters in its long and extraordinary history.</p>
<p>As well as visiting some of the well-known sites, from the site of the Berlin Wall to the Brandenburg Gate, the students also visited people and places which are not on the usual tourist trail, from immigrant communities to street artists.&nbsp; &nbsp;</p>
<p>They met Berliners from different walks of life and cultural backgrounds, giving them the perfect opportunity to improve their German language skills.&nbsp;&nbsp; The aim was to bring alive the language, culture and history of the city, giving students a real insider&rsquo;s perspective on Berlin past and present.</p>
<p><img src="/media/t4_8521058299507765354.jpg"
alt="600 x 369" title="" /></p>
<p><em>Picture:&nbsp; the group on their bikes at the Berlin Wall &nbsp; </em><a href="https://www.flickr.com/photos/swanseauniversity/albums/72157669956563336"><strong>See more pictures of the group in Berlin</strong></a></p>
<p>The study trip was organised by German lecturer Christiane G&uuml;nther, who submitted a successful bid to the DAAD, the cultural arm of the German government, which covered much of the cost of the trip, making it affordable for students.&nbsp; &nbsp;</p>
<p>Christiane, who led a similar trip in 2013, and who has also arranged public open days and other events for her students, won a <strong><a href="https://twitter.com/swanseauni/status/488715952100749312">University award for excellence in teaching</a></strong> in 2014.</p>
<p><em><strong>Watch:&nbsp; Trailer for Channel 4's hit series Deutschland 83, largely set in Cold War Berlin</strong></em></p>
<p><iframe height="315" src="https://www.youtube.com/embed/Eb0yFr2jVAU" width="580"></iframe></p>
<p><strong>Caitlin Jones, one of the students on the trip, described some of the group&rsquo;s experiences, and their reactions:<br /><br /></strong>&ldquo;Each day for a week we toured Berlin, taking part in workshops and discussions which gave us insight not only into Berlin&rsquo;s past but also into the buzz of Berlin as a modern city. A member of the group would be in charge of documenting each activity for a report that would be completed upon our return to the UK. <br /><br />Some of these activities included a three-hour bicycle tour of the Berlin Wall, guided tours of the Jewish Museum, Rainbow Quarter and Deutsche Welle broadcasting headquarters, discussions with students from the Potsdam University and workshops with pupils and street artists.<br /><br />In between the note-taking and sight-seeing, we even had time to enjoy the areas of German culture that we, as students, were bound to want to explore, making pit-stops in breweries, chocolate shops and d&ouml;ner kebab stalls!<br /><br />Not only did the trip provide an active (sole-destroying) insight into the cultural back streets of the popular tourist destination, but it installed in each of us a desire to return to Berlin, as well as a sense of community which we celebrated on our final night in Berlin by watching Hertha vs Hannover at the Olympia Stadium. <br /><img src="/media/t4_533019162795047725.jpg"
alt="600 x 450" title="" /></p>
<p><em>Picture: group selfie at the Brandenburg Gate, historic heart of Berlin.</em></p>
<p>Will Goddard, a member of the beginners&rsquo; German class, said that: &ldquo;The experience was truly amazing&hellip; After experiencing the culture and atmosphere at the stadium, I feel it earned the best event.&rdquo;<br /><br />By the end of the week, we all felt a huge improvement in our knowledge of the German language and were ready to thank those that provided us with the opportunity to explore Germany&rsquo;s cultural capital. <br /><br />Xiaolong He (Bruce) said:&nbsp; &ldquo;I really appreciate DAAD and our dear Christiane offered us such a precious opportunity to explore and experience Berlin&rdquo;.&nbsp;&nbsp; Bethan Meadham stated, &ldquo;I am so grateful for my wonderful lecturer Christiane for organising the trip and making it so special.&rdquo; &nbsp;<br /><br />The study trip was an unforgettable experience, and one that each of us would highly recommend to anyone that is given the opportunity. However, we advise you to pack for a long stay, as once you visit Berlin, you will never want to leave.<strong> <br /></strong></p>
<p><img src="/media/t4_8086394721337773516.jpg"
alt="400 x 609" title="German lecturer who was awarded an ELTA in July 2014.  Also led study trip to Berlin" /><strong>Christiane G&uuml;nther explained</strong>:</p>
<p>&ldquo;The theme of the study trip was &lsquo;Intercultural encounters&rsquo;, and we met representatives from many different groups in Berlin.</p>
<p>The study trip brings the culture and the history of Germany alive.&nbsp; Students had a very authentic experience and they were able to use their German on a daily basis.</p>
<p>It will hopefully have given students a real understanding of one of Europe&rsquo;s most important and fascinating cities&rdquo;.&nbsp; &nbsp;</p>
<p>&zwnj;&zwnj;<em>Picture: Christiane G&uuml;nther, who organised the study trips, pictured on receiving her <strong><a href="https://twitter.com/swanseauni/status/488715952100749312">Swansea University award for Excellence in Teaching</a></strong>, summer graduation, July 2014.</em></p>
<p><a href="https://www.flickr.com/photos/swanseauniversity/albums/72157669956563336"><strong>Pictures of the Berlin visit</strong> </a></p>
<p><strong><a href="/press-office/news-archive/2015/recordthreeswanseastudentswinprestigiousgermanscholarships.php">Record three students win prestigious German scholarships</a></strong></p>
<p><strong><a href="/press-office/news-archive/2014/localpeopleenjoyatasteofgermanatfreeeventandfilm.php">Local people enjoy a taste of German at free event and film</a></strong></p>
<p><strong><a href="/german/">Study German at Swansea University</a></strong></p>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Kevin Sullivan</span>
        </li>

        <li class="news-item-post-info">
            <a href="/press-office/news-archive/2016/deutschland83berlin16-studentsgetinsidersviewofgermancapital.php" rel="bookmark">
                <abbr class="published" title="2016-06-21T11:37:00+01:00">Tuesday 21 June 2016 11.37 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2019-09-18T16:01:00+01:00">Wednesday 18 September 2019 16.01 BST</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">Public Relations Office</span>
        </li>
    </ul>

</div>

                    </div>

                    <div class="layout-related-items">
                    </div>
                </div>


            </div>

            <!--noindex-->
            <div id="footer" class="layout-footer">
                <ul id="footerLinks" class="footer-links">
<!-- navigation object : SU_footer navigation --><li class="footer-links-list-item"><a href="/the-university/contact/">Contact Us</a></li><li class="footer-links-list-item"><a href="/personnel/jobs/">Jobs</a></li><li class="footer-links-list-item"><a href="/the-university/colleges/">Colleges</a></li><li class="footer-links-list-item"><a href="/press-office/">Press</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/about-us/safety-and-security/health-and-safety/">Health &amp; Safety</a></li><li class="footer-links-list-item"><a href="/includes/footer/disclaimer-and-copyright/">Disclaimer &amp; Copyright</a></li><li class="footer-links-list-item"><a href="/includes/footer/site-map/">Site map</a></li><li class="footer-links-list-item"><a href="/includes/footer/privacyandcookies/">Privacy and Cookies</a></li><li class="footer-links-list-item"><a href="http://www.swan.ac.uk/course-search/">Course Search</a></li>
                </ul>

                <div id="footerDisclaimer" class="footer-disclaimer">
                    <p class="footer-disclaimer-text">Swansea University is a registered charity. No. 1138342.</p>
                </div>
            </div>
            <!--endnoindex-->

        </div>

    </div>


<script id="desktop-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <div class="skip-to-content" id="skipToContent">
            {{{ skipToContent }}}
        </div>

        <h1 id="logo" class="logo">
            {{{ logo }}}
        </h1>

        <div id="globalNavWrapper" class="header-links">
            <ul id="globalNav" class="header-links-list">
                {{{ globalNav }}}
            </ul>
        </div>

        <div id="globalSearch" class="global-search-form">
            {{{ globalSearch }}}
        </div>
                    
        <div id="naviBar" class="main-nav">
            <ul id="mainNav" class="main-nav-list">
                {{{ mainNav }}}
            </ul>
        </div>
    </div>

</script>


<script id="mobile-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <span class="layout-menu-bar">
            <a id="layout-menu-bar-toggle" class="layout-menu-bar-toggle" href="#">{{mobile.linksText}}</a>
        </span>

        <a id="logo-link" href="{{mobile.logoLinkHref}}">
            <img class="logo-image" alt="{{mobile.logoAlt}}" src="{{mobile.logoSrc}}" />
        </a>
    </div>

</script>


<script id="desktop-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="secondaryNavWrapper">
             <ul id="secondaryNav" class="content-nav content-nav-items">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="mobile-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="globalNavWrapper">
            {{{globalNav}}}
        </div>

        <div id="naviBar">
            {{{mainNav}}}
        </div>

        <div id="secondaryNavWrapper">
             <ul id="secondaryNav">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="desktop-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">

        <ul class="tabs-item-list">
{{#tabs}}
            <li class="tabs-item-list-tab-item tabs-pod-tabs-tab-heading">
                <a class="tabs-item-list-tab-item-link" href="#">{{ tabHeading }}</a>
            </li>
{{/tabs}}
        </ul>

{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <div class="tabs-pod-tabs-tab-content">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}

    </div>

</script>


<script id="mobile-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">
{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <h3 class="tabs-pod-tabs-tab-heading is-collapsed">
                <a href="#">{{ tabHeading }}</a>
            </h3>
            <div class="tabs-pod-tabs-tab-content" style="display: none">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}
    </div>

</script>


</body>

</html>
