Modeling Mobility. Petteri Nurmi

Koko: px
Aloita esitys sivulta:

Download "Modeling Mobility. Petteri Nurmi"

Transkriptio

1 Modeling Mobility Petteri Nurmi

2 Questions What mobility models are? What is a discrete Markov model? What is an order q Markov predictor? What is the LZ predictor? What are time independent and time dependent predictors? How arrival times and visit durations can be modeled? How transportation mode can be detected from GSM, WiFi or GPS measurements?

3 Mobility Model Mathematical characterization of how people move Level of detail can vary: Fine-grained: change in location, velocity and acceleration, transportation mode For example, motion model used in a particle filter for location tracking Coarse-grained: transitions between different locations For example, movements between significant places Main focus of lecture on coarse-grained mobility Important for understanding urban phenomena and for characterizing the behavior of large masses

4 Example: Lévy-Flight model Source: evyflight.svg Characterizes displacements in human mobility Most trips have a short distance within specific areas Occasionally long movements to new areas Example of a so-called spatial mobility model Addresses an aspect related to changes in locations Aggregate model: provides information about averaged mobility behavior

5 Mobility Modeling Scope Individual: models the behavior of an individual Collective: models the behavior of large set of people Temporality Time-independent: mobility depends only on the previous state Time-dependent: mobility depends on previous time and temporal features (day of week, hour of day etc.) Memory and complexity How much historical information needs to be considered to make predictions about future behavior I.e., the order of the model

6 Application Areas for Mobility Models Epidemiology: modeling spread of viruses and infections in urban environment Diffusion of ideas: modeling propagation of innovations Urban planning: understanding how and where people move Transportation behavior monitoring: Understanding how public transportation network is being utilized Sustainability: estimating carbon footprint and encouraging greener alternatives

7 Example Application - AdNext Targeted advertising for large mall complexes Deployed within the COEX mall, the largest mall in South Korea and one of the largest in Asia Mobility model used to predict the next shop that the user is likely to visit Shown advertisements selected based on the predicted location, thus, just before potential purchase decisions Taken into account category of shops and causality in visiting patterns. For example, if the user has already visited a restaurant, no predictions related to visiting other restaurants are made

8 Example Application - UbiGreen Mobile application that gives feedback to users about their personal transportation behavior Different visualizations of the phone background depending on the sustainability of detected transportation behavior Mobility modeled in terms of transportation behavior Wearable sensor used for automatically detecting pedestrian and non-motorized transportation GSM used to detect motorized transportation behavior Users also provided opportunity to input things manually

9 Location Modeling Cluster visited locations into places I.e., perform place identification on traces Create a model that captures 1. Movement between places (location) 2. Arrival times of places 3. Duration of stay in a place Early models focused on modeling movement between places Recent work considers also arrival times and duration of stay

10 Location Modeling Transitions between places Simplest approach for modeling movements between places is to use a discrete Markov model After places have been identified, replay the data to the algorithm to detect visits to places Reconstructed visit sequence can be used to estimate the probabilities in the transition matrix Another popular choice is the LZ family of algorithms Any other algorithm can be used as well: Conditional random fields Timeseries forecasting methods

11 Mobility Modeling Example All data Places extracted from data Transition Matrix (Order 1)

12 Discrete Markov Models Stochastic finite state machine Let S 1,,S n denote a discrete set of states Let x k denote the state of the system at time k I.e., x k {S 1,,S n } The state of the system is assumed to evolve over time according to a probabilistic model p(x k x 1:k-1 ) p(x k x 1:k-1 ) are called transition probabilities The probability of the current state x k is assumed to depend only on the previous q values The value of q defines the order or memory of the model Order q model: p(x k x 1:k-1 ) = p(x k x k-q-1:k-1 )

13 Discrete Markov Models - Example Assume a place identification algorithm identifies three places for an individual: home, work, shop Transitions from one place to another are governed by the following probabilities: HOME WORK SHOP HOME WORK SHOP If the person is current in the shop, what is the probability of the person going to work and then to home? P(shop, work, home model, x k = shop) = P(shop) P(work shop) P(work home) = 1 * 0.05 * 0.15 =

14 Discrete Markov Models Estimating Transition Probabilities Transition probabilities can be estimated from data P(s i s j,d) = P(D,s j s i )P(s j s i ) Follows from Bayes theorem Standard approach is to assume P(D,s j s i ) follows a Multinomial distribution P(D,s j s i ) can simply be estimated using n ij / N, i.e., the relative frequency of state transitions in the data n ij = number of transitions from s i to s j in the data N = number of measurements in the data For P(s j s i ) a prior guess is used Or simply P(s j s i ) = 1/n (n is the number of states)

15 Discrete Markov Models State Duration Given that the model is in a known state S q, what is the probability that it stays in that state for d periods? Corresponds to determining the probability of the state sequence O = S q,, S q, S z (z q) P(O Model) := p(s q s q ) d-1 (1 - p(s q s q )) = p q (d) The quantity p q (d) specifies a probability distribution function for the duration of a state The expected duration of a state q is given by E[d(q)] = dp q (d) = 1 / (1 - p(s q s q )) For the example, we have: E[home] = 1 / (1 0.85) =

16 Lempel-Ziv (LZ) Predictor Text compression algorithms typically are good predictors as they identify regularities in text Can thus be used to predict location transitions Lempel-Ziv predictor Based on the Lempel-Ziv text compression algorithm Let s denote a sequence of symbols, the algorithm splits the original sequence recursively into parts so that s 0 = γ here γ denotes the empty string For all s j j >= 1, the prefix of s j is equal to some s i, i < j s 0 s 1...s k = s The splitting of a string can be represented using a LZ tree

17 LZ-Tree Input: ABABABCDCBDC S0 = γ S1 = A S2 = B S3 = AB S4 = ABC S5 = D S6 = C S7 = BD S8 = C ABABABCDCBDC BABABCDCBDC ABABCDCBDC ABCDCBDC DCBDC CBDC BDC C

18 Lempel-Ziv (LZ) Predictor Given the sequence of locations L, the probability of the next location can be estimated using Number of times s m appears as prefix Example: P(C AB) = ½ P(B) = 2/8 P(B A) = 2/3 2/3 1/2 Number of times s m appears as prefix of s 3/8 2/8 2/8 1/8 1/

19 LZ Predictor Issues and Extensions ABABABCDCBDC Patterns between two detected patterns are lost BD is followed by C but DC is not in the LZ tree LeZi update: Variation of LZ algorithm where also substrings of patterns are taken into account Results in a LZU tree, probabilities can be estimated using prediction- by-partial matching (PPM) Patters within patterns are lost Pattern abc is in the LZ tree but the pattern bc not Active LeZi: Uses LZ to determine window length and considers all suffixes when creating a tree (ALZ tree)

