-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpca_xml.xml
5691 lines (2800 loc) · 412 KB
/
pca_xml.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog
xmlns="http://xcri.org/profiles/1.2/catalog"
xmlns:xcriTerms="http://xcri.org/profiles/catalog/terms"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:credit="http://purl.org/net/cm"
xmlns:mlo="http://purl.org/net/mlo"
xmlns:courseDataProgramme="http://xcri.co.uk"
xsi:schemaLocation="http://xcri.org/profiles/1.2/catalog http://www.xcri.co.uk/bindings/xcri_cap_1_2.xsd http://xcri.org/profiles/1.2/catalog/terms http://www.xcri.co.uk/bindings/xcri_cap_terms_1_2.xsd http://xcri.co.uk http://www.xcri.co.uk/bindings/coursedataprogramme.xsd"
generated="2012-12-11T14:17:21+00:00">
<dc:description>This xml file has been produced as part of the Xcri Cap JISC Project and contains courses at Plymouth College of Art</dc:description>
<provider>
<dc:description>We've created the perfect conditions for your lightbulb moments.
We've developed an art, craft, design and media laboratory at the heart of a vibrant, ambitious seaboard city - somewhere adventures can begin and ideas can be realised and tested.
It means that as soon as you walk inside the College, you'll sense how central the arts are to society. We'll begin to equip you for your career in the arts the moment you start your course. And this isn't so much a promise about what the College can do for you as an expression of our confidence about its place in the world.
Communities everywhere are relying more and more on the curiosity and problem-solving creative insights of artists and designers. Concerns about sustainability, the connections between the arts and the natural sciences, the potential for crossover between the new media and the handmade are combining to give everything we do here exciting urgency and relevance.
There's a strong relationship between the moments of revelation we want you to experience here and the mastery of visual thinking that we will help you to achieve. Of course, everybody thinks! But great ideas emerge from a kind of thinking that belongs to the senses and overleaps ordinary academic categories and boundaries.
So we're keen on visual thinking and just as keen on its natural servant and partner - drawing. We'll help you to develop the quicksilver thread between eye and hand, and between observation, mark making and invention.</dc:description> <!-- this is description of who we are and what we do - index page text perhaps? -->
<dc:identifier xsi:type="courseDataProgramme:ukprn">10005127</dc:identifier>
<dc:title>Plymouth College of Art</dc:title>
<mlo:url>http://www.plymouthart.ac.uk/</mlo:url>
<!-- Level 0 Extended Degree -->
<course>
<dc:description>If you want to pursue a specialist degree programme, and have the required AS or equivalent A-level qualifications, but you lack experience of hands-on making, the Level 0 Extended Degree programme will prepare you for entry to our Foundation Degree or BA programmes.
The course is intended for students who have finished their school or college education, or have been out of education for a while, or are an overseas/non-UK applicant. It does not lead to a qualification in its own right, but by providing you with a grounding across a range of art design and media skills, it will guarantee your progress to the first year of your chosen Plymouth College degree.
You will soon become more confident in your use of drawing, visual research, contextual studies, digital imaging and design methods and you will learn how to use a range of materials, equipment and software. As the year goes by you will increasingly specialise in your chosen subject discipline. The aim is that you should quickly become creative, confident and independent.
Extended Degree students have access to all of the College&rsquo;s facilities by negotiation, including its 3D studios, north light drawing spaces, photographic darkrooms and to the region&rsquo;s most extensive and comprehensively stocked moving image production resources.</dc:description> <!-- general summary of the course -->
<dc:identifier xsi:type="courseDataProgramme:internalID">HELZ1Z1314</dc:identifier> <!-- course code -->
<dc:subject>Art and Design</dc:subject> <!-- the topic of the course -->
<dc:title>Level 0 Extended Degree</dc:title> <!-- name of the course -->
<mlo:url>http://www.plymouthart.ac.uk//artadvantage.php%3FpageID%3D56%26courseID%3D2%26misCourseCode%3DHELZ1Z1314%26courseField%3Dcourse_info</mlo:url> <!-- URL for the course -->
<abstract></abstract> <!-- 1234 a one sentence description for use in a course list -->
<applicationProcedure href="http://www.plymouthart.ac.uk/"/>
<mlo:assessment></mlo:assessment> <!-- text describing the broad approach to assessment -->
<learningOutcome>No added content</learningOutcome> <!-- text describing the learning outcomes -->
<mlo:prerequisite><p>We offer places to students who have a GCSE profile of at least 5 A*-C grades and a combination of AS and A-Level qualifications (with one in a creative subject).</p>
<p>We also welcome applications from mature students who may not have the qualification profile &ndash; but who have other experience and knowledge.</p>
<p>As this programme forms part of a degree programme, all applications need to be made through UCAS. Please visit www.ucas.com for further information.</p>
<p>Students need to have a total of 60 UCAS points to enter.</p></mlo:prerequisite> <!-- entry requirements -->
<mlo:qualification>
<dc:identifier xsi:type="courseDataProgramme:internalID">HELZ1Z1314</dc:identifier> <!-- course code -->
<dc:title>Level 0 Extended Degree</dc:title> <!-- qualification title awarded -->
<awardedBy>The Open University</awardedBy> <!-- awarding body -->
</mlo:qualification>
<mlo:credit>
<credit:scheme>The Open University</credit:scheme> <!-- the name of the credit scheme under which credits are awarded -->
<credit:level>4</credit:level> <!-- The point in a credit scheme or framework at which credits are awarded -->
<credit:value>120</credit:value> <!-- the number of credits awarded -->
</mlo:credit>
<presentation>
<dc:identifier xsi:type="courseDataProgramme:internalID">HELZ1Z1314</dc:identifier> <!-- course code -->
<mlo:start dtf="2012-09-01">The exact start date will be discussed at interview.</mlo:start>
<applyTo>http://www.plymouthart.ac.uk/</applyTo>
<studyMode identifier="FT">Full time</studyMode> <!-- study mode -->
<attendanceMode identifier="CM">Campus</attendanceMode>
<attendancePattern identifier="DT">Daytime</attendancePattern> <!-- day or evening -->
<venue>
<provider>
<dc:description>Based in Plymouth City Centre</dc:description> <!-- general info about us and facilities -->
<dc:title>Tavistock Place</dc:title>
<mlo:url>http://www.plymouthart.ac.uk/</mlo:url>
<mlo:location>
<mlo:town>Plymouth</mlo:town>
<mlo:postcode>PL4 8AT</mlo:postcode>
<mlo:address>Plymouth College of Art</mlo:address>
<mlo:address>Tavistock Place</mlo:address>
<mlo:address>Plymouth</mlo:address>
<mlo:phone>01752 203434</mlo:phone>
<mlo:fax>01752 203444</mlo:fax>
<mlo:email>enquiries@plymouthart.ac.uk</mlo:email>
</mlo:location>
</provider>
</venue>
</presentation>
</course>
<!-- END OF Level 0 Extended Degree --><!-- FD Commercial Photography -->
<course>
<dc:description>Whether it&rsquo;s capturing the news in pictures or framing a dramatic fashion shot, commercial photography has the power to move people. This course has been designed for the next generation of visually expressive commercial photographers.
You&rsquo;ll learn about fundamental photographic theory and practice as we guide you towards your career.
You will be working with and alongside the staff team and members of the photographic industry. They will help you to develop the skills and the gain the confidence you will need to respond to client needs, while demonstrating excellent technical and professional competence.
Our photographic resources, darkrooms, studios and digital suite give you access to industrial-standard specialist resources. You will work with real clients to build a strong, professional portfolio and develop the business acumen to survive in a fastpaced competitive industry.</dc:description> <!-- general summary of the course -->
<dc:identifier xsi:type="courseDataProgramme:internalID">PCFH1A1314</dc:identifier> <!-- course code -->
<dc:subject>Photography</dc:subject> <!-- the topic of the course -->
<dc:title>FD Commercial Photography</dc:title> <!-- name of the course -->
<mlo:url>http://www.plymouthart.ac.uk//artadvantage.php%3FpageID%3D57%26courseID%3D3%26misCourseCode%3DPCFH1A1314%26courseField%3Dcourse_info</mlo:url> <!-- URL for the course -->
<abstract></abstract> <!-- 1234 a one sentence description for use in a course list -->
<applicationProcedure href="http://www.plymouthart.ac.uk/"/>
<mlo:assessment></mlo:assessment> <!-- text describing the broad approach to assessment -->
<learningOutcome>No added content</learningOutcome> <!-- text describing the learning outcomes -->
<mlo:prerequisite><div id="HE_content">
<p>Minimum 5 GCSEs, grade C or above, from a general range of educational GCSE subjects, preferably including at least one from Art, Design, Textiles or Media.</p>
<div>
<p>200 UCAS Points<br /> <br /> BTEC National Diploma - MMP grade<br /> VDA: AGNVQ, AVCE, AVS<br /> Access to HE Art and Design<br /> Irish/Scottish Highers/Advanced Highers<br /> International Baccalaureate<br /> Other International Qualifications<br /> <br /> Applications welcome from candidates without formal qualifications who can provide evidence of their creativity.</p>
</div>
</div></mlo:prerequisite> <!-- entry requirements -->
<mlo:qualification>
<dc:identifier xsi:type="courseDataProgramme:internalID">PCFH1A1314</dc:identifier> <!-- course code -->
<dc:title>FD Commercial Photography</dc:title> <!-- qualification title awarded -->
<awardedBy>The Open University</awardedBy> <!-- awarding body -->
</mlo:qualification>
<mlo:credit>
<credit:scheme>The Open University</credit:scheme> <!-- the name of the credit scheme under which credits are awarded -->
<credit:level>4</credit:level> <!-- The point in a credit scheme or framework at which credits are awarded -->
<credit:value>120</credit:value> <!-- the number of credits awarded -->
</mlo:credit>
<presentation>
<dc:identifier xsi:type="courseDataProgramme:internalID">PCFH1A1314</dc:identifier> <!-- course code -->
<mlo:start dtf="2012-09-01">The exact start date will be discussed at interview.</mlo:start>
<applyTo>http://www.plymouthart.ac.uk/</applyTo>
<studyMode identifier="FT">Full time</studyMode> <!-- study mode -->
<attendanceMode identifier="CM">Campus</attendanceMode>
<attendancePattern identifier="DT">Daytime</attendancePattern> <!-- day or evening -->
<venue>
<provider>
<dc:description>Based in Plymouth City Centre</dc:description> <!-- general info about us and facilities -->
<dc:title>Tavistock Place</dc:title>
<mlo:url>http://www.plymouthart.ac.uk/</mlo:url>
<mlo:location>
<mlo:town>Plymouth</mlo:town>
<mlo:postcode>PL4 8AT</mlo:postcode>
<mlo:address>Plymouth College of Art</mlo:address>
<mlo:address>Tavistock Place</mlo:address>
<mlo:address>Plymouth</mlo:address>
<mlo:phone>01752 203434</mlo:phone>
<mlo:fax>01752 203444</mlo:fax>
<mlo:email>enquiries@plymouthart.ac.uk</mlo:email>
</mlo:location>
</provider>
</venue>
</presentation>
</course>
<!-- END OF FD Commercial Photography --><!-- FD Contemporary Crafts -->
<course>
<dc:description>Plymouth College of Art has a great history of teaching Applied Arts and Craft based subjects. The Foundation Degree in Contemporary Crafts* is building on this history, with a contemporary and challenging programme. We have a 2-year full time route and we also welcome applicants to the 3 or 4-year part time options.
The programme enables extensive exploration and investigation into glass, ceramics and metals in their many variations. We have splendidly equipped and accessible workshops. A team of excellent academic staff endeavours to help you develop your design and conceptual skills as well as the practical, technical skills that can be gained from experimenting and practicing in the workshops. A talented &amp; dedicated team of technicians supports practical work. The programme is designed to enable you to develop your own creative identity. In the first year you will be introduced to materials and techniques, design and conceptual issues. You can explore a wide range of approaches. You will follow the path that suits you best whether it is as a specialist designer/maker in jewellery, ceramics, glass or metals or you could take a broader Applied Arts approach and develop skills to enable you to design and create objects in different materials. The second year gives students an opportunity to develop their direction &amp; skills, but with further opportunities &amp; challenges such as designing and making for external design competitions and other live projects that come from outside the college. These could be for a large-scale sculpture, working with community or schools projects or designing and making awards. If you are taking the part time route these experiences will of course be spread over a longer period. The vocational nature of a Foundation Degree means that your creative skills are complemented by practical work experience and professional studies teaching supported by members of the academic team with experience of working in the Applied Arts Creative Industries.&nbsp;The South West region is a centre for craft based businesses, so there is a rich resource of opportunities to work with practitioners and galleries or related industries.
We also encourage cross-disciplinary &lsquo;dialogue&rsquo; with other subjects throughout the college so that students have an enriched and broad experience.
You will have plenty of opportunities to develop related IT skills both within the course and the college as a whole. You will also gain a thorough understanding of contemporary, historical, critical and contextual issues that surround the subject and influence where it is today. Our Making Futures Conference on Sustainability within the &lsquo;crafts&rsquo; illustrates that the college is actively involved in current debates and that students are encouraged to work in a responsible, sustainable and ethical way. Students are encouraged to become aware of and part of external organisations, to participate in and arrange external exhibitions so that by the time they complete the FD and later the BA, they are ready for working in the &lsquo;outside world&rsquo;. Many of our students and graduates are very proactive in this respect. At the end of the Foundation Degree students can leave to pursue their chosen career path, but most of our students choose to progress onto our challenging and exciting BA year, to strengthen their skills and deepen their knowledge.
All the College's Higher Education provision is validated by the Open University. New programmes are required to go through an extensive approval process conducted by The Open University. The College is&nbsp;required to advertise any new programme as 'subject to validation' until this process has been completed.</dc:description> <!-- general summary of the course -->
<dc:identifier xsi:type="courseDataProgramme:internalID">CCFH1A1314</dc:identifier> <!-- course code -->
<dc:subject>Crafts</dc:subject> <!-- the topic of the course -->
<dc:title>FD Contemporary Crafts</dc:title> <!-- name of the course -->
<mlo:url>http://www.plymouthart.ac.uk//artadvantage.php%3FpageID%3D57%26courseID%3D4%26misCourseCode%3DCCFH1A1314%26courseField%3Dcourse_info</mlo:url> <!-- URL for the course -->
<abstract></abstract> <!-- 1234 a one sentence description for use in a course list -->
<applicationProcedure href="http://www.plymouthart.ac.uk/"/>
<mlo:assessment></mlo:assessment> <!-- text describing the broad approach to assessment -->
<learningOutcome>BCOP100: Practice in Context 1
This Level 4 module will introduce you to key ideas and theories and will provide a range of critical approaches supporting the investigation, interpretation and analysis of art, design and media. You will study a range of ideas and concepts that have sha
FDCC101: Drawing Development
In this module, you will develop your existing drawing skills by experiencing a wide variety of different materials and techniques (both traditional and contemporary). You will learn ways of depicting complex 3 dimensional objects in two dimensions and e
FDCC102: Introduction to Materials and Processes
In this module, you will be taught how to work safely and responsibly in the various workshops. You will have an opportunity to experience working with a range of materials. You will be presented with design problems through a series of short projects in
FDCC103: Design for Industry
In this module you will undertake project(s) that will introduce you to the complexities of designing for industry. You will study historical and contemporary designers, design movements and relevant industrial models. You will learn all the different par
FDCC104: Artist/Designer Maker
This module will give students the opportunity to operate as an Artist/Designer-Maker working within the Creative Industries. You will be asked to generate and develop a project leading to the design and creation of a product(s) or artifact(s). You will
FDCC201: Sustainable Practice
During this module you will have the opportunity to critically explore Sustainable Practice within the current economic, ecological and ethical landscape. You will consider current debates on sustainable practices, ecological timescales, and what is imper
FDCC202: Public Realm
This module will introduce you to an understanding of how artists / designers operate within the many different spheres which constitute the &lsquo;Public Realm&rsquo;. In this module you will develop awareness of scope for engagement as an artist/designer/maker in t
FDCC203: Enterprise and Professional Practice
You will learn basic organisational techniques, costings, the basics of marketing and will be introduced to appropriate legal issues such as Intellectual property. There will be an emphasis on the development of appropriate presentation skills in an emplo
FDCC204: Personal Project
You will design and make work in your own material specialism/s with emphasis on a particular area of personal interest. This module will allow you to pursue research and develop personal design ideas and also extend practical knowledge. With greater indi
FDCC205: External Design
You will identify and respond to the requirements of at least one external brief, competition or commission in a professional manner. You will be expected to research thoroughly and produce designs appropriate to the brief you have chosen. You will either
GCOP200: Practice in Context 2
This Level 5 module extends and consolidates the Level 4 introduction to the investigation, interpretation and analysis of art, design and media. Through a series of themed lectures and seminars this module encourages you to make appropriate links between
PCAD100: Work Based Learning: Investigation and Preparation
PCAD 100 is an investigation and preparation module, designed to increase your self-awareness and understanding of the vocational context of your academic study. This is supported through developing a greater insight of self, investigations into the relev
PCAD200: Work Based Learning: Experience and Evaluation
You are required to undertake and evaluate a period of work-based / work-place learning activities, converting earlier investigations into real opportunities and experiences. The module focuses on the application of your investigations into employment and
PCAD300: Complementary Studies
This module provides an opportunity to expand and develop skills and knowledge in fields beyond the immediate programme environment, in subject areas which are nonetheless relevant to your personal career aspirations, and which have the potential to devel</learningOutcome> <!-- text describing the learning outcomes -->
<mlo:prerequisite><div id="HE_content">
<p>Minimum 5, GCSEs, grade C or above, from a general range of educational GCSE subjects, preferably including at least one from Art, Design, Textiles or Media.</p>
<div>
<p>200 UCAS Points<br /> <br /> BTEC National Diploma - MMP grade<br /> VDA: AGNVQ, AVCE, AVS<br /> Access to HE Art and Design<br /> Irish/Scottish Highers/Advanced Highers<br /> International Baccalaureate<br /> Other International Qualifications<br /> <br /> Applications welcome from candidates without formal qualifications who can provide evidence of their creativity.</p>
</div>
</div></mlo:prerequisite> <!-- entry requirements -->
<mlo:qualification>
<dc:identifier xsi:type="courseDataProgramme:internalID">CCFH1A1314</dc:identifier> <!-- course code -->
<dc:title>FD Contemporary Crafts</dc:title> <!-- qualification title awarded -->
<awardedBy>The Open University</awardedBy> <!-- awarding body -->
</mlo:qualification>
<mlo:credit>
<credit:scheme>The Open University</credit:scheme> <!-- the name of the credit scheme under which credits are awarded -->
<credit:level>4</credit:level> <!-- The point in a credit scheme or framework at which credits are awarded -->
<credit:value>120</credit:value> <!-- the number of credits awarded -->
</mlo:credit>
<presentation>
<dc:identifier xsi:type="courseDataProgramme:internalID">CCFH1A1314</dc:identifier> <!-- course code -->
<mlo:start dtf="2012-09-01">The exact start date will be discussed at interview.</mlo:start>
<applyTo>http://www.plymouthart.ac.uk/</applyTo>
<studyMode identifier="FT">Full time</studyMode> <!-- study mode -->
<attendanceMode identifier="CM">Campus</attendanceMode>
<attendancePattern identifier="DT">Daytime</attendancePattern> <!-- day or evening -->
<venue>
<provider>
<dc:description>Based in Plymouth City Centre</dc:description> <!-- general info about us and facilities -->
<dc:title>Tavistock Place</dc:title>
<mlo:url>http://www.plymouthart.ac.uk/</mlo:url>
<mlo:location>
<mlo:town>Plymouth</mlo:town>
<mlo:postcode>PL4 8AT</mlo:postcode>
<mlo:address>Plymouth College of Art</mlo:address>
<mlo:address>Tavistock Place</mlo:address>
<mlo:address>Plymouth</mlo:address>
<mlo:phone>01752 203434</mlo:phone>
<mlo:fax>01752 203444</mlo:fax>
<mlo:email>enquiries@plymouthart.ac.uk</mlo:email>
</mlo:location>
</provider>
</venue>
</presentation>
</course>
<!-- END OF FD Contemporary Crafts --><!-- FD Design for Games -->
<course>
<dc:description>Games design at Plymouth is about a lot more than just making yet-another first person shooter! The Foundation Degree in Design for Games course takes the wider view, recognizing that contemporary games technology is used for a huge range of purposes: Education, marketing, military or medical simulation, architecture &ndash; games technology is used for them all (and for stunning, cutting-edge games, too!)
Firmly based on helping students to find work in games design, this foundation degree course has been built from the bottom-up &ndash; what jobs can we equip our students to do? We structured the course modules around the skills the industry needs, covering every aspect of game design from the theory of game-play to 3D animation and using game engines.&nbsp;You will develop an understanding of gaming technology, learning environments, psychology, project and business planning.
As you progress through the Design for Games course, the modules interlink: What you draw, you create as a 3D model, and that model is then imported into a game level of your own design. In the second year your animations can be controlled in a game environment.
Tuition for the Foundation Degree in Design for Games is provided in a variety of ways: Lectures, through studio-based activities and online through a virtual learning environment. You will be encouraged to attend lectures given by practising designers and participate in study visits, external commissions, national competitions and exhibitions. Work-based learning is an important aspect of the course and the reality of the games producing world is built into everything we do.
Career possibilities
Game Designer, Game Content Creator, 3D Artist, Technical Artist, Animator, Character Designer/Animator, Facial Animator/Rigger, Motion Editor,&nbsp;Visual Effects Artists, 3D Modeler/Texturer, Cinematic Animator, Environment Artist, Level Designer.
&nbsp;
Validated by The Open University</dc:description> <!-- general summary of the course -->
<dc:identifier xsi:type="courseDataProgramme:internalID">DFFH1A1314</dc:identifier> <!-- course code -->
<dc:subject>Design for Games</dc:subject> <!-- the topic of the course -->
<dc:title>FD Design for Games</dc:title> <!-- name of the course -->
<mlo:url>http://www.plymouthart.ac.uk//artadvantage.php%3FpageID%3D57%26courseID%3D5%26misCourseCode%3DDFFH1A1314%26courseField%3Dcourse_info</mlo:url> <!-- URL for the course -->
<abstract></abstract> <!-- 1234 a one sentence description for use in a course list -->
<applicationProcedure href="http://www.plymouthart.ac.uk/"/>
<mlo:assessment></mlo:assessment> <!-- text describing the broad approach to assessment -->
<learningOutcome>BCOP100: Contexts of Practice 1
This Level 4 module will introduce you to key ideas and theories and will provide a range of critical approaches supporting the investigation, interpretation and analysis of art, design and media. You will study a range of ideas and concepts that have sha
FDGD101: Game Play, Theory and Practice
This module focuses upon the key characteristics of games and game-play to provide an understanding of the fundamental features that make an interesting and successful game. You will be introduced to a range of genres, historical and contemporary, and wil
FDGD102: Drawing for Games 1
Beginning with basic mark-making on paper, this module will provide an introduction to all aspects of drawing, from life drawing through colour theory &amp; typography to storyboarding as well as implying character and atmosphere. The module is designed to in
FDGD103: 3D Models for Games
This module will provide an introduction to 3D Computer Generated modelling within a gaming context. World creation &amp; representation, architectural modelling, texturing and lighting will all be covered. You will then be required to use these skills to gen
FDGD105: Audio for Games
This module is designed to provide an introduction to all aspects of sound production and post-production for use in game environments. Location and studio sound recording, sequencing and multi-track layering will all be covered as will the use of audio i
FDGD201: Professional Team Brief
To further develop and consolidate the awareness and critical understanding of the capabilities of games design and its supporting infrastructure. This module is built around a team production assignment emphasising the creation of an innovative and groun
FDGD202: 3D Animation for Games
This module will provide an in-depth introduction to all aspects of organic and inorganic animation for inclusion in game environments. Fundamentals of character design, performance and creation techniques will be major features of this module as will th
FDGD205: Narrative Structures
This module will introduce you to narrative theories and practices with a specific reference to writing for games. This will include an exploration of genres, structuralism, psychoanalysis, gender, ethnicity, age and politics in relation to developing cha
FDGD207: Drawing for Games 2
This module is designed to ensure that you continue to develop your drawing skills regardless of your specific area of interest. Through a series of short, sharp drawing exercises the module with underscore the skills developed in Drawing for Games 1 and
FDGD208: Final Major Project
As this is the final practical module of your foundation degree you should use this assignment to consolidate your design for games skills through the utilisation of your creative design and or production processes and further enhance your unique style wi
GCOP200: Contexts of Practice 2
This Level 5 module extends and consolidates the Level 4 introduction to the investigation, interpretation and analysis of art, design and media. Through a series of themed lectures and seminars this module encourages you to make appropriate links between
PCAD100: Work Based Learning: Investigation and Preparation
PCAD 100 is an investigation and preparation module, designed to increase your self-awareness and understanding of the vocational context of your academic study. This is supported through developing a greater insight of self, investigations into the relev
PCAD200: Work Based Learning: Experience and Evaluation
You are required to undertake and evaluate a period of work-based / work-place learning activities, converting earlier investigations into real opportunities and experiences. The module focuses on the application of your investigations into employment and
PCAD300: Complementary Studies
This module provides an opportunity to expand and develop skills and knowledge in fields beyond the immediate programme environment, in subject areas which are nonetheless relevant to your personal career aspirations, and which have the potential to devel</learningOutcome> <!-- text describing the learning outcomes -->
<mlo:prerequisite><div id="DFFH1A1213">
<p>Minimum 5, GCSEs, grade C or above, from a general range of educational GCSE subjects, preferably including at least one from Art, Design, Textiles or Media.&nbsp;</p>
<div>
<p>200 UCAS Points<br /> <br /> BTEC National Diploma - MMP grade<br /> VDA: AGNVQ, AVCE, AVS<br /> Access to HE Art and Design<br /> Irish/Scottish Highers/Advanced Highers<br /> International Baccalaureate<br /> Other International Qualifications<br /> <br /> Applications welcome from candidates without formal qualifications who can provide evidence of their creativity.</p>
</div>
</div></mlo:prerequisite> <!-- entry requirements -->
<mlo:qualification>
<dc:identifier xsi:type="courseDataProgramme:internalID">DFFH1A1314</dc:identifier> <!-- course code -->
<dc:title>FD Design for Games</dc:title> <!-- qualification title awarded -->
<awardedBy>The Open University</awardedBy> <!-- awarding body -->
</mlo:qualification>
<mlo:credit>
<credit:scheme>The Open University</credit:scheme> <!-- the name of the credit scheme under which credits are awarded -->
<credit:level>4</credit:level> <!-- The point in a credit scheme or framework at which credits are awarded -->
<credit:value>120</credit:value> <!-- the number of credits awarded -->
</mlo:credit>
<presentation>
<dc:identifier xsi:type="courseDataProgramme:internalID">DFFH1A1314</dc:identifier> <!-- course code -->
<mlo:start dtf="2012-09-01">The exact start date will be discussed at interview.</mlo:start>
<applyTo>http://www.plymouthart.ac.uk/</applyTo>
<studyMode identifier="FT">Full time</studyMode> <!-- study mode -->
<attendanceMode identifier="CM">Campus</attendanceMode>
<attendancePattern identifier="DT">Daytime</attendancePattern> <!-- day or evening -->
<venue>
<provider>
<dc:description>Based in Plymouth City Centre</dc:description> <!-- general info about us and facilities -->
<dc:title>Tavistock Place</dc:title>
<mlo:url>http://www.plymouthart.ac.uk/</mlo:url>
<mlo:location>
<mlo:town>Plymouth</mlo:town>
<mlo:postcode>PL4 8AT</mlo:postcode>
<mlo:address>Plymouth College of Art</mlo:address>
<mlo:address>Tavistock Place</mlo:address>
<mlo:address>Plymouth</mlo:address>
<mlo:phone>01752 203434</mlo:phone>
<mlo:fax>01752 203444</mlo:fax>
<mlo:email>enquiries@plymouthart.ac.uk</mlo:email>
</mlo:location>
</provider>
</venue>
</presentation>
</course>
<!-- END OF FD Design for Games --><!-- FD Fashion -->
<course>
<dc:description>The Fashion industry needs technically expert students who are ready to progress into pattern drafting, garment technology and manufacturing and retail management roles.
On this exciting &ndash; and exacting &ndash; course, you will develop skills in machine sampling, pattern drafting and CAM/CAD, extending your awareness of fabric weights and the processes that enable designers to create their collections. As you gain experience in using traditional and digital illustration tools, you will continue to work on live external briefs and to develop them into your year two collection. By that time, you will be ready to showcase your awareness of quality control, surface textile applications, manufacturing skills and contemporary fashion market trends. You will have assembled a portfolio of professional designs and specification packs for a range of consumer groups to enable you to progress into employment or into the BA top-up.
Alongside these modules, you will be taught how global economic and consumer preferences can affect the industry at macro and micro levels. You will develop blogs and external global links, and your research will extend from methods used to promote brand awareness to analytical company reporting, encompassing your cultural, economic and consumer knowledge.</dc:description> <!-- general summary of the course -->
<dc:identifier xsi:type="courseDataProgramme:internalID">FSFH1A1314</dc:identifier> <!-- course code -->
<dc:subject>Fashion</dc:subject> <!-- the topic of the course -->
<dc:title>FD Fashion</dc:title> <!-- name of the course -->
<mlo:url>http://www.plymouthart.ac.uk//artadvantage.php%3FpageID%3D57%26courseID%3D6%26misCourseCode%3DFSFH1A1314%26courseField%3Dcourse_info</mlo:url> <!-- URL for the course -->
<abstract></abstract> <!-- 1234 a one sentence description for use in a course list -->
<applicationProcedure href="http://www.plymouthart.ac.uk/"/>
<mlo:assessment></mlo:assessment> <!-- text describing the broad approach to assessment -->
<learningOutcome>BCOP100: Contexts of Practice 1
This Level 4 module will introduce you to key ideas and theories and will provide a range of critical approaches supporting the investigation, interpretation and analysis of art, design and media. You will study a range of ideas and concepts that have sha
FDFS101: Fashion Fundamentals: Concept and Design
This module will introduce you to the creative research methodologies relevant to design development, from initial concepts through to final designs. Extending your visual language skills which will enable you to effectively communicate ideas in the field
FDFS102: Fashion Fundamentals: Realisation and Technology
Learning the principles of construction and production techniques you will extend your practical skills from which you will be able to realize their future designs. Whilst gaining confidence and knowledge of the industrial machinery you will further devel
FDFS103: Surface Textiles for Fashion
Surface textile designs are a valuable asset to garment design and throughout this module you will learn how to complete a variety of traditional and contemporary techniques. Whilst developing your awareness of ethical and sustainable issues within the fa
FDFS104: Sustainability and Ethics
Following the development of your individual designs, in module 103, you will be encouraged to combine the theories of pattern making with the creative construction techniques required to realise your designs. Moving between 2D and 3D formats you will ind
FDFS105: Fashion Marketing and Promotion
Encouraging you to look at a range of contributing factors which identify consumers across the market levels in the fashion industry this module will help you to understand the relationship between marketing, promotion and design. Raising awareness of met
FDFS201: Practice-Based Research Proposal
During the second year Foundation Fashion Degree you will establish the parameters for your final project in fashion. Working from a trend predicted brief you will begin your primary and secondary research to further your design developments. Applying and
FDFS202: Supporting Skills and Specialist Techniques for Fashion
This integrated programme of study will encourage you to extend your technical skills, gaining further understanding of garment construction and pattern cutting techniques which will support your entry into the industry. You will be encouraged to be crea
FDFS203: Final Project in Fashion
This module enables students to develop their individual fashion &lsquo;signature&rsquo; and to consolidate all they have learned. Their Practice Based Research Proposal will be presented at the start of the module with supporting evidence created through FDFS201 and
FDFS204: Business Studies and Promotion for Fashion
This module provides you with the opportunity to investigate and explore the various processes utilised in the fashion industry for good business practice. Gaining further understanding of how economic and cultural aspects may determine change in a busine
PCAD100: Work Based Learning: Investigation and Preparation
PCAD 100 is an investigation and preparation module, designed to increase your self-awareness and understanding of the vocational context of your academic study. This is supported through developing a greater insight of self, investigations into the relev
PCAD200: Work Based Learning: Experience and Evaluation
You are required to undertake and evaluate a period of work-based / work-place learning activities, converting earlier investigations into real opportunities and experiences. The module focuses on the application of your investigations into employment and
PCAD300: Complementary Studies
This module provides an opportunity to expand and develop skills and knowledge in fields beyond the immediate programme environment, in subject areas which are nonetheless relevant to your personal career aspirations, and which have the potential to devel
GCOP200: Contexts of Practice 2
This Level 5 module extends and consolidates the Level 4 introduction to the investigation, interpretation and analysis of art, design and media. Through a series of themed lectures and seminars this module encourages you to make appropriate links between</learningOutcome> <!-- text describing the learning outcomes -->
<mlo:prerequisite><p>Minimum 5, GCSEs, grade C or above, from a general range of educational GCSE subjects, preferably including at least one from Art, Design, Textiles or Media.<br /> 200 UCAS Points<br /> <br /> BTEC National Diploma - MMP grade<br /> VDA: AGNVQ, AVCE, AVS<br /> Access to HE Art and Design<br /> Irish/Scottish Highers/Advanced Highers<br /> International Baccalaureate<br /> Other International Qualifications<br /> <br /> Applications welcome from candidates without formal qualifications who can provide evidence of their creativity.</p></mlo:prerequisite> <!-- entry requirements -->
<mlo:qualification>
<dc:identifier xsi:type="courseDataProgramme:internalID">FSFH1A1314</dc:identifier> <!-- course code -->
<dc:title>FD Fashion</dc:title> <!-- qualification title awarded -->
<awardedBy>The Open University</awardedBy> <!-- awarding body -->
</mlo:qualification>
<mlo:credit>
<credit:scheme>The Open University</credit:scheme> <!-- the name of the credit scheme under which credits are awarded -->
<credit:level>4</credit:level> <!-- The point in a credit scheme or framework at which credits are awarded -->
<credit:value>120</credit:value> <!-- the number of credits awarded -->
</mlo:credit>
<presentation>
<dc:identifier xsi:type="courseDataProgramme:internalID">FSFH1A1314</dc:identifier> <!-- course code -->
<mlo:start dtf="2012-09-01">The exact start date will be discussed at interview.</mlo:start>
<applyTo>http://www.plymouthart.ac.uk/</applyTo>
<studyMode identifier="FT">Full time</studyMode> <!-- study mode -->
<attendanceMode identifier="CM">Campus</attendanceMode>
<attendancePattern identifier="DT">Daytime</attendancePattern> <!-- day or evening -->
<venue>
<provider>
<dc:description>Based in Plymouth City Centre</dc:description> <!-- general info about us and facilities -->
<dc:title>Tavistock Place</dc:title>
<mlo:url>http://www.plymouthart.ac.uk/</mlo:url>
<mlo:location>
<mlo:town>Plymouth</mlo:town>
<mlo:postcode>PL4 8AT</mlo:postcode>
<mlo:address>Plymouth College of Art</mlo:address>
<mlo:address>Tavistock Place</mlo:address>
<mlo:address>Plymouth</mlo:address>
<mlo:phone>01752 203434</mlo:phone>
<mlo:fax>01752 203444</mlo:fax>
<mlo:email>enquiries@plymouthart.ac.uk</mlo:email>
</mlo:location>
</provider>
</venue>
</presentation>
</course>
<!-- END OF FD Fashion --><!-- FD Film and Media Production -->
<course>
<dc:description>Film and Media Production is a dynamic, vocationally focused programme based on learning by doing. It immerses students in a range of creative practices and technical processes, and in a variety of professional roles and contexts, whilst providing a thorough grounding in the history and theoretical study of film and media production.
You will become highly skilled, innovative and versatile film and video practitioners equipped to work in appropriate professional filmmaking contexts. You will develop a portfolio of technical skills and knowledge, to undertake diverse external projects, work placements and live briefs, and to contextualise the aesthetics and technologies of film and media practice &ndash; all with the aim of contributing new ideas and talent to contemporary moving image industries. Students will have hands-on experience of key production roles, will become involved in critical debates to develop their own production activities, and will be supported to develop self-promotion, marketing, exhibition and distribution activities.
PCA has a comprehensively stocked film production resource, offering students the opportunity to experiment with technologies including, Super16mm and High Definition cinematography, Industry Standard Audio and Lighting equipment, 5.1 Surround Sound, Professional Post-Production facilities, and underwater film and video technologies.</dc:description> <!-- general summary of the course -->
<dc:identifier xsi:type="courseDataProgramme:internalID">FMFH1A1314</dc:identifier> <!-- course code -->
<dc:subject>Film</dc:subject> <!-- the topic of the course -->
<dc:title>FD Film and Media Production</dc:title> <!-- name of the course -->
<mlo:url>http://www.plymouthart.ac.uk//artadvantage.php%3FpageID%3D57%26courseID%3D7%26misCourseCode%3DFMFH1A1314%26courseField%3Dcourse_info</mlo:url> <!-- URL for the course -->
<abstract></abstract> <!-- 1234 a one sentence description for use in a course list -->
<applicationProcedure href="http://www.plymouthart.ac.uk/"/>
<mlo:assessment></mlo:assessment> <!-- text describing the broad approach to assessment -->
<learningOutcome>FDFI101: Digital Media Practices for Film Arts
This module will introduce you to a range of digital toolsets, applications, platforms and practices that are essential to contemporary film production. During this module you will develop and enhance your skills of planning, production and exhibition by
FDFI102: Film Arts Fundamentals 1
This introductory module encourages you to investigate examples of historical and contemporary Film Arts practices in a series of exploratory production-based exercises. You will be introduced to a range of thought-provoking approaches to filmmaking in a
FDFI103: Film Arts Fundamentals 2
Through a series of lectures and hand-on workshops you will be introduced to a range of professional production technologies and associated professional production roles and practices. You will build a portfolio of work in which you will employ various pr
FDFI104: Film Arts Fundamentals 3
This production-based module encourages you to adopt an eclectic approach to both the visual and audio elements of a film project and to adopt a highly organised and professional approach to film production. During this module you will consolidate and ext
FDFI201: Film Arts Practice
This module will challenge you to develop a highly focused, innovative and vocationally oriented approach to the research, pre-production design and planning aspects of a substantial film project to be undertaken in terms two &amp; three.&nbsp;You will al
FDFI202: Film Arts Specialism
This module encourages you to extend your knowledge, awareness and understanding of a specialist area of contemporary professional film arts practice. This module is built around a production assignment, in which a particular vocational specialism / role
FDFI203: Film Arts Consolidation
This module encourages you to consolidate and apply your knowledge, awareness and understanding of contemporary professional film arts practices and processes. This module is built around a substantial self-initiated, negotiated production assignment, whi
FDFI204: Film Arts Projection
This module provides you with the opportunity to develop a considered and professional approach to the marketing and exhibition of your own film work and the promotion of yourself as a film arts practitioner. During this module you will be required to res
PCAD100: Work Based Learning: Investigation and Preparation
PCAD 100 is an investigation and preparation module, designed to increase your self-awareness and understanding of the vocational context of your academic study. This is supported through developing a greater insight of self, investigations into the relev
PCAD200: Work Based Learning: Experience and Evaluation
You are required to undertake and evaluate a period of work-based / work place learning activities, converting earlier investigations into real opportunities and experiences
PCAD300: Complementary Studies
This module provides an opportunity to expand and develop skills and knowledge in fields beyond the immediate programme environment, in subject areas which are nonetheless relevant to your personal career aspirations, and which have the potential to devel
PCAD400: Practice in Context 1
This Level 1 module will introduce you to the basic critical tools supporting the investigation, interpretation and analysis of art, design and media. As such, it will present key generic social, theoretical, economic and political issues concerning the
PCAD500: Practice in Context 2
This Level 2 module will both consolidate and extend the Level 1 introduction to the investigation and analysis of art, design and media. However, this module places more emphasis on encouraging and enabling you to make appropriate theoretical and contex</learningOutcome> <!-- text describing the learning outcomes -->
<mlo:prerequisite><p>Minimum 5, GCSEs, grade C or above, from a general range of educational GCSE subjects, preferably including at least one from Art, Design, Textiles or Media.<br /> 200 UCAS Points<br /> <br /> BTEC National Diploma - MMP grade<br /> VDA: AGNVQ, AVCE, AVS<br /> Access to HE Art and Design<br /> Irish/Scottish Highers/Advanced Highers<br /> International Baccalaureate<br /> Other International Qualifications<br /> <br /> Applications welcome from candidates without formal qualifications who can provide evidence of their creativity.</p></mlo:prerequisite> <!-- entry requirements -->
<mlo:qualification>
<dc:identifier xsi:type="courseDataProgramme:internalID">FMFH1A1314</dc:identifier> <!-- course code -->
<dc:title>FD Film and Media Production</dc:title> <!-- qualification title awarded -->
<awardedBy>The Open University</awardedBy> <!-- awarding body -->
</mlo:qualification>
<mlo:credit>
<credit:scheme>The Open University</credit:scheme> <!-- the name of the credit scheme under which credits are awarded -->
<credit:level>4</credit:level> <!-- The point in a credit scheme or framework at which credits are awarded -->
<credit:value>120</credit:value> <!-- the number of credits awarded -->
</mlo:credit>
<presentation>
<dc:identifier xsi:type="courseDataProgramme:internalID">FMFH1A1314</dc:identifier> <!-- course code -->
<mlo:start dtf="2012-09-01">The exact start date will be discussed at interview.</mlo:start>
<applyTo>http://www.plymouthart.ac.uk/</applyTo>
<studyMode identifier="FT">Full time</studyMode> <!-- study mode -->
<attendanceMode identifier="CM">Campus</attendanceMode>
<attendancePattern identifier="DT">Daytime</attendancePattern> <!-- day or evening -->
<venue>
<provider>
<dc:description>Based in Plymouth City Centre</dc:description> <!-- general info about us and facilities -->
<dc:title>Tavistock Place</dc:title>
<mlo:url>http://www.plymouthart.ac.uk/</mlo:url>
<mlo:location>
<mlo:town>Plymouth</mlo:town>
<mlo:postcode>PL4 8AT</mlo:postcode>
<mlo:address>Plymouth College of Art</mlo:address>
<mlo:address>Tavistock Place</mlo:address>
<mlo:address>Plymouth</mlo:address>
<mlo:phone>01752 203434</mlo:phone>
<mlo:fax>01752 203444</mlo:fax>
<mlo:email>enquiries@plymouthart.ac.uk</mlo:email>
</mlo:location>
</provider>
</venue>
</presentation>
</course>
<!-- END OF FD Film and Media Production --><!-- FD Graphic Design -->
<course>
<dc:description>
The Foundation Degree in Graphic Design engages you in all the key skills and roles of contemporary graphic design practice. Developing confidence and competence to communicate design solutions through print based and new media graphic disciplines are seen as fundamental attributes of a graduate of this programme of study.
&nbsp;Throughout the Graphic Design course you will be encouraged to develop your individual style and identity through experimentation with media, materials, and processes.&nbsp;You will investigate and practise communicating your concepts through a broad range of design disciplines from brand identity to magazine design, illustration to multimedia and web based digital graphics.
Design research is seen to be of paramount importance and is the creative catalyst to inform all problem-solving strategies. The ability to record the entire design process from initial information gathering to the successful resolution of a communication problem is the key to becoming a successful graphic designer.
Academic and theoretical concepts are integrated into the Foundation Degree in Graphic Design to give greater articulation to your graphic design practice. Design theory and vocational realism in all programme assignments is further enhanced by provision of a work placement module taken in the first and second years of study. Placements and programmed specialist discipline pathways will be determined by your personal career direction.
The Foundation Degree in Graphic Design encourages students to take ownership of their own learning through the acquisition of time management, scheduling and budgeting skills.
The presentation of project work will place equal emphasis on design and the ability to support creative thinking through written and verbal communication skills.
During the first year of the Foundation Degree in Graphic Design you will be introduced to the following practical and theoretical studies -
Word as Image * Design Principles * Graphic design for Print / Multi/New/Emerging media graphic design Production * Complementary Studies * Contextual Studies *
Work Based Learning
&nbsp;
During the second year of the Foundation Degree in Graphic Design
Specialist Design Practices * Typographic Skills and Applications *
Self Initiated Major Production * Self Promotion * Contextual Studies
Work Placement
Career opportunities
Graphic Designer * Digital Artist * Art Director * Publishing Designer *
Website Designer * Multimedia Designer * Brand Identity Designer &hellip;
&nbsp;
&nbsp;
Validated by The Open University</dc:description> <!-- general summary of the course -->
<dc:identifier xsi:type="courseDataProgramme:internalID">GPFH1A1314</dc:identifier> <!-- course code -->
<dc:subject>Graphic Design</dc:subject> <!-- the topic of the course -->
<dc:title>FD Graphic Design</dc:title> <!-- name of the course -->
<mlo:url>http://www.plymouthart.ac.uk//artadvantage.php%3FpageID%3D57%26courseID%3D8%26misCourseCode%3DGPFH1A1314%26courseField%3Dcourse_info</mlo:url> <!-- URL for the course -->
<abstract></abstract> <!-- 1234 a one sentence description for use in a course list -->
<applicationProcedure href="http://www.plymouthart.ac.uk/"/>
<mlo:assessment></mlo:assessment> <!-- text describing the broad approach to assessment -->
<learningOutcome>BCOP100: Contexts of Practice 1