+ All Categories
Home > Documents > Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity...

Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity...

Date post: 22-Dec-2015
Category:
View: 215 times
Download: 0 times
Share this document with a friend
Popular Tags:
27
Mapping to LD Level A - Component 2004/8/12
Transcript
Page 1: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mapping to LD Level A - Component

2004/8/12

Page 2: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Outline

Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning Activity Testing Conclusion

Page 3: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Sequence and Selection Mapping

Learning Activity

Learning Activity

Learning Activity

Activity Structure

LA_Add_1 LA_Add_2 LA_Add_3

AS_Add

Page 4: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Activity Structure with Sequence

LA_Add_1 LA_Add_2 LA_Add_3

AS_Add

LA_Add_1

LA_Add_3

LA_Add_2

LoadCourse

CompleteCourse

(Sequence)

Page 5: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mapping to BPEL

LA_Add_1

LA_Add_3

LA_Add_2

LoadCourse

CompleteCourse

Page 6: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mapping of Learning Activity in Sequence

Page 7: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Activity Structure with Selection Learner could select any activity randomly

without completing an activity. We can’t wait for a complete message after

loading an activity. Activity Structure with selection could declare

a number-to-select attribute to indicate how many sub-activities we have to complete. This imply that we have to use a loop, and the

condition follows the number-to-select attribute .

Page 8: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Activity Structure with Selection

LA_Add_1 LA_Add_2 LA_Add_3

AS_Add

(Selection)

LA_Add1

LA_Add3

LA_Add2

[else]

[else]

[isLA_Add1]

[isLA_Add2]

[isLA_Add3]

CompleteActivity

[else]

[selectMessage]

CompleteCourse

LoadCourse

[completeMessage]

[else]

[else]

[MathCount<number-to-select]

MathCount+1

Page 9: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

LA_Add1

LA_Add3

LA_Add2

[else]

[else]

[isLA_Add1]

[isLA_Add2]

[isLA_Add3]

CompleteActivity

[else]

[selectMessage]

CompleteCourse

LoadCourse

[completeMessage]

[else]

[else]

[MathCount<number-to-select]

MathCount+1

Mapping to BPEL (1/2)

switch

pick

while

Page 10: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mapping to BPEL (2/2)

pick

switch

while

Page 11: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Nested Activity Structure Mapping

Activity Structure

Learning Activity

Learning Activity

Activity Structure

Learning Activity

Learning Activity

Activity Structure

AS_MATH

LA_Add_1 LA_Add_2

AS_Add

LA_Sub_1 LA_Sub_2

AS_Sub

Page 12: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Nested Activity Structure Mapping 4 types of Mapping

Sequence – Sequence Sequence – Selection Selection – Sequence Selection – Selection

Page 13: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Sequence – Sequence Mapping

LA_Add_1

LoadCourse

CompleteCourse

LA_Add_2

LA_Add_3

LA_Sub_1

LA_Sub_2

LA_Sub_3

AS_MATH

LA_Add_1 LA_Add_2

AS_Add

LA_Sub_1 LA_Sub_2

AS_Sub

(Sequence)

(Sequence) (Sequence)

Page 14: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mapping to BPEL

LA_Add_1

LoadCourse

CompleteCourse

LA_Add_2

LA_Add_3

LA_Sub_1

LA_Sub_2

LA_Sub_3

Page 15: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Sequence – Selection Mapping

AS_MATH

LA_Add_1 LA_Add_2

AS_Add

LA_Sub_1 LA_Sub_2

AS_Sub

(Sequence)

(Selection)(Selection)

CompleteCourse

LoadCourse

LA_Add_1

LA_Add_2

CompleteActivity

[else]

[AddCount<number-to-select]

AddCount+1

LA_Sub_1

LA_Sub_2

CompleteActivity

[else]

[SubCount<number-to-select]

SubCount+1

Page 16: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mapping to BPEL

CompleteCourse

LoadCourse

LA_Add_1

LA_Add_2

CompleteActivity

[else]

[AddCount<number-to-select]

AddCount+1

LA_Sub_1

LA_Sub_2

CompleteActivity

[else]

[SubCount<number-to-select]

SubCount+1

Page 17: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Selection – Sequence Mapping

AS_MATH

LA_Add_1 LA_Add_2

AS_Add

LA_Sub_1 LA_Sub_2

AS_Sub

(Sequence)(Sequence)

(Selection)

CompleteCourse

LoadCourse

LA_Add_1

LA_Sub_1

[else]

[MathCount<number-to-select]

LA_Add_2

LA_Sub_2

MathCount+1

MathCount+1