20 Temporal Modeling Temporal mobility models attempt to capture arrival times and duration of stay (residence) Basic idea Identify places Use arrival and departure to a place to construct pairs of (arrival time, duration) measurements Range typically restricted, e.g., to 5 minute intervals Arrival time and duration can be predicted by examining the history of measurements Once actual arrival time known, estimate of duration can be refined by restricting the history

21 Arrival Time Modeling For each location, create a time series of previous arrival times / daily visit start times Example: Monday 1:10pm, Tuesday 2:30pm, Denote the visit daily start times using C = (c 1,,c n ) Arrival time prediction: At time k, consider the previous m arrival times, C = (c k- (m+1),,c k-1 ) Search the history for sequences C = (c i-(m+1),,c i-1 ) that are similar to C Estimate arrival time by averaging the values that follow these subsequences

22 Example Current arrival time sequence 18:35, 22:10, 8:00,?? Similar arrival time sequences in historical data 18:30, 22:00, 8:15, 13:10 18:10, 21:50, 8:35, 12:40 Predicted arrival time 13:10 12:40 12:

23 Predicting Visit Duration Visit duration can be predicted in similar fashion Instead of considering arrival times of previous visits that match with the sequence of current measurements, calculate average over previous durations Example: 18:35, 22:10, 8:00,?? 13:10 Duration 40 12:40 Duration 50 Arrival time 12:55, Duration 45 minutes

24 Temporal Modeling The search for similar sequences requires a suitable measure of similarity Simple solution is to bin the arrival times using, e.g., 5 minute intervals, and compute distance between bins More elaborate techniques for the task are discussed during Lecture IX Alternative is to model time spent in a location using a probabilistic distribution E.g., using a truncated exponential distribution

25 Predictability Tuple (L,A,D) is called a visit pattern L = Location of the user A = Time when the user arrived at the location D = Duration that the user stayed at the location The pattern (L, A, D) is predictable given observation history H if and only if (L,A,D) H Predictability can be quantified using entropy H(X) = - p(x i ) log p(x i ) Measure of disorder è high entropy corresponds to poor predictability and vice versa

26 Predictability Entropy as a measure of predictability depends on the complexity of the model Consider the sequence S = H H T H H T H H T Time-independent predictor: H(S) = 0.64 Order-1 Markov predictor: H(S) = 0.35 Order-2 Markov predictor: H(S) = 0 The higher the complexity of the model, the more data is needed to construct the model Too little data easily leads to overfitting

27 Mobility Modeling Transportation Mode Detection Transportation mode is a special aspect of mobility Transportation mode detection applications include: Carbon footprint monitoring Travel route recommendations Urban planning Two subtasks 1. Distinguishing between stationary and non-stationary activities 2. Recognizing mode of locomotion (e.g., motorized, pedestrian etc.)

28 Detecting Stationary Periods When user is moving, sensor measurements contain more variation than when user is stationary Variation can be measured from different sensors: accelerometer, GPS, WiFi etc. Basic technique is to calculate the mean intensity or variance of a sensor value over a predefined window Intensity: i=1n x i where N is the size of the window Variance: 1/(N-1) i=1 N (x i -μ i ) 2 where μ i is the mean of the measurements within the data window

29 Stationary Detection Example - LOCADIO WiFi positioning system that uses stationary inference as part of position estimation Motion detected using a two-phase approach Given a window size w, identify the strongest access point within the window and calculate its variance Classify the person as stationary or moving based on the calculated variance Use a HMM to smooth classification results over time

30 Stationary Detection Example - LOCADIO Stationary Strongest access point σ = 20 P(σ still) = P(σ moving) = Moving

31 Locomotion Detection Detecting the means of transportation Motorized (car, tram, bus, ) Pedestrian (walking, running, ) Non-motorized transportation (bicycling, ) Most common approach is to use wearable accelerometers (or accelerometers on the phone) WiFi and GSM signatures can be used for coarse-grained detection over time windows with long duration GPS features can be used to separate between transportation modes Accelerometer-based solutions out-of-scope for the course, in the following we briefly examine the others

32 GSM Based Mobility Detection Monitor changes in signal environment over time and classify mobility based on the nature of changes Fingerprinting works due to spatial variability of signal environment è changes correlate with mobility Magnitude of changes related with distance and velocity and thus can be used to detect transportation modes Temporal characteristics The faster the user moves, the more cells (s)he observes è number of unique cells linked with mobility Spatial characteristics The faster the user moves, the more likely a cell handover is taking place è residence time in cell linked with mobility

33 GSM Based Mobility Detection - Example Number of unique cells: 3 Dwell times: = 50s = 1min 40s = 10s Assume constant sampling rate of 10s

34 WiFi Based Mobility Detection Similarly to GSM, changes in WiFi signal environment give cues about mobility Temporal characteristics Variation in signal strength measurements, e.g., average variance of the k strongest access points For LOCADIO, k = 1 Spatial characteristics The amount of access points seen varies over time, similarly the time access points visible varies The dominant access point typically remains visible for the longest amount of time è can be used as a cue of dwell time

35 WiFi Based Mobility Detection Example Identify dominant access point Calculate variance of dominant access point σ = Calculate dwell time Access point visible all the time è dwell time = dwell time + number_of_measurements * sampling_rate In this example 10 seconds

36 Other Possible Features Additional features can be extracted when the measurements are multidimensional I.e., requires measurements from several cell towers and/or several WiFi access points Examples Statistical features: Euclidean Distance, mean variance, mean distance between measurements etc. Set-based features: Tanimoto coefficient, Spearman rank correlation See previous lecture

37 GPS-Based Locomotion Detection Basic idea: Partition GPS trajectories into segments Segmenting discussed during Lecture IX For each segment, extract a set of features Distance of the segment Maximum velocity and acceleration along the segment Average velocity, variance of velocity along the segment Classify transportation mode given the features Decision trees shown good performance in the literature Smooth classification results over time HMM or Conditional Random Field can be used for this

38 GPS Heading Change Rate (HCR) Intuition: transportation mode affects the degree of freedom for variations in trajectories Cars constrained to roads and lanes Pedestrian movement contains more variation Defined as the frequency that people change heading direction within a unit distance HCR = P c / d P c = number of points where headings changes more than a threshold d = distance of the segment

39 GPS Stop Rate (SR) Intuition: traveling by public transportation should contain more stops than driving In addition to traffic lights, contains picking up passengers and waiting for them to aboard etc. Defined as the frequency that people move with a slow velocity within a unit distance SR = P s / d P s = number of points where velocity below a threshold d = distance of the segment

40 GPS Velocity Change Rate (VCR) Intuition: mode of transportation affects how the velocity of movement changes Pedestrians generally have small changes in velocity Motorized transportation has larger changes, public transport should have more changes than driving Measures the frequency of significant changes in velocity over a unit distance VCR = P v / d P v = no. points where velocity rate exceeds a threshold Velocity rate = V 2 V 1 / V 1 d = distance of the segment

