ATL TRANSFORMATION EXAMPLE

Storlek: px
Starta visningen från sidan:

Download "ATL TRANSFORMATION EXAMPLE"

Transkript

1 1. Transfrmatin Example 1.1. Example: BibTeXML DcBk The BibTeXML t DcBk example describes a transfrmatin f a BibTeXML mdel t a DcBk cmpsed dcument. BibTeXML [1] is an XML-based frmat fr the BibTeX bibligraphic tl. DcBk [2], as fr it, is an XML-based frmat fr dcument cmpsitin. The aim f this transfrmatin is t generate, frm a BibTeXML file, a DcBk dcument that presents the different entries f the bibligraphic file within fur different sectins. The first sectin prvides the full list f bibligraphic entries. The secnd sectin prvides the srted list f the different authrs referenced in the bibligraphy. The third sectin presents the titles f the bibligraphy titled entries (in a srted way. Finally, the last sectin prvides the list f referenced jurnals (in article entries Metamdels This transfrmatin is based n a simplified BibTeXML metamdel which nly deals with the mandatry fields f each BibTeX entries (fr instance, authr, year, title and jurnal fr an article entry. The cnsidered metamdel is presented in Figure 1, and prvided, in km3 frmat [3], in Appendix I. It has been designed in such a way that it shuld be easily extensible t handle ptinal fields (with minr mdificatins. Figure 1. The BibTeXML metamdel A bibligraphy is mdelized by a BibTeX File element. This element is cmpsed f BibTeX Entries which are each assciated with an id. All entries inherit, directly r indirectly, f the abstract BibTeX Page 1/12

2 Entry element. The abstract classes Authred Entry, Dated Entry, Titled Entry and Bk Titled Entry, as well as the Misc entry, directly inherit f BibTeX Entry. There are 13 pssible entry types: PhD Thesis, Master Thesis, Article, Tech Reprt, Unpublished, Manual, In Prceedings, Prceedings, Bklet, In Cllectin, Bk, In Bk and Misc. Cncrete BibTeX entries inherits frm sme f these abstract classes accrding t their set f mandatry fields. An authred entry may have several authrs (at least ne. It is pssible t nte that the Misc entry has n mandatry field. The transfrmatin als relies n a limited subset f the DcBk definitin. The metamdel cnsidered here is described in Figure 2, and prvided in Appendix II in km3 frmat. DcBk 1 * -dcbk -bks Bk 1 * -bk -articles Article TitleElement +title 1 * -article -sectins Sect1 -sectin-paras 1 * Para +cntent Figure 2. The DcBk metamdel Within this metamdel, a DcBk dcument is assciated with a DcBk element. Such an element is cmpsed f several Bks that, in their turn, are cmpsed f several Articles. An Article is cmpsed f Sectins ( Sect1 that are rdered. A Sectin is cmpsed f Paragraphs ( Para that are als rdered within each sectin. Bth Article and Sectin inherit frm the TitledElement abstract class Rules Specificatin These are the rules t transfrm a BibTeXML mdel t a DcBk mdel: Fr the rt BibTeX File element, the fllwing elements are created: A DcBk element; A Bk element (linked t the DcBk; Page 2/12

3 An Article element (linked t the Bk which title is BibTeXML t DcBk ; 4 Sectins elements (linked t the Article which titles respectively are References List fr Sectin 1 Authr List Sectin 2 Titles List Sectin 3 Jurnals List Sectin 4 Fr each distinct Authr, a Paragraph is created Its cntent is the authr name; It is linked t Sectin 2; Fr each untitled BibTeX Entry (entries that des nt inherit frm the Titled Entry class a Paragraph is created Its cntent cntains all available infrmatin n the Entry; It is linked t Sectin 1; Fr each Titled Entry, except Articles, the fllwing elements have t be created A Paragraph, linked t Sectin 1, that cntains all infrmatin n the Titled Entry; A Paragraph, linked t Sectin 3, that cntains the title f the Entry (each title nly appears nce; Fr each Article, the fllwing elements have t be created A Paragraph, linked t Sectin 1, that cntains all infrmatin n the Titled Entry; A Paragraph, linked t Sectin 3, that cntains the title f the Entry (each title nly appears nce; A Paragraph linked t Sectin 4, which cntains the name f the jurnal (each jurnal nly appears nce Cde This cde fr the BibTeXML t DcBk transfrmatin cnsists f 4 helpers and 9 rules. Amng helpers, authrset prvides a subset f Authr elements in which a same authr name appears nly nce. In the same way, titledentryset prvides a subset f TitledEntry elements in which a same title appears nly nce. Finally, articleset prvides a subset f Article elements in which a same jurnal name appears nly nce. Accrding t the type f each entry, the last helper, buildentrypara, builds the cntent f the paragraph that will be assciated, in the first sectin, with the entry. The rule Main allcates the structure f the DcBk mdel. This rule makes use f the thismdule.reslvetemp(e, str methd (in utputs se3 and se4. In the se3 utput, this methd makes it pssible t handle the utput elements generated in the titled_para utput f rule TitledEntry_NArticle (the ne matching the titledentryset elements. The methd is used in the same way in utput se4 t handle the utput elements generated in the jurnal_para utput f rule Article. The rule Authr allcates the DcBk paragraphs that cmpse the secnd sectin (list f the distinct authrs. Page 3/12

4 Since, with, a same surce element cannt be matched mre than nce, cntents f sectins 1, 3 and 4 are generated by the 7 fllwing rules: UntitledEntry, TitledEntry_Title_NArticle, TitledEntry_NTitle_NArticle, Article_Title_Jurnal, Article_NTitle_Jurnal, Article_Title_NJurnal and Article_NTitle_NJurnal. The rule UntitledEntry allcates a part f the first sectin (fr all untitled entries. The rule TitledEntry_Title_NArticle deals with titled entries that belng t the titledentryset set and are nt Articles. It allcates the crrespnding paragraphs in the first sectin, as well as the paragraphs f the third sectin that cntains distinct titles. TitledEntry_NTitle_NArticle is a similar rule that applies t entries that d nt belng t the titledentryset set and are nt Articles. As a cnsequence, it nly creates paragraph in the first sectin. The rule Article_Title_Jurnal allcates paragraphs in the first, the third and the frth sectins. This rule cnsiders Article entries that belng bth t articleset and titledentryset sets. Article_NTitle_Jurnal is a similar rule that nly applies t articles that belng t the articleset set, but nt t the titledentryset ne. It therefre creates paragraphs in the first and the frth sectins, but nt in the third ne. In the same way, Article_Title_NJurnal applies t articles that belng t the titledentryset set, but nt t the articleset ne. As a cnsequence, it nly creates paragraphs in the first and the third sectins. Finally, Article_NTitle_NJurnal deals with articles that belng neither t the titledentryset set, nr t the articleset ne. It creates a single paragraph in the first sectin. mdule BibTeX2DcBk; create OUT : DcBk frm IN : BibTeX; HELPERS This helper builds the set f distinct authrs referenced in the input BibTeX -- mdel. -- Built set is srted by authr name. -- RETURN: Sequence(BibTeX!Authr helper def: authrset : Sequence(BibTeX!Authr = BibTeX!Authr.allInstances(- >iterate(e; ret : Sequence(BibTeX!Authr = Sequence { if ret->cllect(e e.authr->includes(e.authr then ret else ret->including(e endif ->srtedby(e e.authr; -- This helper builds the set f distinct titles referenced in the input BibTeX -- mdel. -- Built set is srted by title. -- RETURN: Sequence(BibTeX!TitledEntry helper def: titledentryset : Sequence(BibTeX!TitledEntry = BibTeX!TitledEntry.allInstances(->iterate(e; ret : Sequence(BibTeX!TitledEntry = Sequence { if ret->cllect(e e.title->includes(e.title then ret else ret->including(e endif ->srtedby(e e.title; -- This helper builds the set f distinct jurnals referenced in the input BibTeX -- mdel. -- Built set is srted by jurnal name. -- RETURN: Sequence(BibTeX!Article Page 4/12

5 helper def: articleset : Sequence(BibTeX!Article = BibTeX!Article.allInstances(- >iterate(e; ret : Sequence(BibTeX!Article = Sequence { if ret->cllect(e e.jurnal->includes(e.jurnal then ret else ret->including(e endif ->srtedby(e e.jurnal; -- This helper builds a string cntaining all infrmatin n a given BibTeXEntry. -- Cntent f the generated string depends n the entry type. -- IN: BibTeX!BibTeXEntry -- RETURN: Sequence(BibTeX!Authr helper cntext BibTeX!BibTeXEntry def: buildentrypara( : String = '[' + self.id + ']' + ' ' + self.cltype(.name + (if self.cliskindof(bibtex!titledentry then ' ' + self.title else '' endif + (if self.cliskindof(bibtex!authredentry then self.authrs->iterate(e; str : String = '' str + ' ' + e.authr else '' endif + (if self.cliskindof(bibtex!datedentry then ' ' + self.year else '' endif + (if self.cliskindof(bibtex!bktitledentry then ' ' + self.bktitle else '' endif + (if self.cliskindof(bibtex!thesisentry then ' ' + self.schl else '' endif + (if self.cliskindof(bibtex!article then ' ' + self.jurnal else '' endif + (if self.cliskindof(bibtex!unpublished then ' ' + self.nte else '' endif + (if self.cliskindof(bibtex!bk then ' ' + self.publisher else '' endif + (if self.cliskindof(bibtex!inbk then ' ' + self.chapter.tstring( else '' endif ; RULES Rule 'Main' -- This rule generates the structure f the DcBk mdel frm a BibTeXFile element rule Main { frm bib : BibTeX!BibTeXFile t dc : DcBk!DcBk ( bks <- b b : DcBk!Bk ( articles <- art art : DcBk!Article ( title <- 'BibTeXML t DcBk', sectins_1 <- Sequence{se1, se2, se3, se4 se1 : DcBk!Sect1 ( title <- 'References List', paras <- BibTeX!BibTeXEntry.allInstances(->srtedBy(e e.id se2 : DcBk!Sect1 ( title <- 'Authrs list', Page 5/12

6 paras <- thismdule.authrset se3 : DcBk!Sect1 ( title <- 'Titles List', paras <- thismdule.titledentryset->cllect(e thismdule.reslvetemp(e, 'title_para' se4 : DcBk!Sect1 ( title <- 'Jurnals List', paras <- thismdule.articleset->cllect(e thismdule.reslvetemp(e, 'jurnal_para' -- Rule 'Authr' -- This rule generates a sectin_2 paragraph fr each distinct authr. rule Authr { frm a : BibTeX!Authr ( thismdule.authrset->includes(a t p1 : DcBk!Para ( cntent <- a.authr -- Rule 'UntitledEntry' -- This rule generates a sectin_1 paragraph fr each untitled entry. rule UntitledEntry { frm e : BibTeX!BibTeXEntry ( nt e.cliskindof(bibtex!titledentry t p : DcBk!Para ( cntent <- e.buildentrypara( -- Rule 'TitledEntry_Title_NArticle' -- [titledentryset cntains a subset f TitledEntry, s that each title -- appears nly nce in the set] -- Fr each "n article" titled entry that belngs t titledentryset, -- this rule generates: -- * a sectin_1 paragraph; -- * a sectin_3 paragraph. rule TitledEntry_Title_NArticle { frm e : BibTeX!TitledEntry ( thismdule.titledentryset->includes(e and nt e.cliskindof(bibtex!article t entry_para : DcBk!Para ( cntent <- e.buildentrypara( title_para : DcBk!Para ( cntent <- e.title Page 6/12

7 -- Rule 'TitledEntry_NTitle_NArticle' -- [titledentryset cntains a subset f TitledEntry, s that each title -- appears nly nce in the set] -- Fr each "n article" titled entry that des nt belng t titledentryset, -- this rule generates: -- * a sectin_1 paragraph; rule TitledEntry_NTitle_NArticle { frm e : BibTeX!TitledEntry ( nt thismdule.titledentryset->includes(e and nt e.cliskindof(bibtex!article t entry_para : DcBk!Para ( cntent <- e.buildentrypara( -- Rule 'Article_Title_Jurnal' -- [titledentryset cntains a subset f TitledEntry, s that each title -- appears nly nce in the set] -- [articleset cntains a subset f Article, s that each jurnal -- appears nly nce in the set] -- Fr each article entry that belngs t articleset, this rule generates: -- * a sectin_1 paragraph; -- * a sectin_3 paragraph; -- * a sectin_4 paragraph. rule Article_Title_Jurnal { frm e : BibTeX!Article ( thismdule.titledentryset->includes(e and thismdule.articleset->includes(e t entry_para : DcBk!Para ( cntent <- e.buildentrypara( title_para : DcBk!Para ( cntent <- e.title jurnal_para : DcBk!Para ( cntent <- e.jurnal -- Rule 'Article_NTitle_Jurnal' -- [titledentryset cntains a subset f TitledEntry, s that each title -- appears nly nce in the set] -- [articleset cntains a subset f Article, s that each jurnal -- appears nly nce in the set] -- Fr each article entry that belngs t articleset, this rule generates: -- * a sectin_1 paragraph; -- * a sectin_4 paragraph. rule Article_NTitle_Jurnal { frm e : BibTeX!Article ( nt thismdule.titledentryset->includes(e and thismdule.articleset->includes(e t entry_para : DcBk!Para ( cntent <- e.buildentrypara( Page 7/12

8 jurnal_para : DcBk!Para ( cntent <- e.jurnal -- Rule 'Article_Title_NJurnal' -- [titledentryset cntains a subset f TitledEntry, s that each title -- appears nly nce in the set] -- [articleset cntains a subset f Article, s that each jurnal -- appears nly nce in the set] -- Fr each article entry that belngs t articleset, this rule generates: -- * a sectin_1 paragraph; -- * a sectin_3 paragraph. rule Article_Title_NJurnal { frm e : BibTeX!Article ( thismdule.titledentryset->includes(e and nt thismdule.articleset->includes(e t entry_para : DcBk!Para ( cntent <- e.buildentrypara( title_para : DcBk!Para ( cntent <- e.title -- Rule 'Article_NTitle_NJurnal' -- [titledentryset cntains a subset f TitledEntry, s that each title -- appears nly nce in the set] -- [articleset cntains a subset f Article, s that each jurnal -- appears nly nce in the set] -- Fr each article entry that belngs t articleset, this rule generates: -- * a sectin_1 paragraph; rule Article_NTitle_NJurnal { frm e : BibTeX!Article ( nt thismdule.titledentryset->includes(e and nt thismdule.articleset->includes(e t entry_para : DcBk!Para ( cntent <- e.buildentrypara( Page 8/12

9 I. BibTeXML metamdel in km3 frmat package BibTeX { class BibTeXFile { reference entries[*] cntainer : BibTeXEntry; class Authr { attribute authr : String; abstract class BibTeXEntry { attribute id : String; abstract class AuthredEntry extends BibTeXEntry { reference authrs[1-*] cntainer : Authr; abstract class DatedEntry extends BibTeXEntry { attribute year : String; abstract class TitledEntry extends BibTeXEntry { attribute title : String; abstract class BkTitledEntry extends BibTeXEntry { attribute bktitle : String; class Article extends AuthredEntry, DatedEntry, TitledEntry { attribute jurnal : String; class TechReprt extends AuthredEntry, DatedEntry, TitledEntry { class Unpublished extends AuthredEntry, TitledEntry { attribute nte : String; class Manual extends TitledEntry { class Prceedings extends DatedEntry, TitledEntry { class InPrceedings extends Prceedings, AuthredEntry, BkTitledEntry { class Bklet extends DatedEntry { Page 9/12

10 class Bk extends AuthredEntry, DatedEntry, TitledEntry { attribute publisher : String; class InCllectin extends Bk, BkTitledEntry { class InBk extends Bk { attribute chapter : Integer; class Misc extends BibTeXEntry { { abstract class ThesisEntry extends AuthredEntry, DatedEntry, TitledEntry attribute schl : String; class PhDThesis extends ThesisEntry { class MasterThesis extends ThesisEntry { package PrimitiveTypes { datatype String; datatype Integer; Page 10/12

11 II. DcBk metamdel in km3 frmat package DcBk { class DcBk { reference bks [1-*] rdered cntainer: Bk; class Bk { reference articles [1-*] rdered cntainer: Article; abstract class TitledElement { attribute title : String; class Article extends TitledElement { reference sectins_1 [1-*] rdered cntainer : Sect1; class Sect1 extends TitledElement { reference paras [1-*] rdered cntainer: Para; class Para { attribute cntent : String; package PrimitiveTypes { datatype String; Page 11/12

12 References [1] BibTeXML, BibTeX as XML markup, [2] DcBk: The Definitive Guide. Nrman Walsh. O Reilly & Assciates, Inc. Octber [3] KM3: Kernel MetaMetaMdel. Available at Page 12/12

Isolda Purchase - EDI

Isolda Purchase - EDI Isolda Purchase - EDI Document v 1.0 1 Table of Contents Table of Contents... 2 1 Introduction... 3 1.1 What is EDI?... 4 1.2 Sending and receiving documents... 4 1.3 File format... 4 1.3.1 XML (language

Läs mer

Uttagning för D21E och H21E

Uttagning för D21E och H21E Uttagning för D21E och H21E Anmälan till seniorelitklasserna vid O-Ringen i Kolmården 2019 är öppen fram till och med fredag 19 juli klockan 12.00. 80 deltagare per klass tas ut. En rangordningslista med

Läs mer

Swedish adaptation of ISO TC 211 Quality principles. Erik Stenborg

Swedish adaptation of ISO TC 211 Quality principles. Erik Stenborg Swedish adaptation of ISO TC 211 Quality principles The subject How to use international standards Linguistic differences Cultural differences Historical differences Conditions ISO 19100 series will become

Läs mer

Rastercell. Digital Rastrering. AM & FM Raster. Rastercell. AM & FM Raster. Sasan Gooran (VT 2007) Rastrering. Rastercell. Konventionellt, AM

Rastercell. Digital Rastrering. AM & FM Raster. Rastercell. AM & FM Raster. Sasan Gooran (VT 2007) Rastrering. Rastercell. Konventionellt, AM Rastercell Digital Rastrering Hybridraster, Rastervinkel, Rotation av digitala bilder, AM/FM rastrering Sasan Gooran (VT 2007) Önskat mått * 2* rastertätheten = inläsningsupplösning originalets mått 2

Läs mer

Övning 1 - Abstrakta datatyper

Övning 1 - Abstrakta datatyper /home/lindahlm/activity-phd/teaching/12dd1320/exercise1/exercise1.py September 3, 20121 0 # coding : latin Övning 1 - Abstrakta datatyper 18 Summering Vi gick igenom betydelsen av abstrakta datatyper/datastrukturer.

Läs mer

http://marvel.com/games/play/31/create_your_own_superhero http://www.heromachine.com/

http://marvel.com/games/play/31/create_your_own_superhero http://www.heromachine.com/ Name: Year 9 w. 4-7 The leading comic book publisher, Marvel Comics, is starting a new comic, which it hopes will become as popular as its classics Spiderman, Superman and The Incredible Hulk. Your job

Läs mer

Documentation SN 3102

Documentation SN 3102 This document has been created by AHDS History and is based on information supplied by the depositor /////////////////////////////////////////////////////////// THE EUROPEAN STATE FINANCE DATABASE (Director:

Läs mer

Graphs (chapter 14) 1

Graphs (chapter 14) 1 Graphs (chapter ) Terminologi En graf är en datastruktur som består av en mängd noder (vertices) och en mängd bågar (edges) en båge är ett par (a, b) av två noder en båge kan vara cyklisk peka på sig själv

Läs mer

Schenker Privpak AB Telefon VAT Nr. SE Schenker ABs ansvarsbestämmelser, identiska med Box 905 Faxnr Säte: Borås

Schenker Privpak AB Telefon VAT Nr. SE Schenker ABs ansvarsbestämmelser, identiska med Box 905 Faxnr Säte: Borås Schenker Privpak AB Interface documentation for web service packageservices.asmx 2012-09-01 Version: 1.0.0 Doc. no.: I04304b Sida 2 av 7 Revision history Datum Version Sign. Kommentar 2012-09-01 1.0.0

Läs mer

FÖRBERED UNDERLAG FÖR BEDÖMNING SÅ HÄR

FÖRBERED UNDERLAG FÖR BEDÖMNING SÅ HÄR FÖRBERED UNDERLAG FÖR BEDÖMNING SÅ HÄR Kontrollera vilka kurser du vill söka under utbytet. Fyll i Basis for nomination for exchange studies i samråd med din lärare. För att läraren ska kunna göra en korrekt

Läs mer

Beijer Electronics AB 2000, MA00336A, 2000-12

Beijer Electronics AB 2000, MA00336A, 2000-12 Demonstration driver English Svenska Beijer Electronics AB 2000, MA00336A, 2000-12 Beijer Electronics AB reserves the right to change information in this manual without prior notice. All examples in this

Läs mer

Manhour analys EASA STI #17214

Manhour analys EASA STI #17214 Manhour analys EASA STI #17214 Presentatör Johan Brunnberg, Flygteknisk Inspektör & Del-M Koordinator Sjö- och luftfartsavdelningen Operatörsenheten Sektionen för teknisk operation 1 Innehåll Anmärkningen

Läs mer

Här följer instruktioner och en mall för din vetenskapliga rapport, Examensarbete 30 hp på läkarprogrammet (LÄA110)

Här följer instruktioner och en mall för din vetenskapliga rapport, Examensarbete 30 hp på läkarprogrammet (LÄA110) Här följer instruktiner ch en mall för din vetenskapliga rapprt, Examensarbete 30 hp på läkarprgrammet (LÄA110) Innehållet i den vetenskapliga skriftliga rapprten ska mtsvara 20 veckrs heltidsarbete/studier.

Läs mer

SVENSK STANDARD SS-EN ISO 19108:2005/AC:2015

SVENSK STANDARD SS-EN ISO 19108:2005/AC:2015 SVENSK STANDARD SS-EN ISO 19108:2005/AC:2015 Fastställd/Approved: 2015-07-23 Publicerad/Published: 2016-05-24 Utgåva/Edition: 1 Språk/Language: engelska/english ICS: 35.240.70 Geografisk information Modell

Läs mer

PORTSECURITY IN SÖLVESBORG

PORTSECURITY IN SÖLVESBORG PORTSECURITY IN SÖLVESBORG Kontaktlista i skyddsfrågor / List of contacts in security matters Skyddschef/PFSO Tord Berg Phone: +46 456 422 44. Mobile: +46 705 82 32 11 Fax: +46 456 104 37. E-mail: tord.berg@sbgport.com

Läs mer

Projektmodell med kunskapshantering anpassad för Svenska Mässan Koncernen

Projektmodell med kunskapshantering anpassad för Svenska Mässan Koncernen Examensarbete Projektmodell med kunskapshantering anpassad för Svenska Mässan Koncernen Malin Carlström, Sandra Mårtensson 2010-05-21 Ämne: Informationslogistik Nivå: Kandidat Kurskod: 2IL00E Projektmodell

Läs mer

Preschool Kindergarten

Preschool Kindergarten Preschool Kindergarten Objectives CCSS Reading: Foundational Skills RF.K.1.D: Recognize and name all upper- and lowercase letters of the alphabet. RF.K.3.A: Demonstrate basic knowledge of one-toone letter-sound

Läs mer

Isometries of the plane

Isometries of the plane Isometries of the plane Mikael Forsberg August 23, 2011 Abstract Här följer del av ett dokument om Tesselering som jag skrivit för en annan kurs. Denna del handlar om isometrier och innehåller bevis för

Läs mer

2.1 Installation of driver using Internet Installation of driver from disk... 3

2.1 Installation of driver using Internet Installation of driver from disk... 3 &RQWHQW,QQHKnOO 0DQXDOÃ(QJOLVKÃ'HPRGULYHU )RUHZRUG Ã,QWURGXFWLRQ Ã,QVWDOOÃDQGÃXSGDWHÃGULYHU 2.1 Installation of driver using Internet... 3 2.2 Installation of driver from disk... 3 Ã&RQQHFWLQJÃWKHÃWHUPLQDOÃWRÃWKHÃ3/&ÃV\VWHP

Läs mer

Scalable Dynamic Analysis of Binary Code

Scalable Dynamic Analysis of Binary Code Linköping Studies in Science and Technology Dissertations, No. 1993 Ulf Kargén FACULTY OF SCIENCE AND ENGINEERING Linköping Studies in Science and Technology, Dissertations, No. 1993, 2019 Department of

Läs mer

12.6 Heat equation, Wave equation

12.6 Heat equation, Wave equation 12.6 Heat equation, 12.2-3 Wave equation Eugenia Malinnikova, NTNU September 26, 2017 1 Heat equation in higher dimensions The heat equation in higher dimensions (two or three) is u t ( = c 2 2 ) u x 2

Läs mer

Anvisningar för ämnesansvariga vid LTV-fakulteten

Anvisningar för ämnesansvariga vid LTV-fakulteten STYRANDE DOKUMENT SLU ID: SLU.ltv 2015.1.1.1-839 Sakområde: Organisation och beslutsstruktur samt Forskning och utbildning på forskarnivå Dokumenttyp: Anvisning/Instruktion Beslutsfattare: Dekan Avdelning/kansli:

Läs mer

Övning 1. Abstrakta datatyper. 1. Stacken. class Stack: """A representation of a last-in-first-out (LIFO) stack of objects."""

Övning 1. Abstrakta datatyper. 1. Stacken. class Stack: A representation of a last-in-first-out (LIFO) stack of objects. Per Sedholm DD1320 (tilda11) 2011-09-02 Övning 1 Abstrakta datatyper 1. Stacken -*- coding: utf-8 -*- """Classroom exercise 1, example 1.""" class Stack: """A representation of a last-in-first-out (LIFO)

Läs mer

SVENSK STANDARD SS

SVENSK STANDARD SS Provläsningsexemplar / Preview SVENSK STANDARD Handläggande organ Fastställd Utgåva Sida Allmänna Standardiseringsgruppen, STG 1998-01-30 1 1 (13) SIS FASTSTÄLLER OCH UTGER SVENSK STANDARD SAMT SÄLJER

Läs mer

Webbregistrering pa kurs och termin

Webbregistrering pa kurs och termin Webbregistrering pa kurs och termin 1. Du loggar in på www.kth.se via den personliga menyn Under fliken Kurser och under fliken Program finns på höger sida en länk till Studieöversiktssidan. På den sidan

Läs mer

Oförstörande provning (NDT) i Del M Subpart F/Del 145-organisationer

Oförstörande provning (NDT) i Del M Subpart F/Del 145-organisationer Oförstörande provning (NDT) i Del M Subpart F/Del 145-organisationer Ref. Del M Subpart F & Del 145 2012-05-02 1 Seminarium för Teknisk Ledning HKP 3maj, 2012, Arlanda Inledning Allmänt Viktigare krav

Läs mer

RADIATION TEST REPORT. GAMMA: 30.45k, 59.05k, 118.8k/TM1019 Condition D

RADIATION TEST REPORT. GAMMA: 30.45k, 59.05k, 118.8k/TM1019 Condition D RADIATION TEST REPORT PRODUCT: OP47AYQMLL Die Type: 147X FILE: OP47_LDR.xlsx DATE CODE: 95 GAMMA: 3.45k, 59.5k, 118.8k/TM119 Condition D GAMMA SOURCE: Co6 DOSE RATE: 8.6mRad(si)/s FACILITIES: University

Läs mer

Schenker Privpak AB Telefon 033-178300 VAT Nr. SE556124398001 Schenker ABs ansvarsbestämmelser, identiska med Box 905 Faxnr 033-257475 Säte: Borås

Schenker Privpak AB Telefon 033-178300 VAT Nr. SE556124398001 Schenker ABs ansvarsbestämmelser, identiska med Box 905 Faxnr 033-257475 Säte: Borås Schenker Privpak AB Interface documentation for Parcel Search 2011-10-18 Version: 1 Doc. no.: I04306 Sida 2 av 5 Revision history Datum Version Sign. Kommentar 2011-10-18 1.0.0 PD First public version.

Läs mer

SVENSK STANDARD SS-ISO :2010/Amd 1:2010

SVENSK STANDARD SS-ISO :2010/Amd 1:2010 SVENSK STANDARD SS-ISO 14839-1:2010/Amd 1:2010 Fastställd/Approved: 2010-11-08 Publicerad/Published: 2010-11-30 Utgåva/Edition: 1 Språk/Language: engelska/english ICS: 01.040.17; 17.160 Vibration och stöt

Läs mer

Questionnaire for visa applicants Appendix A

Questionnaire for visa applicants Appendix A Questionnaire for visa applicants Appendix A Business Conference visit 1 Personal particulars Surname Date of birth (yr, mth, day) Given names (in full) 2 Your stay in Sweden A. Who took the initiative

Läs mer

Schenker Privpak AB Telefon 033-178300 VAT Nr. SE556124398001 Schenker ABs ansvarsbestämmelser, identiska med Box 905 Faxnr 033-257475 Säte: Borås

Schenker Privpak AB Telefon 033-178300 VAT Nr. SE556124398001 Schenker ABs ansvarsbestämmelser, identiska med Box 905 Faxnr 033-257475 Säte: Borås Schenker Privpak AB Interface documentation for web service packageservices.asmx 2010-10-21 Version: 1.2.2 Doc. no.: I04304 Sida 2 av 14 Revision history Datum Version Sign. Kommentar 2010-02-18 1.0.0

Läs mer

SkillGuide. Bruksanvisning. Svenska

SkillGuide. Bruksanvisning. Svenska SkillGuide Bruksanvisning Svenska SkillGuide SkillGuide är en apparat utformad för att ge summativ återkoppling i realtid om hjärt- och lungräddning. www.laerdal.com Medföljande delar SkillGuide och bruksanvisning.

Läs mer

Materialplanering och styrning på grundnivå. 7,5 högskolepoäng

Materialplanering och styrning på grundnivå. 7,5 högskolepoäng Materialplanering och styrning på grundnivå Provmoment: Ladokkod: Tentamen ges för: Skriftlig tentamen TI6612 Af3-Ma, Al3, Log3,IBE3 7,5 högskolepoäng Namn: (Ifylles av student) Personnummer: (Ifylles

Läs mer

Files in the Classification Directory

Files in the Classification Directory Classifications 9-1 Files in the Classification Directory Starting with the version 99 of PC-Axis a new file format has been introduced for the classifications. There are 2 file types.vs.agg for valuesets

Läs mer

Komponenter Removed Serviceable

Komponenter Removed Serviceable Komponenter Removed Serviceable Presentatör Jonas Gränge, Flygteknisk Inspektör Sjö- och luftfartsavdelningen Fartygs- och luftfartygsenheten Sektionen för Underhållsorganisationer 1 145.A.50(d): När en

Läs mer

LARS. Ett e-bokningssystem för skoldatorer.

LARS. Ett e-bokningssystem för skoldatorer. LARS Ett e-bokningssystem för skoldatorer. Därför behöver vi LARS Boka dator i förväg. Underlätta för studenter att hitta ledig dator. Rapportera datorer som är sönder. Samordna med schemaläggarnas system,

Läs mer

TDDC74 FÖRELÄSNING 9 ANDERS MÄRAK LEFFLER IDA/HCS

TDDC74 FÖRELÄSNING 9 ANDERS MÄRAK LEFFLER IDA/HCS TDDC74 FÖRELÄSNING 9 ANDERS MÄRAK LEFFLER IDA/HCS 180226 Idag (ADT), OOP i Racket, labb 5 2 Allmän info Duggan. Laboration 4 deadline. Planering framöver Muddy cards (nästa timme) 3 Lite repetition ADT

Läs mer

Semantic and Physical Modeling and Simulation of Multi-Domain Energy Systems: Gas Turbines and Electrical Power Networks

Semantic and Physical Modeling and Simulation of Multi-Domain Energy Systems: Gas Turbines and Electrical Power Networks DEGREE PROJECT IN ELECTRICAL ENGINEERING, SECOND CYCLE, 30 CREDITS STOCKHOLM, SWEDEN 2017 Semantic and Physical Modeling and Simulation of Multi-Domain Energy Systems: Gas Turbines and Electrical Power

Läs mer

How to format the different elements of a page in the CMS :

How to format the different elements of a page in the CMS : How to format the different elements of a page in the CMS : 1. Typing text When typing text we have 2 possible formats to start a new line: Enter - > is a simple line break. In a paragraph you simply want

Läs mer

Annonsformat desktop. Startsida / områdesstartsidor. Artikel/nyhets-sidor. 1. Toppbanner, format 1050x180 pxl. Format 1060x180 px + 250x240 pxl.

Annonsformat desktop. Startsida / områdesstartsidor. Artikel/nyhets-sidor. 1. Toppbanner, format 1050x180 pxl. Format 1060x180 px + 250x240 pxl. Annonsformat desktop Startsida / områdesstartsidor 1. Toppbanner, format 1050x180 pxl. Bigbang (toppbanner + bannerplats 2) Format 1060x180 px + 250x240 pxl. 2. DW, format 250x240 pxl. 3. TW, format 250x360

Läs mer

Quicksort. Koffman & Wolfgang kapitel 8, avsnitt 9

Quicksort. Koffman & Wolfgang kapitel 8, avsnitt 9 Quicksort Koffman & Wolfgang kapitel 8, avsnitt 9 1 Quicksort Quicksort väljer ett spcifikt värde (kallat pivot), och delar upp resten av fältet i två delar: alla element som är pivot läggs i vänstra delen

Läs mer

Webbreg öppen: 26/ /

Webbreg öppen: 26/ / Webbregistrering pa kurs, period 2 HT 2015. Webbreg öppen: 26/10 2015 5/11 2015 1. Du loggar in på www.kth.se via den personliga menyn Under fliken Kurser och under fliken Program finns på höger sida en

Läs mer

SAMMANFATTNING AV SUMMARY OF

SAMMANFATTNING AV SUMMARY OF Detta dokument är en enkel sammanfattning i syfte att ge en första orientering av investeringsvillkoren. Fullständiga villkor erhålles genom att registera sin e- postadress på ansökningssidan för FastForward

Läs mer

Module 6: Integrals and applications

Module 6: Integrals and applications Department of Mathematics SF65 Calculus Year 5/6 Module 6: Integrals and applications Sections 6. and 6.5 and Chapter 7 in Calculus by Adams and Essex. Three lectures, two tutorials and one seminar. Important

Läs mer

Social innovation - en potentiell möjliggörare

Social innovation - en potentiell möjliggörare Social innovation - en potentiell möjliggörare En studie om Piteå kommuns sociala innovationsarbete Julia Zeidlitz Sociologi, kandidat 2018 Luleå tekniska universitet Institutionen för ekonomi, teknik

Läs mer

SWESIAQ Swedish Chapter of International Society of Indoor Air Quality and Climate

SWESIAQ Swedish Chapter of International Society of Indoor Air Quality and Climate Swedish Chapter of International Society of Indoor Air Quality and Climate Aneta Wierzbicka Swedish Chapter of International Society of Indoor Air Quality and Climate Independent and non-profit Swedish

Läs mer

Eternal Employment Financial Feasibility Study

Eternal Employment Financial Feasibility Study Eternal Employment Financial Feasibility Study 2017-08-14 Assumptions Available amount: 6 MSEK Time until first payment: 7 years Current wage: 21 600 SEK/month (corresponding to labour costs of 350 500

Läs mer

This exam consists of four problems. The maximum sum of points is 20. The marks 3, 4 and 5 require a minimum

This exam consists of four problems. The maximum sum of points is 20. The marks 3, 4 and 5 require a minimum Examiner Linus Carlsson 016-01-07 3 hours In English Exam (TEN) Probability theory and statistical inference MAA137 Aids: Collection of Formulas, Concepts and Tables Pocket calculator This exam consists

Läs mer

Support for Artist Residencies

Support for Artist Residencies 1. Basic information 1.1. Name of the Artist-in-Residence centre 0/100 1.2. Name of the Residency Programme (if any) 0/100 1.3. Give a short description in English of the activities that the support is

Läs mer

Styrteknik: Binära tal, talsystem och koder D3:1

Styrteknik: Binära tal, talsystem och koder D3:1 Styrteknik: Binära tal, talsystem och koder D3:1 Digitala kursmoment D1 Boolesk algebra D2 Grundläggande logiska funktioner D3 Binära tal, talsystem och koder Styrteknik :Binära tal, talsystem och koder

Läs mer

55R Kia Carens 2013»

55R Kia Carens 2013» 55R-013714 60 Kia Carens 2013» 630-0810 rev. 2014-06-09 DC Congratulations on purchasing an ATS towbar Alexo Towbars Sweden offer quality towbars produced as a result of direct market research. Every towbar

Läs mer

P650 - Takscreen. Installationsguide EN

P650 - Takscreen. Installationsguide EN P650 - Takscreen Installationsguide 1309-150507EN V650-Tallinn Installation manual Montera främre linhjul 12 13 Placera linan över linhjulet och skruva tillbaka täcklocket på linhjulhuset (7). Öppna linhjulshuset

Läs mer

Webbtillgänglighet. Tillgänglighet på webben. Hörselskadades behov. Synskadades behov. Kognitivt funktionshindrades behov. Rörelsehindrades behov

Webbtillgänglighet. Tillgänglighet på webben. Hörselskadades behov. Synskadades behov. Kognitivt funktionshindrades behov. Rörelsehindrades behov Webbtillgänglighet Tillgänglighet på webben Att göra webbsidor så att de är tillgängliga för alla oavsett vilka funktionsnedsättningar man har Att göra sidor tillgängliga oavsett vilken inoch utmatningsutrustning

Läs mer

Goals for third cycle studies according to the Higher Education Ordinance of Sweden (Sw. "Högskoleförordningen")

Goals for third cycle studies according to the Higher Education Ordinance of Sweden (Sw. Högskoleförordningen) Goals for third cycle studies according to the Higher Education Ordinance of Sweden (Sw. "Högskoleförordningen") 1 1. Mål för doktorsexamen 1. Goals for doctoral exam Kunskap och förståelse visa brett

Läs mer

Information technology Open Document Format for Office Applications (OpenDocument) v1.0 (ISO/IEC 26300:2006, IDT) SWEDISH STANDARDS INSTITUTE

Information technology Open Document Format for Office Applications (OpenDocument) v1.0 (ISO/IEC 26300:2006, IDT) SWEDISH STANDARDS INSTITUTE SVENSK STANDARD SS-ISO/IEC 26300:2008 Fastställd/Approved: 2008-06-17 Publicerad/Published: 2008-08-04 Utgåva/Edition: 1 Språk/Language: engelska/english ICS: 35.240.30 Information technology Open Document

Läs mer

DVG C01 TENTAMEN I PROGRAMSPRÅK PROGRAMMING LANGUAGES EXAMINATION :15-13: 15

DVG C01 TENTAMEN I PROGRAMSPRÅK PROGRAMMING LANGUAGES EXAMINATION :15-13: 15 DVG C01 TENTAMEN I PROGRAMSPRÅK PROGRAMMING LANGUAGES EXAMINATION 120607 08:15-13: 15 Ansvarig Lärare: Donald F. Ross Hjälpmedel: Bilaga A: BNF-definition En ordbok: studentenshemspråk engelska Betygsgräns:

Läs mer

Vad kännetecknar en god klass. Vad kännetecknar en god klass. F12 Nested & Inner Classes

Vad kännetecknar en god klass. Vad kännetecknar en god klass. F12 Nested & Inner Classes Vad kännetecknar en god klass F12 Nested & En odelad, väldefinierad abstraktion Uppgiften kan beskrivas kort och tydlig Namnet är en substantiv eller adjektiv som beskriver abstraktionen på ett adekvat

Läs mer

ANSÖKAN OM INRÄTTANDE AV EXTERNT FINANSIERAT DOKTORANDPROJEKT ANNAN ARBETSGIVARE ÄN GÖTEBORGS UNIVERSITET

ANSÖKAN OM INRÄTTANDE AV EXTERNT FINANSIERAT DOKTORANDPROJEKT ANNAN ARBETSGIVARE ÄN GÖTEBORGS UNIVERSITET ANSÖKAN OM INRÄTTANDE AV EXTERNT FINANSIERAT DOKTORANDPROJEKT ANNAN ARBETSGIVARE ÄN GÖTEBORGS UNIVERSITET APPLICATION FOR STARTING AN EXTERNALLY FINANCED DOCTORAL PROJECT EXTERNAL EMPLOYER Titel på doktorandprojektet

Läs mer

Support Manual HoistLocatel Electronic Locks

Support Manual HoistLocatel Electronic Locks Support Manual HoistLocatel Electronic Locks 1. S70, Create a Terminating Card for Cards Terminating Card 2. Select the card you want to block, look among Card No. Then click on the single arrow pointing

Läs mer

EXTERNAL ASSESSMENT SAMPLE TASKS SWEDISH BREAKTHROUGH LSPSWEB/0Y09

EXTERNAL ASSESSMENT SAMPLE TASKS SWEDISH BREAKTHROUGH LSPSWEB/0Y09 EXTENAL ASSESSENT SAPLE TASKS SWEDISH BEAKTHOUGH LSPSWEB/0Y09 Asset Languages External Assessment Sample Tasks Breakthrough Stage Listening and eading Swedish Contents Page Introduction 2 Listening Sample

Läs mer

Seminarium om CCL och SMS Förordning (EU) nr 965/2012 OPS-CAT/Flygplan EASA-OPS

Seminarium om CCL och SMS Förordning (EU) nr 965/2012 OPS-CAT/Flygplan EASA-OPS Seminarium om CCL och SMS Förordning (EU) nr 965/2012 OPS-CAT/Flygplan EASA-OPS Clarion Hotel Arlanda 1 Välkommen Nödutgångar Tider Internet Toaletter Telefoner o datorer Kaffe Lunch 2 Agenda Seminarium

Läs mer

Senaste trenderna från testforskningen: Passar de industrin? Robert Feldt,

Senaste trenderna från testforskningen: Passar de industrin? Robert Feldt, Senaste trenderna från testforskningen: Passar de industrin? Robert Feldt, robert.feldt@bth.se Vad är på gång i forskningen? (ICST 2015 & 2016) Security testing Mutation testing GUI testing Model-based

Läs mer

PORTSECURITY IN SÖLVESBORG

PORTSECURITY IN SÖLVESBORG PORTSECURITY IN SÖLVESBORG Kontaktlista i skyddsfrågor / List of contacts in security matters Skyddschef/PFSO Joakim Nilsson Phone: +46 456 422 44. Mobile: +46 708 56 94 09 E-mail: joakim.nilsson@sbgport.com

Läs mer

Anders Persson Philosophy of Science (FOR001F) Response rate = 0 % Survey Results. Relative Frequencies of answers Std. Dev.

Anders Persson Philosophy of Science (FOR001F) Response rate = 0 % Survey Results. Relative Frequencies of answers Std. Dev. Anders Persson Philosophy of Science (FOR00F) Response rate = 0 % Survey Results Legend Relative Frequencies of answers Std. Dev. Mean Question text Left pole % % Right pole n=no. of responses av.=mean

Läs mer

Övning 5 ETS052 Datorkommuniktion Routing och Networking

Övning 5 ETS052 Datorkommuniktion Routing och Networking Övning 5 TS5 Datorkommuniktion - 4 Routing och Networking October 7, 4 Uppgift. Rita hur ett paket som skickas ut i nätet nedan från nod, med flooding, sprider sig genom nätet om hop count = 3. Solution.

Läs mer

Användarhandbok. MHL to HDMI Adapter IM750

Användarhandbok. MHL to HDMI Adapter IM750 Användarhandbok MHL to HDMI Adapter IM750 Innehåll Inledning...3 MHL to HDMI Adapter-översikt...3 Komma igång...4 Smart Connect...4 Uppgradera Smart Connect...4 Använda MHL to HDMI Adapter...5 Ansluta

Läs mer

Design Service Goal. Hantering av demonterbara delar som ingår i Fatigue Critical Baseline Structure List. Presentatör

Design Service Goal. Hantering av demonterbara delar som ingår i Fatigue Critical Baseline Structure List. Presentatör Design Service Goal Hantering av demonterbara delar som ingår i Fatigue Critical Baseline Structure List Presentatör Thobias Log Flygteknisk Inspektör Sjö- och luftfartsavdelningen Enheten för operatörer,

Läs mer

Kursplan. JP1040 Japanska III: Språkfärdighet. 15 högskolepoäng, Grundnivå 1. Japanese III: Language Proficiency

Kursplan. JP1040 Japanska III: Språkfärdighet. 15 högskolepoäng, Grundnivå 1. Japanese III: Language Proficiency Kursplan JP1040 Japanska III: Språkfärdighet 15 högskolepoäng, Grundnivå 1 Japanese III: Language Proficiency 15 Higher Education Credits *), First Cycle Level 1 Mål Efter avslutad kurs ska de studerande

Läs mer

Välkommen in på min hemsida. Som företagsnamnet antyder så sysslar jag med teknisk design och konstruktion i 3D cad.

Välkommen in på min hemsida. Som företagsnamnet antyder så sysslar jag med teknisk design och konstruktion i 3D cad. Välkommen in på min hemsida. Som företagsnamnet antyder så sysslar jag med teknisk design och konstruktion i 3D cad. har varit aktivt sedan 2004, men min bransch erfarenhet började redan 1983. Jag sysslar

Läs mer

Translation Changes in Swedish EBSCOhost Interface

Translation Changes in Swedish EBSCOhost Interface Translation Changes in Swedish EBSCOhost Interface Benjamin Runggaldier Regional Sales Manager Sweden 2 Suggested Translation Changes All the suggested changes have been reviewed by the language team Some

Läs mer

Viktig information för transmittrar med option /A1 Gold-Plated Diaphragm

Viktig information för transmittrar med option /A1 Gold-Plated Diaphragm Viktig information för transmittrar med option /A1 Gold-Plated Diaphragm Guldplätering kan aldrig helt stoppa genomträngningen av vätgas, men den får processen att gå långsammare. En tjock guldplätering

Läs mer

TAGFAK, semicolon separated

TAGFAK, semicolon separated DHL Sweden Invoice and shipment cost specification Semicolon separated flat file message Version 1.1 Updated 2011-09-09 Version history Date/version Field Modification / Comment Updated by 2011-02-17 First

Läs mer

55R Volvo XC » Volvo XC » Volvo S » Volvo V » Volvo XC » Volvo V »

55R Volvo XC » Volvo XC » Volvo S » Volvo V » Volvo XC » Volvo V » 55R-01 3687 90 Volvo XC60 2008-2013» Volvo XC60 2013» Volvo S60 2010» Volvo V60 2010» Volvo XC70 2007» Volvo V70 2007» 668-0312 rev. 2014-05-07 RG Congratulations on purchasing an ATS towbar Alexo Towbars

Läs mer

Par m 328 feet. Lång höger sväng. Korgen står placerad i en skogsglänta OB-linje på vänster sida.

Par m 328 feet. Lång höger sväng. Korgen står placerad i en skogsglänta OB-linje på vänster sida. 1 100 m 328 feet Lång höger sväng. Korgen står placerad i en skogsglänta -linje på vänster sida. Long right turn. Basket are placed in a forrest glade. -line on the left side. Snälla, skräpa ej ner vår

Läs mer

Examensarbete Introduk)on - Slutsatser Anne Håkansson annehak@kth.se Studierektor Examensarbeten ICT-skolan, KTH

Examensarbete Introduk)on - Slutsatser Anne Håkansson annehak@kth.se Studierektor Examensarbeten ICT-skolan, KTH Examensarbete Introduk)on - Slutsatser Anne Håkansson annehak@kth.se Studierektor Examensarbeten ICT-skolan, KTH 2016 Anne Håkansson All rights reserved. Svårt Harmonisera -> Introduktion, delar: Fråga/

Läs mer

Syns du, finns du? Examensarbete 15 hp kandidatnivå Medie- och kommunikationsvetenskap

Syns du, finns du? Examensarbete 15 hp kandidatnivå Medie- och kommunikationsvetenskap Examensarbete 15 hp kandidatnivå Medie- och kommunikationsvetenskap Syns du, finns du? - En studie över användningen av SEO, PPC och sociala medier som strategiska kommunikationsverktyg i svenska företag

Läs mer

FOI MEMO. Jonas Hallberg FOI Memo 5253

FOI MEMO. Jonas Hallberg FOI Memo 5253 Projekt/Project Security culture and information technology Projektnummer/Project no Kund/Customer B34103 MSB Sidnr/Page no 1 (5) Handläggare/Our reference Datum/Date Jonas Hallberg 2015-01-21 FOI Memo

Läs mer

Matthew Thurley Industriell bildanalys (E0005E) Response rate = 65 %

Matthew Thurley Industriell bildanalys (E0005E) Response rate = 65 % Matthew Thurley Industriell bildanalys (E000E) Response rate = % Survey Results Legend Relative Frequencies of answers Std. Dev. Mean Question text Left pole % % Right pole n=no. of responses av.=mean

Läs mer

Writing with context. Att skriva med sammanhang

Writing with context. Att skriva med sammanhang Writing with context Att skriva med sammanhang What makes a piece of writing easy and interesting to read? Discuss in pairs and write down one word (in English or Swedish) to express your opinion http://korta.nu/sust(answer

Läs mer

Resultat av den utökade första planeringsövningen inför RRC september 2005

Resultat av den utökade första planeringsövningen inför RRC september 2005 Resultat av den utökade första planeringsövningen inför RRC-06 23 september 2005 Resultat av utökad första planeringsövning - Tillägg av ytterligare administrativa deklarationer - Variant (av case 4) med

Läs mer

Det finns en handledning till kortet på hemsidan. AVR STK500.

Det finns en handledning till kortet på hemsidan. AVR STK500. Laboration 1 (ver 1) Uppgifter: AVR Studio 4.lnk Bli bekant med utvecklingskortet, och AVR studio. Skriva in program för binärräknare. Simulera detta samt ladda ner det till kortet. Förse ovanstående program

Läs mer

Studieteknik för universitetet 2. Books in English and annat på svenska

Studieteknik för universitetet 2. Books in English and annat på svenska Studieteknik för universitetet 2 Books in English and annat på svenska Inte bara svenska till engelska Vardagsspråk till akademiskt språk Böcker på engelska. Lektioner, diskussioner och tentor på svenska.

Läs mer

En bild säger mer än tusen ord?

En bild säger mer än tusen ord? Faculteit Letteren en Wijsbegeerte Academiejaar 2009-2010 En bild säger mer än tusen ord? En studie om dialogen mellan illustrationer och text i Tiina Nunnallys engelska översättning av Pippi Långstrump

Läs mer

ANSÖKAN OM INRÄTTANDE AV EXTERNT FINANSIERAT DOKTORANDPROJEKT ANNAN ARBETSGIVARE ÄN GÖTEBORGS UNIVERSITET

ANSÖKAN OM INRÄTTANDE AV EXTERNT FINANSIERAT DOKTORANDPROJEKT ANNAN ARBETSGIVARE ÄN GÖTEBORGS UNIVERSITET ANSÖKAN OM INRÄTTANDE AV EXTERNT FINANSIERAT DOKTORANDPROJEKT ANNAN ARBETSGIVARE ÄN GÖTEBORGS UNIVERSITET APPLICATION FOR STARTING AN EXTERNALLY FINANCED DOCTORAL PROJECT EXTERNAL EMPLOYER Titel på doktorandprojektet

Läs mer

VHDL Basics. Component model Code model Entity Architecture Identifiers and objects Operations for relations. Bengt Oelmann -- copyright

VHDL Basics. Component model Code model Entity Architecture Identifiers and objects Operations for relations. Bengt Oelmann -- copyright BO 1 VHDL Basics Outline Component model Code model Entity Architecture Identifiers and objects Operations for relations Bengt Oelmann -- copyright 2002 1 Component model Model for describing components

Läs mer

Protokoll Föreningsutskottet 2013-10-22

Protokoll Föreningsutskottet 2013-10-22 Protokoll Föreningsutskottet 2013-10-22 Närvarande: Oliver Stenbom, Andreas Estmark, Henrik Almén, Ellinor Ugland, Oliver Jonstoij Berg. 1. Mötets öppnande. Ordförande Oliver Stenbom öppnade mötet. 2.

Läs mer

Authentication Context QC Statement. Stefan Santesson, 3xA Security AB stefan@aaa-sec.com

Authentication Context QC Statement. Stefan Santesson, 3xA Security AB stefan@aaa-sec.com Authentication Context QC Statement Stefan Santesson, 3xA Security AB stefan@aaa-sec.com The use case and problem User identities and user authentication is managed through SAML assertions. Some applications

Läs mer

Utrustning för underhåll av vintervägar och trafikområden Insamling och överföring av data Del 1: Insamling av data i fordon

Utrustning för underhåll av vintervägar och trafikområden Insamling och överföring av data Del 1: Insamling av data i fordon SVENSK STANDARD SS-EN 15430-1:2007 Fastställd/Apprved: 2007-12-27 Publicerad/Published: 2008-01-17 Utgåva/Editin: 1 Språk/Language: engelska/english ICS: 43.160; 35.240.60 Utrustning för underhåll av vintervägar

Läs mer

Libers språklåda i engelska Grab n go lessons

Libers språklåda i engelska Grab n go lessons Libers språklåda i engelska 7-9 - Grab n go lessons PROVLEKTION Libers språklåda i engelska Grab n go lessons (47-90988-9) Författarna och Liber AB Får kopieras 1 Two stories in one Förberedelser Kopiera

Läs mer

Family appendix for applicants Appendix D

Family appendix for applicants Appendix D amily appendix for applicants Appendix D 1 Your personal particulars Date of birth 2 Personal particulars of your children IGR 201031 Å 100517 3 Personal particulars of your parents Your father's surname,

Läs mer

Every visitor coming to the this website can subscribe for the newsletter by entering respective address and desired city.

Every visitor coming to the this website can subscribe for the newsletter by entering respective  address and desired city. Every visitor coming to the this website can subscribe for the newsletter by entering respective e-mail address and desired city. Latest deals are displayed at the home page, wheras uper right corner you

Läs mer

!"#$ $ % &'(')*+* +, 012/( 3-0$ (4 (5 /& 0- -(4 (5 /& 06/7*)).)*+* 8 09

!#$ $ % &'(')*+* +, 012/( 3-0$ (4 (5 /& 0- -(4 (5 /& 06/7*)).)*+* 8 09 !!"#$ $ % &'(')*+* +, -./& 012/( 3-0$ (4 (5 /& 0- -(4 (5 /& 06/7*)).)*+* 8 0 Organisation/ Organization Linnéuniversitetet Institutionen för teknik Linnaeus University School of Engineering Författare/Author(s)

Läs mer

UML use cases. Mikael Söderström Institutionen för informatik Umeå universitet micke@informatik.umu.se

UML use cases. Mikael Söderström Institutionen för informatik Umeå universitet micke@informatik.umu.se UML use cases micke@informatik.umu.se Use case (användningsfall) En modelleringsteknik som hjälper utvecklare att bestämma vilka funktioner som ska implementeras i ett system/applikation Finns olika typer

Läs mer

HANTERING AV UPS CX

HANTERING AV UPS CX HANTERING AV UPS CX2100-0904 Hantering av UPS-modulen CX2100-0904. I WES7 och TwinCAT 2. Inställning av UPS:en i WES7 UPS:ens konfigurationsflik Inställningsmöjligheterna för hur UPS:en beter sig finns

Läs mer

What Is Hyper-Threading and How Does It Improve Performance

What Is Hyper-Threading and How Does It Improve Performance What Is Hyper-Threading and How Does It Improve Performance Ali Muthanna, Lunds Universitet, IDA2, EDT621 Abstract Hyper-Threading (HT) is Intel s version of simultaneous multi-threading (SMT). Hyper-Threading

Läs mer

Grafer, traversering. Koffman & Wolfgang kapitel 10, avsnitt 4

Grafer, traversering. Koffman & Wolfgang kapitel 10, avsnitt 4 Grafer, traversering Koffman & Wolfgang kapitel 1, avsnitt 4 1 Traversering av grafer De flesta grafalgoritmer innebär att besöka varje nod i någon systematisk ordning precis som med träd så finns det

Läs mer

LULEÅ TEKNISKA UNIVERSITET

LULEÅ TEKNISKA UNIVERSITET LULEÅ TEKNISKA UNIVERSITET Tentamen i Objektorienterad programmering och design Totala antalet uppgifter: 5 Lärare: Håkan Jonsson, Andrey Kruglyak, 491000 Resultatet offentliggörs senast: 2010-04-09. Tillåtna

Läs mer

PRESTANDADEKLARATION. Nr 0015 SV

PRESTANDADEKLARATION. Nr 0015 SV PRESTANDADEKLARATION Nr 0015 SV 1. Produkttypens unika identifikationskod: fischer Anchor bolt FBN II, FBN II A4 2. Avsedd användning/avsedda användningar: Produkt Avsedd användning/användningar Kraftkontrollerat

Läs mer