[AS_Add]

[AS_Sub]

[else]

[else]

Page 18: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mapping to BPEL

CompleteCourse

LoadCourse

LA_Add_1

LA_Sub_1

[else]

[MathCount<number-to-select]

LA_Add_2

LA_Sub_2

MathCount+1

MathCount+1

[AS_Add]

[AS_Sub]

[else]

[else]

Page 19: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Selection – Selection Mapping

CompleteCourse

LoadCourse

LA_Add_1

LA_Add_2

CompleteActivity

[else]

[MathCount<number-to-select]

LA_Sub_1

LA_Sub_2

AddCount+1

SubCount+1

[AS_Add]

[AS_Sub]

[AS_Add]

[AS_Sub]

[else]

[else]

[else]

[else]

[select]

[else]

[else]

[complete]

[LA_Add_1]

[LA_Add_2]

[LA_Sub_1]

[LA_Sub_2][else]

[else]

[else]

[else]

AS_MATH

LA_Add_1 LA_Add_2

AS_Add

LA_Sub_1 LA_Sub_2

AS_Sub

(Selection)

(Selection)(Selection)

Page 20: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mapping to BPEL

CompleteCourse

LoadCourse

LA_Add_1

LA_Add_2

CompleteActivity

[else]

[MathCount<number-to-select]

LA_Sub_1

LA_Sub_2

AddCount+1

SubCount+1

[AS_Add]

[AS_Sub]

[AS_Add]

[AS_Sub]

[else]

[else]

[else]

[else]

[select]

[else]

[else]

[complete]

[LA_Add_1]

[LA_Add_2]

[LA_Sub_1]

[LA_Sub_2][else]

[else]

[else]

[else]

Page 21: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mixed Activity Structure and Learning Activity

Activity Structure

Learning Activity

Learning Activity

Activity Structure

Learning Activity

Learning Activity

Activity Structure

Learning Activity

(Sequence) (Selection)

AS_MATH

LA_Add_1 LA_Add_2

AS_Add

LA_Sub_1 LA_Sub_2

AS_Sub LA_Test

(Selection)(Sequence)

Page 22: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mixed Activity Structure and Learning Activity Sequence-Based Mapping Selection-Based Mapping

Page 23: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Sequence-Based Mapping

AS_MATH

LA_Add_1 LA_Add_2

AS_Add

LA_Sub_1 LA_Sub_2

AS_Sub LA_Test

(Selection)(Sequence)

(Sequence)

CompleteCourse

LoadCourse

LA_Sub_1

LA_Sub_2

CompleteActivity

[else]

[SubCount<number-to-select]

LA_Add_1

LA_Add_2

LA_Test

SubCount+1

Page 24: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mapping to BPEL

CompleteCourse

LoadCourse

LA_Sub_1

LA_Sub_2

CompleteActivity

[else]

[SubCount<number-to-select]

LA_Add_1

LA_Add_2

LA_Test

SubCount+1

Page 25: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Selection-Based Mapping

AS_MATH

LA_Add_1 LA_Add_2

AS_Add

LA_Sub_1 LA_Sub_2

AS_Sub LA_Test

(Selection)(Sequence)

(Selection)

CompleteCourse

LoadCourse

LA_Add_1

CompleteActivity

[else]

[MathCount<number-to-select]

SubCount+1

MathCount+1

[AS_Add]

[AS_Sub]

[LA_Test]

[else]

[else]

[else]

[select]

[else]

[else]

[complete]

LA_Add_2

LA_Sub_1

LA_Sub_2

[AS_Sub]

[else][LA_Sub_1]

[LA_Sub_2][else]

[else]

MathCount+1

LA_Test

[LA_Test]

[else]

Page 26: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Mapping to BPEL

CompleteCourse

LoadCourse

LA_Add_1

CompleteActivity

[else]

[MathCount<number-to-select]

SubCount+1

MathCount+1

[AS_Add]

[AS_Sub]

[LA_Test]

[else]

[else]

[else]

[select]

[else]

[else]

[complete]

LA_Add_2

LA_Sub_1

LA_Sub_2

[AS_Sub]

[else][LA_Sub_1]

[LA_Sub_2][else]

[else]

MathCount+1

LA_Test

[LA_Test]

[else]

Page 27: Mapping to LD Level A - Component 2004/8/12. Outline Sequence and Selection Mapping Nested Activity Structure Mapping Mixed Activity Structure and Learning.

Revised Record

V0.01 初稿 , 撰寫 Sequence的Mapping 8/12

V0.02 修改,並新增 Selection的Mapping 8/13


Recommended