41 GPS Example HCR = P c / d = P c = 5 if we assume a change threshold of 5 degrees or more SR = P s / d = 5.1 P s = 1 if we assume a threshold of 1 km/h VCR = P v / d = P v = 3 if we assume a threshold of 0.25 for velocity rate Lat Lon Dist Dir Vel Total distance of segment meters Assume unit distance equals 1km

42 Summary Mobility model is a mathematical characterization of how people move Movement between locations Visit arrival times and durations Movement in general (stationary/non-stationary, motorized/non-motorized, ) Location Transition Models (Discrete) Markov Predictors LZ predictor Prediction model can be represented using LZ-Tree

43 Summary Arrival time and duration modeling NextPlace: history fingerprinting, estimate arrival time and duration by averaging historical values Predictability Entropy can be used to quantify how predictable a visiting pattern is Transportation mode detection Stationary detection: measure intensity of signal variations and use that to detect movement Locomotion detection: spatial and temporal characteristics used to distinguish different modes

44 Literature Froehlich, J.; Dillahunt, T.; Klasnja, P.; Mankoff, J.; Consolvo, S.; Harrison, B. & Landay, J. A., UbiGreen: investigating a mobile tool for tracking and supporting green transportation habits, Proceedings of the 27th international conference on Human factors in computing systems (CHI), ACM, 2009, Kim, B.; Ha, J.-Y.; Lee, S.-J.; Kang, S.; Lee, Y.; Rhee, Y.; Nachman, L. & Song, J. AdNext: A Visit-Pattern-Aware Mobile Advertising System for Urban Commercial Complexes, Proceedings of Workshop on Hot Topics for Mobile Computing (HotMobile), ACM, 2011 Song, L.; Kotz, D.; Jain, R. & He, X., Evaluating location predictors with extensive Wi-Fi mobility data, Proceedings of the 23rd Annual Joint Conference of the IEEE Computer and Communications Societies (INFOCOM), IEEE, 2004, Rodriguez-Carrion, A.; Garcia-Rubio, C. & Campo, C., Performance Evaluation of LZ-Based Location Prediction Algorithms in Cellular Networks, IEEE Communications Letters, 2010, 14,

45 Literature Ashbrook, D. & Starner, T., Using GPS to learn significant locations and predict movement across multiple users, Personal and Ubiquitous Computing, 2003, 7, Song, C.; Qu, Z.; Blumm, N. & Barabási, A.-L., Limits of Predictability in Human Mobility, Science, 2010, 19, Scellato, S.; Musolesi, M.; Mascolo, C.; Latora, V. & Campbell, A. T. NextPlace: A Spatio-temporal Prediction Framework for Pervasive Systems Proceedings of the 9th International Conference in Pervasive Computing (Pervasive), Spring, 2011, Bhattacharya, A. & Das, S. K., LeZi-update: an information-theoretic approach to track mobile users in PCS networks, Proceedings of the 5th annual ACM/IEEE international conference on Mobile computing and networking, ACM, 1999, 1-12 Song, L.; Kotz, D.; Jain, R. & He, X. Evaluating Next-Cell Predictors with Extensive Wi-Fi Mobility Data IEEE Transactions on Mobile Computing, 2006, 5,

46 Literature Krumm, J. & Horvitz, E., LOCADIO: Inferring Motion and Location from Wi-Fi Signal Strengths, Proceedings of the 1st International Conference on Mobile and Ubiquitous Systems (Mobiquitous), IEEE, 2004, 4-14 Zheng, Y.; Li, Q.; Chen, Y.; Xie, X. & Ma, W.-Y., Understanding Mobility Based on GPS Data, Proceedings of the 10th international conference on Ubiquitous computing, 2008, Mun, M.; Estrin, D.; Burke, J. & Hansen, M., Parsimonious Mobility Classification using GSM and WiFi Traces, Proceedings of the 5th International Conference on Embedded Networked Sensor Systems (SenSys), Proceedings of the 5th International Conference on Embedded Networked Sensor Systems (SenSys), 2008, 1-5 Sohn, T.; Varshavsky, A.; LaMarca, A.; Chen, M. Y.; Choudhury, T.; Smith, I.; Consolvo, S.; Hightower, J.; Griswold, W. G. & de Lara, E., Mobility Detection Using Everyday GSM Traces, Proceedings of the 8th International Conference on Ubiquitous Computing (Ubicomp), 2006, Reddy, S.; Mun, M.; Burke, J.; Estrin, D.; Hansen, M. & Srivastava, M. Using Mobile Phones to Determine Transportation Modes ACM Transactions on Sensor Networks, 2010, 6, 13:1-13:

Efficiency change over time

Efficiency change over time Efficiency change over time Heikki Tikanmäki Optimointiopin seminaari 14.11.2007 Contents Introduction (11.1) Window analysis (11.2) Example, application, analysis Malmquist index (11.3) Dealing with panel

Lisätiedot

Capacity Utilization

Capacity Utilization Capacity Utilization Tim Schöneberg 28th November Agenda Introduction Fixed and variable input ressources Technical capacity utilization Price based capacity utilization measure Long run and short run

Lisätiedot

Information on preparing Presentation

Information on preparing Presentation Information on preparing Presentation Seminar on big data management Lecturer: Spring 2017 20.1.2017 1 Agenda Hints and tips on giving a good presentation Watch two videos and discussion 22.1.2017 2 Goals

Lisätiedot

16. Allocation Models

16. Allocation Models 16. Allocation Models Juha Saloheimo 17.1.27 S steemianalsin Optimointiopin seminaari - Sks 27 Content Introduction Overall Efficienc with common prices and costs Cost Efficienc S steemianalsin Revenue

Lisätiedot

Other approaches to restrict multipliers

Other approaches to restrict multipliers Other approaches to restrict multipliers Heikki Tikanmäki Optimointiopin seminaari 10.10.2007 Contents Short revision (6.2) Another Assurance Region Model (6.3) Cone-Ratio Method (6.4) An Application of

Lisätiedot

T Statistical Natural Language Processing Answers 6 Collocations Version 1.0

T Statistical Natural Language Processing Answers 6 Collocations Version 1.0 T-61.5020 Statistical Natural Language Processing Answers 6 Collocations Version 1.0 1. Let s start by calculating the results for pair valkoinen, talo manually: Frequency: Bigrams valkoinen, talo occurred

Lisätiedot

1. SIT. The handler and dog stop with the dog sitting at heel. When the dog is sitting, the handler cues the dog to heel forward.

1. SIT. The handler and dog stop with the dog sitting at heel. When the dog is sitting, the handler cues the dog to heel forward. START START SIT 1. SIT. The handler and dog stop with the dog sitting at heel. When the dog is sitting, the handler cues the dog to heel forward. This is a static exercise. SIT STAND 2. SIT STAND. The

Lisätiedot

E80. Data Uncertainty, Data Fitting, Error Propagation. Jan. 23, 2014 Jon Roberts. Experimental Engineering

E80. Data Uncertainty, Data Fitting, Error Propagation. Jan. 23, 2014 Jon Roberts. Experimental Engineering Lecture 2 Data Uncertainty, Data Fitting, Error Propagation Jan. 23, 2014 Jon Roberts Purpose & Outline Data Uncertainty & Confidence in Measurements Data Fitting - Linear Regression Error Propagation

Lisätiedot

S Sähkön jakelu ja markkinat S Electricity Distribution and Markets

S Sähkön jakelu ja markkinat S Electricity Distribution and Markets S-18.3153 Sähkön jakelu ja markkinat S-18.3154 Electricity Distribution and Markets Voltage Sag 1) Kolmivaiheinen vastukseton oikosulku tapahtuu 20 kv lähdöllä etäisyydellä 1 km, 3 km, 5 km, 8 km, 10 km

Lisätiedot

Results on the new polydrug use questions in the Finnish TDI data

Results on the new polydrug use questions in the Finnish TDI data Results on the new polydrug use questions in the Finnish TDI data Multi-drug use, polydrug use and problematic polydrug use Martta Forsell, Finnish Focal Point 28/09/2015 Martta Forsell 1 28/09/2015 Esityksen

Lisätiedot

The CCR Model and Production Correspondence

The CCR Model and Production Correspondence The CCR Model and Production Correspondence Tim Schöneberg The 19th of September Agenda Introduction Definitions Production Possiblity Set CCR Model and the Dual Problem Input excesses and output shortfalls

Lisätiedot

Gap-filling methods for CH 4 data

Gap-filling methods for CH 4 data Gap-filling methods for CH 4 data Sigrid Dengel University of Helsinki Outline - Ecosystems known for CH 4 emissions; - Why is gap-filling of CH 4 data not as easy and straight forward as CO 2 ; - Gap-filling

Lisätiedot

Metsälamminkankaan tuulivoimapuiston osayleiskaava

Metsälamminkankaan tuulivoimapuiston osayleiskaava VAALAN KUNTA TUULISAIMAA OY Metsälamminkankaan tuulivoimapuiston osayleiskaava Liite 3. Varjostusmallinnus FCG SUUNNITTELU JA TEKNIIKKA OY 12.5.2015 P25370 SHADOW - Main Result Assumptions for shadow calculations

Lisätiedot

( ( OX2 Perkkiö. Rakennuskanta. Varjostus. 9 x N131 x HH145

( ( OX2 Perkkiö. Rakennuskanta. Varjostus. 9 x N131 x HH145 OX2 9 x N131 x HH145 Rakennuskanta Asuinrakennus Lomarakennus Liike- tai julkinen rakennus Teollinen rakennus Kirkko tai kirkollinen rak. Muu rakennus Allas Varjostus 1 h/a 8 h/a 20 h/a 0 0,5 1 1,5 2 km

Lisätiedot

Alternative DEA Models

Alternative DEA Models Mat-2.4142 Alternative DEA Models 19.9.2007 Table of Contents Banker-Charnes-Cooper Model Additive Model Example Data Home assignment BCC Model (Banker-Charnes-Cooper) production frontiers spanned by convex

Lisätiedot

Tynnyrivaara, OX2 Tuulivoimahanke. ( Layout 9 x N131 x HH145. Rakennukset Asuinrakennus Lomarakennus 9 x N131 x HH145 Varjostus 1 h/a 8 h/a 20 h/a

Tynnyrivaara, OX2 Tuulivoimahanke. ( Layout 9 x N131 x HH145. Rakennukset Asuinrakennus Lomarakennus 9 x N131 x HH145 Varjostus 1 h/a 8 h/a 20 h/a , Tuulivoimahanke Layout 9 x N131 x HH145 Rakennukset Asuinrakennus Lomarakennus 9 x N131 x HH145 Varjostus 1 h/a 8 h/a 20 h/a 0 0,5 1 1,5 km 2 SHADOW - Main Result Assumptions for shadow calculations

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table WindPRO version 2.9.269

Lisätiedot

TIEKE Verkottaja Service Tools for electronic data interchange utilizers. Heikki Laaksamo

TIEKE Verkottaja Service Tools for electronic data interchange utilizers. Heikki Laaksamo TIEKE Verkottaja Service Tools for electronic data interchange utilizers Heikki Laaksamo TIEKE Finnish Information Society Development Centre (TIEKE Tietoyhteiskunnan kehittämiskeskus ry) TIEKE is a neutral,

Lisätiedot

Network to Get Work. Tehtäviä opiskelijoille Assignments for students. www.laurea.fi

Network to Get Work. Tehtäviä opiskelijoille Assignments for students. www.laurea.fi Network to Get Work Tehtäviä opiskelijoille Assignments for students www.laurea.fi Ohje henkilöstölle Instructions for Staff Seuraavassa on esitetty joukko tehtäviä, joista voit valita opiskelijaryhmällesi

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table WindPRO version 2.8.579

Lisätiedot

Bounds on non-surjective cellular automata

Bounds on non-surjective cellular automata Bounds on non-surjective cellular automata Jarkko Kari Pascal Vanier Thomas Zeume University of Turku LIF Marseille Universität Hannover 27 august 2009 J. Kari, P. Vanier, T. Zeume (UTU) Bounds on non-surjective

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG VE1 SHADOW - Main Result Calculation: 8 x Nordex N131 x HH145m Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please

Lisätiedot

Positioning Algorithms. Petteri Nurmi

Positioning Algorithms. Petteri Nurmi Positioning Algorithms Petteri Nurmi 19.1.2012 1 Questions How triangulation works and where it is still used? How trilateration works? How can distances be measured? How multilateration differs from trilateration?

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table WindPRO version 2.8.579

Lisätiedot

WindPRO version joulu 2012 Printed/Page :42 / 1. SHADOW - Main Result

WindPRO version joulu 2012 Printed/Page :42 / 1. SHADOW - Main Result SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table 13.6.2013 19:42 / 1 Minimum

Lisätiedot

Uusi Ajatus Löytyy Luonnosta 4 (käsikirja) (Finnish Edition)

Uusi Ajatus Löytyy Luonnosta 4 (käsikirja) (Finnish Edition) Uusi Ajatus Löytyy Luonnosta 4 (käsikirja) (Finnish Edition) Esko Jalkanen Click here if your download doesn"t start automatically Uusi Ajatus Löytyy Luonnosta 4 (käsikirja) (Finnish Edition) Esko Jalkanen

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table WindPRO version 2.8.579

Lisätiedot

Valuation of Asian Quanto- Basket Options

Valuation of Asian Quanto- Basket Options Valuation of Asian Quanto- Basket Options (Final Presentation) 21.11.2011 Thesis Instructor and Supervisor: Prof. Ahti Salo Työn saa tallentaa ja julkistaa Aalto-yliopiston avoimilla verkkosivuilla. Muilta

Lisätiedot

WindPRO version joulu 2012 Printed/Page :47 / 1. SHADOW - Main Result

WindPRO version joulu 2012 Printed/Page :47 / 1. SHADOW - Main Result SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table WindPRO version 2.8.579

Lisätiedot

( ,5 1 1,5 2 km

( ,5 1 1,5 2 km Tuulivoimala Rakennukset Asuinrakennus Liikerak. tai Julkinen rak. Lomarakennus Teollinen rakennus Kirkollinen rakennus Varjostus "real case" h/a 1 h/a 8 h/a 20 h/a 4 5 3 1 2 6 7 8 9 10 0 0,5 1 1,5 2 km

Lisätiedot

On instrument costs in decentralized macroeconomic decision making (Helsingin Kauppakorkeakoulun julkaisuja ; D-31)

On instrument costs in decentralized macroeconomic decision making (Helsingin Kauppakorkeakoulun julkaisuja ; D-31) On instrument costs in decentralized macroeconomic decision making (Helsingin Kauppakorkeakoulun julkaisuja ; D-31) Juha Kahkonen Click here if your download doesn"t start automatically On instrument costs

Lisätiedot

Choose Finland-Helsinki Valitse Finland-Helsinki

Choose Finland-Helsinki Valitse Finland-Helsinki Write down the Temporary Application ID. If you do not manage to complete the form you can continue where you stopped with this ID no. Muista Temporary Application ID. Jos et onnistu täyttää lomake loppuun

Lisätiedot

,0 Yes ,0 120, ,8

,0 Yes ,0 120, ,8 SHADOW - Main Result Calculation: Alue 2 ( x 9 x HH120) TuuliSaimaa kaavaluonnos Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered

Lisätiedot

On instrument costs in decentralized macroeconomic decision making (Helsingin Kauppakorkeakoulun julkaisuja ; D-31)

On instrument costs in decentralized macroeconomic decision making (Helsingin Kauppakorkeakoulun julkaisuja ; D-31) On instrument costs in decentralized macroeconomic decision making (Helsingin Kauppakorkeakoulun julkaisuja ; D-31) Juha Kahkonen Click here if your download doesn"t start automatically On instrument costs

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table WindPRO version 2.8.579

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table 5.11.2013 16:44 / 1 Minimum

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table 22.12.2014 11:33 / 1 Minimum

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Calculation: N117 x 9 x HH141 Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG

Lisätiedot

Positioning Algorithms. Petteri Nurmi

Positioning Algorithms. Petteri Nurmi Positioning Algorithms Petteri Nurmi 19.1.2012 1 Questions What are the main positioning algorithms and how they work? Which two main factors influence positioning errors? What is dilution of precision?

Lisätiedot

Capacity utilization

Capacity utilization Mat-2.4142 Seminar on optimization Capacity utilization 12.12.2007 Contents Summary of chapter 14 Related DEA-solver models Illustrative examples Measure of technical capacity utilization Price-based measure

Lisätiedot

On instrument costs in decentralized macroeconomic decision making (Helsingin Kauppakorkeakoulun julkaisuja ; D-31)

On instrument costs in decentralized macroeconomic decision making (Helsingin Kauppakorkeakoulun julkaisuja ; D-31) On instrument costs in decentralized macroeconomic decision making (Helsingin Kauppakorkeakoulun julkaisuja ; D-31) Juha Kahkonen Click here if your download doesn"t start automatically On instrument costs

Lisätiedot

anna minun kertoa let me tell you

anna minun kertoa let me tell you anna minun kertoa let me tell you anna minun kertoa I OSA 1. Anna minun kertoa sinulle mitä oli. Tiedän että osaan. Kykenen siihen. Teen nyt niin. Minulla on oikeus. Sanani voivat olla puutteellisia mutta

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table WindPRO version 2.8.579

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table WindPRO version 2.8.579

Lisätiedot

Rakennukset Varjostus "real case" h/a 0,5 1,5

Rakennukset Varjostus real case h/a 0,5 1,5 Tuulivoimala Rakennukset Asuinrakennus Liikerak. tai Julkinen rak. Lomarakennus Teollinen rakennus Kirkollinen rakennus Varjostus "real case" h/a 1 h/a 8 h/a 20 h/a 1 2 3 5 8 4 6 7 9 10 0 0,5 1 1,5 2 km

Lisätiedot

Alternatives to the DFT

Alternatives to the DFT Alternatives to the DFT Doru Balcan Carnegie Mellon University joint work with Aliaksei Sandryhaila, Jonathan Gross, and Markus Püschel - appeared in IEEE ICASSP 08 - Introduction Discrete time signal

Lisätiedot

C++11 seminaari, kevät Johannes Koskinen

C++11 seminaari, kevät Johannes Koskinen C++11 seminaari, kevät 2012 Johannes Koskinen Sisältö Mikä onkaan ongelma? Standardidraftin luku 29: Atomiset tyypit Muistimalli Rinnakkaisuus On multicore systems, when a thread writes a value to memory,

Lisätiedot

LYTH-CONS CONSISTENCY TRANSMITTER

LYTH-CONS CONSISTENCY TRANSMITTER LYTH-CONS CONSISTENCY TRANSMITTER LYTH-INSTRUMENT OY has generate new consistency transmitter with blade-system to meet high technical requirements in Pulp&Paper industries. Insurmountable advantages are

Lisätiedot

7.4 Variability management

7.4 Variability management 7.4 Variability management time... space software product-line should support variability in space (different products) support variability in time (maintenance, evolution) 1 Product variation Product

Lisätiedot

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG SHADOW - Main Result Assumptions for shadow calculations Maximum distance for influence Calculate only when more than 20 % of sun is covered by the blade Please look in WTG table WindPRO version 2.8.579

Lisätiedot

Telecommunication Software

Telecommunication Software Telecommunication Software Final exam 21.11.2006 COMPUTER ENGINEERING LABORATORY 521265A Vastaukset englanniksi tai suomeksi. / Answers in English or in Finnish. 1. (a) Määrittele sovellusviesti, PersonnelRecord,

Lisätiedot

Returns to Scale II. S ysteemianalyysin. Laboratorio. Esitelmä 8 Timo Salminen. Teknillinen korkeakoulu

Returns to Scale II. S ysteemianalyysin. Laboratorio. Esitelmä 8 Timo Salminen. Teknillinen korkeakoulu Returns to Scale II Contents Most Productive Scale Size Further Considerations Relaxation of the Convexity Condition Useful Reminder Theorem 5.5 A DMU found to be efficient with a CCR model will also be

Lisätiedot

7. Product-line architectures

7. Product-line architectures 7. Product-line architectures 7.1 Introduction 7.2 Product-line basics 7.3 Layered style for product-lines 7.4 Variability management 7.5 Benefits and problems with product-lines 1 Short history of software

Lisätiedot

The Viking Battle - Part Version: Finnish

The Viking Battle - Part Version: Finnish The Viking Battle - Part 1 015 Version: Finnish Tehtävä 1 Olkoon kokonaisluku, ja olkoon A n joukko A n = { n k k Z, 0 k < n}. Selvitä suurin kokonaisluku M n, jota ei voi kirjoittaa yhden tai useamman

Lisätiedot

Exercise 1. (session: )

Exercise 1. (session: ) EEN-E3001, FUNDAMENTALS IN INDUSTRIAL ENERGY ENGINEERING Exercise 1 (session: 24.1.2017) Problem 3 will be graded. The deadline for the return is on 31.1. at 12:00 am (before the exercise session). You

Lisätiedot

AYYE 9/ HOUSING POLICY

AYYE 9/ HOUSING POLICY AYYE 9/12 2.10.2012 HOUSING POLICY Mission for AYY Housing? What do we want to achieve by renting apartments? 1) How many apartments do we need? 2) What kind of apartments do we need? 3) To whom do we

Lisätiedot

The role of 3dr sector in rural -community based- tourism - potentials, challenges

The role of 3dr sector in rural -community based- tourism - potentials, challenges The role of 3dr sector in rural -community based- tourism - potentials, challenges Lappeenranta, 5th September 2014 Contents of the presentation 1. SEPRA what is it and why does it exist? 2. Experiences

Lisätiedot

Review Petteri Nurmi

Review Petteri Nurmi Review Petteri Nurmi 21.2.2012 1 Overview of the Course I: Measuring and estimating location information II: Analysing and understanding location data Representing location, location systems, positioning

Lisätiedot

Informaatioteknologia vaikuttaa ihmisten käyttäytymiseen ja asenteisiin

Informaatioteknologia vaikuttaa ihmisten käyttäytymiseen ja asenteisiin Infotech Seminar, Oulu, November 11, 2005 Informaatioteknologia vaikuttaa ihmisten käyttäytymiseen ja asenteisiin Prof. Harri Oinas-Kukkonen Dept. Information Processing Science University of Oulu Outline

Lisätiedot

Paikkatiedon semanttinen mallinnus, integrointi ja julkaiseminen Case Suomalainen ajallinen paikkaontologia SAPO

Paikkatiedon semanttinen mallinnus, integrointi ja julkaiseminen Case Suomalainen ajallinen paikkaontologia SAPO Paikkatiedon semanttinen mallinnus, integrointi ja julkaiseminen Case Suomalainen ajallinen paikkaontologia SAPO Tomi Kauppinen, Eero Hyvönen, Jari Väätäinen Semantic Computing Research Group (SeCo) http://www.seco.tkk.fi/

Lisätiedot

Skene. Games Refueled. Muokkaa perustyyl. napsautt. @Games for Health, Kuopio. 2013 kari.korhonen@tekes.fi. www.tekes.fi/skene

Skene. Games Refueled. Muokkaa perustyyl. napsautt. @Games for Health, Kuopio. 2013 kari.korhonen@tekes.fi. www.tekes.fi/skene Skene Muokkaa perustyyl. Games Refueled napsautt. @Games for Health, Kuopio Muokkaa alaotsikon perustyyliä napsautt. 2013 kari.korhonen@tekes.fi www.tekes.fi/skene 10.9.201 3 Muokkaa Skene boosts perustyyl.

Lisätiedot

AKKREDITOITU TESTAUSLABORATORIO ACCREDITED TESTING LABORATORY VERKOTAN OY VERKOTAN LTD.

AKKREDITOITU TESTAUSLABORATORIO ACCREDITED TESTING LABORATORY VERKOTAN OY VERKOTAN LTD. T287/M03/2017 Liite 1 / Appendix 1 Sivu / Page 1(5) AKKREDITOITU TESTAUSLABORATORIO ACCREDITED TESTING LABORATORY VERKOTAN OY VERKOTAN LTD. Tunnus Code Laboratorio Laboratory Osoite Address www www T287

Lisätiedot

National Building Code of Finland, Part D1, Building Water Supply and Sewerage Systems, Regulations and guidelines 2007

National Building Code of Finland, Part D1, Building Water Supply and Sewerage Systems, Regulations and guidelines 2007 National Building Code of Finland, Part D1, Building Water Supply and Sewerage Systems, Regulations and guidelines 2007 Chapter 2.4 Jukka Räisä 1 WATER PIPES PLACEMENT 2.4.1 Regulation Water pipe and its

Lisätiedot

DIGITAL MARKETING LANDSCAPE. Maatalous-metsätieteellinen tiedekunta

DIGITAL MARKETING LANDSCAPE. Maatalous-metsätieteellinen tiedekunta DIGITAL MARKETING LANDSCAPE Mobile marketing, services and games MOBILE TECHNOLOGIES Handset technologies Network technologies Application technologies INTRODUCTION TO MOBILE TECHNOLOGIES COMPANY PERSPECTIVE

Lisätiedot

Information on Finnish Language Courses Spring Semester 2018 Päivi Paukku & Jenni Laine Centre for Language and Communication Studies

Information on Finnish Language Courses Spring Semester 2018 Päivi Paukku & Jenni Laine Centre for Language and Communication Studies Information on Finnish Language Courses Spring Semester 2018 Päivi Paukku & Jenni Laine 4.1.2018 Centre for Language and Communication Studies Puhutko suomea? -Hei! -Hei hei! -Moi! -Moi moi! -Terve! -Terve

Lisätiedot

Vaisala s New Global L ightning Lightning Dataset GLD360

Vaisala s New Global L ightning Lightning Dataset GLD360 Vaisala s New Global Lightning Dataset GLD360 Vaisala Global Lightning Dataset GLD360 Page 2 / Oct09 / Holle-SW Hydro / Vaisala Schedule GLD360 Validation Applications Demonstration Page 3 / Oct09 / Holle-SW

Lisätiedot

WAMS 2010,Ylivieska Monitoring service of energy efficiency in housing. 13.10.2010 Jan Nyman, jan.nyman@posintra.fi

WAMS 2010,Ylivieska Monitoring service of energy efficiency in housing. 13.10.2010 Jan Nyman, jan.nyman@posintra.fi WAMS 2010,Ylivieska Monitoring service of energy efficiency in housing 13.10.2010 Jan Nyman, jan.nyman@posintra.fi Background info STOK: development center for technology related to building automation

Lisätiedot

Use of spatial data in the new production environment and in a data warehouse

Use of spatial data in the new production environment and in a data warehouse Use of spatial data in the new production environment and in a data warehouse Nordic Forum for Geostatistics 2007 Session 3, GI infrastructure and use of spatial database Statistics Finland, Population

Lisätiedot

Land-Use Model for the Helsinki Metropolitan Area

Land-Use Model for the Helsinki Metropolitan Area Land-Use Model for the Helsinki Metropolitan Area Paavo Moilanen Introduction & Background Metropolitan Area Council asked 2005: What is good land use for the transport systems plan? At first a literature

Lisätiedot

Toimintamallit happamuuden ennakoimiseksi ja riskien hallitsemiseksi turvetuotantoalueilla (Sulfa II)

Toimintamallit happamuuden ennakoimiseksi ja riskien hallitsemiseksi turvetuotantoalueilla (Sulfa II) Toimintamallit happamuuden ennakoimiseksi ja riskien hallitsemiseksi turvetuotantoalueilla (Sulfa II) Happamuuskuormituksen ennustaminen valuma-aluetasolla Marie Korppoo ja Markus Huttunen 13.5.2019 Päämäärä

Lisätiedot

( N117 x HH141 ( Honkajoki N117 x 9 x HH120 tv-alueet ( ( ( ( ( ( ( ( ( ( m. Honkajoki & Kankaanpää tuulivoimahankkeet

( N117 x HH141 ( Honkajoki N117 x 9 x HH120 tv-alueet ( ( ( ( ( ( ( ( ( ( m. Honkajoki & Kankaanpää tuulivoimahankkeet Honkajoki & Kankaanpää tuulivoimahankkeet N117 x HH141 Honkajoki N117 x 9 x HH120 tv-alueet Alahonkajoki_kaava_alueen_raja_polyline Asuinrakennus Julkinen tai liiker rak. Lomarakennus Teollinen rak. Allas

Lisätiedot

Kvanttilaskenta - 2. tehtävät

Kvanttilaskenta - 2. tehtävät Kvanttilaskenta -. tehtävät Johannes Verwijnen January 8, 05 edx-tehtävät Vastauksissa on käytetty edx-kurssin materiaalia.. Problem The inner product of + and is. Edelleen false, kts. viikon tehtävä 6..

Lisätiedot

Information on Finnish Courses Autumn Semester 2017 Jenni Laine & Päivi Paukku Centre for Language and Communication Studies

Information on Finnish Courses Autumn Semester 2017 Jenni Laine & Päivi Paukku Centre for Language and Communication Studies Information on Finnish Courses Autumn Semester 2017 Jenni Laine & Päivi Paukku 24.8.2017 Centre for Language and Communication Studies Puhutko suomea? -Hei! -Hei hei! -Moi! -Moi moi! -Terve! -Terve terve!

Lisätiedot

Measuring the quality of public transit system

Measuring the quality of public transit system Measuring the quality of public transit system Tapani Särkkä/Matrex Oy Mervi Vatanen/Helsinki City Transport Objectives and scope To develop a quality measuring system for Helsinki City Transport The system

Lisätiedot

Tracking and Filtering. Petteri Nurmi

Tracking and Filtering. Petteri Nurmi Tracking and Filtering Petteri Nurmi 4.4.2014 1 Questions What are state space models? Why are they relevant in position tracking? What is a Bayesian optimal filter? Which two steps form the filter? What

Lisätiedot

HITSAUKSEN TUOTTAVUUSRATKAISUT

HITSAUKSEN TUOTTAVUUSRATKAISUT Kemppi ARC YOU GET WHAT YOU MEASURE OR BE CAREFUL WHAT YOU WISH FOR HITSAUKSEN TUOTTAVUUSRATKAISUT Puolitetaan hitsauskustannukset seminaari 9.4.2008 Mikko Veikkolainen, Ratkaisuliiketoimintapäällikkö

Lisätiedot

Master's Programme in Life Science Technologies (LifeTech) Prof. Juho Rousu Director of the Life Science Technologies programme 3.1.

Master's Programme in Life Science Technologies (LifeTech) Prof. Juho Rousu Director of the Life Science Technologies programme 3.1. Master's Programme in Life Science Technologies (LifeTech) Prof. Juho Rousu Director of the Life Science Technologies programme 3.1.2017 Life Science Technologies Where Life Sciences meet with Technology

Lisätiedot

Infrastruktuurin asemoituminen kansalliseen ja kansainväliseen kenttään Outi Ala-Honkola Tiedeasiantuntija

Infrastruktuurin asemoituminen kansalliseen ja kansainväliseen kenttään Outi Ala-Honkola Tiedeasiantuntija Infrastruktuurin asemoituminen kansalliseen ja kansainväliseen kenttään Outi Ala-Honkola Tiedeasiantuntija 1 Asemoitumisen kuvaus Hakemukset parantuneet viime vuodesta, mutta paneeli toivoi edelleen asemoitumisen

Lisätiedot

Trajectory Analysis. Sourav Bhattacharya, Petteri Nurmi

Trajectory Analysis. Sourav Bhattacharya, Petteri Nurmi Trajectory Analysis Sourav Bhattacharya, Petteri Nurmi 12.4.2014 1 Questions What are trajectories? How are they represented? What are the challenges with large trajectory data? How can we reduce trajectory

Lisätiedot

Tietorakenteet ja algoritmit

Tietorakenteet ja algoritmit Tietorakenteet ja algoritmit Taulukon edut Taulukon haitat Taulukon haittojen välttäminen Dynaamisesti linkattu lista Linkatun listan solmun määrittelytavat Lineaarisen listan toteutus dynaamisesti linkattuna

Lisätiedot

Kysymys 5 Compared to the workload, the number of credits awarded was (1 credits equals 27 working hours): (4)

Kysymys 5 Compared to the workload, the number of credits awarded was (1 credits equals 27 working hours): (4) Tilasto T1106120-s2012palaute Kyselyn T1106120+T1106120-s2012palaute yhteenveto: vastauksia (4) Kysymys 1 Degree programme: (4) TIK: TIK 1 25% ************** INF: INF 0 0% EST: EST 0 0% TLT: TLT 0 0% BIO:

Lisätiedot

Ajettavat luokat: SM: S1 (25 aika-ajon nopeinta)

Ajettavat luokat: SM: S1 (25 aika-ajon nopeinta) SUPERMOTO SM 2013 OULU Lisämääräys ja ohje Oulun Moottorikerho ry ja Oulun Formula K-125ry toivottaa SuperMoto kuljettajat osallistumaan SuperMoto SM 2013 Oulu osakilpailuun. Kilpailu ajetaan karting radalla

Lisätiedot

Huom. tämä kulma on yhtä suuri kuin ohjauskulman muutos. lasketaan ajoneuvon keskipisteen ympyräkaaren jänteen pituus

Huom. tämä kulma on yhtä suuri kuin ohjauskulman muutos. lasketaan ajoneuvon keskipisteen ympyräkaaren jänteen pituus AS-84.327 Paikannus- ja navigointimenetelmät Ratkaisut 2.. a) Kun kuvan ajoneuvon kumpaakin pyörää pyöritetään tasaisella nopeudella, ajoneuvon rata on ympyränkaaren segmentin muotoinen. Hitaammin kulkeva

Lisätiedot

MEETING PEOPLE COMMUNICATIVE QUESTIONS

MEETING PEOPLE COMMUNICATIVE QUESTIONS Tiistilän koulu English Grades 7-9 Heikki Raevaara MEETING PEOPLE COMMUNICATIVE QUESTIONS Meeting People Hello! Hi! Good morning! Good afternoon! How do you do? Nice to meet you. / Pleased to meet you.

Lisätiedot

Guidebook for Multicultural TUT Users

Guidebook for Multicultural TUT Users 1 Guidebook for Multicultural TUT Users WORKPLACE PIRKANMAA-hankkeen KESKUSTELUTILAISUUS 16.12.2010 Hyvää käytäntöä kehittämässä - vuorovaikutusopas kansainvälisille opiskelijoille TTY Teknis-taloudellinen

Lisätiedot

Characterization of clay using x-ray and neutron scattering at the University of Helsinki and ILL

Characterization of clay using x-ray and neutron scattering at the University of Helsinki and ILL Characterization of clay using x-ray and neutron scattering at the University of Helsinki and ILL Ville Liljeström, Micha Matusewicz, Kari Pirkkalainen, Jussi-Petteri Suuronen and Ritva Serimaa 13.3.2012

Lisätiedot

EVALUATION FOR THE ERASMUS+-PROJECT, STUDENTSE

EVALUATION FOR THE ERASMUS+-PROJECT, STUDENTSE #1 Aloitettu: 6. marraskuuta 2015 9:03:38 Muokattu viimeksi: 6. marraskuuta 2015 9:05:26 Käytetty aika: 00:01:47 IP-osoite: 83.245.241.86 K1: Nationality Finnish K2: The program of the week has been very

Lisätiedot

Data quality points. ICAR, Berlin,

Data quality points. ICAR, Berlin, Data quality points an immediate and motivating supervision tool ICAR, Berlin, 22.5.2014 Association of ProAgria Centres Development project of Milk Recording Project manager, Heli Wahlroos heli.wahlroos@proagria.fi

Lisätiedot

Information on Finnish Language Courses Spring Semester 2017 Jenni Laine

Information on Finnish Language Courses Spring Semester 2017 Jenni Laine Information on Finnish Language Courses Spring Semester 2017 Jenni Laine 4.1.2017 KIELIKESKUS LANGUAGE CENTRE Puhutko suomea? Do you speak Finnish? -Hei! -Moi! -Mitä kuuluu? -Kiitos, hyvää. -Entä sinulle?

Lisätiedot

ProAgria. Opportunities For Success

ProAgria. Opportunities For Success ProAgria Opportunities For Success Association of ProAgria Centres and ProAgria Centres 11 regional Finnish ProAgria Centres offer their members Leadership-, planning-, monitoring-, development- and consulting

Lisätiedot

Co-Design Yhteissuunnittelu

Co-Design Yhteissuunnittelu Co-Design Yhteissuunnittelu Tuuli Mattelmäki DA, associate professor Aalto University School of Arts, Design and Architecture School of Arts, Design and Architecture design with and for people Codesign

Lisätiedot

FinFamily Installation and importing data (11.1.2016) FinFamily Asennus / Installation

FinFamily Installation and importing data (11.1.2016) FinFamily Asennus / Installation FinFamily Asennus / Installation 1 Sisällys / Contents FinFamily Asennus / Installation... 1 1. Asennus ja tietojen tuonti / Installation and importing data... 4 1.1. Asenna Java / Install Java... 4 1.2.

Lisätiedot

Tracking and Filtering. Petteri Nurmi

Tracking and Filtering. Petteri Nurmi Tracking and Filtering Petteri Nurmi 19.11.2016 1 Questions What are state space models? Why are they relevant in position tracking? What is a Bayesian optimal filter? Which two steps form the filter?

Lisätiedot

A DEA Game II. Juha Saloheimo S ysteemianalyysin. Laboratorio. Teknillinen korkeakoulu

A DEA Game II. Juha Saloheimo S ysteemianalyysin. Laboratorio. Teknillinen korkeakoulu A DEA Game II Juha Salohemo 12.12.2007 Content Recap of the Example The Shapley Value Margnal Contrbuton, Ordered Coaltons, Soluton to the Example DEA Mn Game Summary Home Assgnment Recap of the Example

Lisätiedot

Kvanttilaskenta - 1. tehtävät

Kvanttilaskenta - 1. tehtävät Kvanttilaskenta -. tehtävät Johannes Verwijnen January 9, 0 edx-tehtävät Vastauksissa on käytetty edx-kurssin materiaalia.. Problem False, sillä 0 0. Problem False, sillä 0 0 0 0. Problem A quantum state

Lisätiedot

ECVETin soveltuvuus suomalaisiin tutkinnon perusteisiin. Case:Yrittäjyyskurssi matkailualan opiskelijoille englantilaisen opettajan toteuttamana

ECVETin soveltuvuus suomalaisiin tutkinnon perusteisiin. Case:Yrittäjyyskurssi matkailualan opiskelijoille englantilaisen opettajan toteuttamana ECVETin soveltuvuus suomalaisiin tutkinnon perusteisiin Case:Yrittäjyyskurssi matkailualan opiskelijoille englantilaisen opettajan toteuttamana Taustaa KAO mukana FINECVET-hankeessa, jossa pilotoimme ECVETiä

Lisätiedot

Helsinki Metropolitan Area Council

Helsinki Metropolitan Area Council Helsinki Metropolitan Area Council Current events at YTV The future of YTV and HKL On the initiative of 4 city mayors the Helsinki region negotiation consortiums coordinating group have presented that:

Lisätiedot

Teacher's Professional Role in the Finnish Education System Katriina Maaranen Ph.D. Faculty of Educational Sciences University of Helsinki, Finland

Teacher's Professional Role in the Finnish Education System Katriina Maaranen Ph.D. Faculty of Educational Sciences University of Helsinki, Finland Teacher's Professional Role in the Finnish Education System Katriina Maaranen Ph.D. Faculty of Educational Sciences University of Helsinki, Finland www.helsinki.fi/yliopisto This presentation - Background

Lisätiedot

JA CHALLENGE 18.-19.4.2013. Anna-Mari Sopenlehto Central Administration The City Development Group Business Developement and Competence

JA CHALLENGE 18.-19.4.2013. Anna-Mari Sopenlehto Central Administration The City Development Group Business Developement and Competence JA CHALLENGE 18.-19.4.2013 Anna-Mari Sopenlehto Central Administration The City Development Group Business Developement and Competence 12.11.2014 Challenges of the City of Turku What kind of city you would

Lisätiedot

Mobile Sensing V Motion Analysis. Spring 2015 Petteri Nurmi

Mobile Sensing V Motion Analysis. Spring 2015 Petteri Nurmi Mobile Sensing V Motion Analysis Spring 2015 Petteri Nurmi 31.3.2015 1 Learning Objectives Understand the basic motion related forces, their relationships, and how they can be sensed Why the accelerometer

Lisätiedot