SlideShare a Scribd company logo
Arena Integration and Customization Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 Chapter 10 Last revision July 14, 2003
What We’ll Do ... ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Reading and Writing Data Files ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Reading Entity Arrivals From  a Text File ,[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Simple Call Center Model ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
External Call Center Data ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Model Logic to Read Data ,[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 Control Entity Actual “Call” Entity
Model Logic to Read Data  (cont’d.) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Model Logic to Read Data  (cont’d.) ,[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Run Termination ,[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Reading Access Files ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Reading Access Files ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Reading Access Files ,[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Reading Access Files ,[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Reading Excel Files ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Reading Excel Files ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Reading Excel Files ,[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Reading Excel Files ,[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Writing Access and Excel Files ,[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Writing Access and Excel Files ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Writing Access and Excel Files ,[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Advanced Reading and Writing ,[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 Part 1  1.038  Part 27 2.374  Part 5194.749  Part 67 9.899  Part 72 10.52  Part 16217.09
Advanced Reading and Writing ,[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Advanced Reading and Writing ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 Provider=Microsoft.JET.OLEDB.4.0; Data Source=C:ocumentsook1.xls; Extended Properties=””Excel 8.0; HDR=Yes;”” Driver={SQL Server}; Server=RSI-Joe; Database=BizBikes; Uid=BizWareUser; pwd=MyPassword Use two double quotes for each embedded double quote
What We’ll Do ... ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
ActiveX Automation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Application Object Model ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Visual Basic for Applications (VBA) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Built-in Arena VBA Events ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Simulation Run VBA Events ,[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 1.  RunBegin 3.  RunBeginSimulation 4.  RunBeginReplication 9.  RunEnd 7.  RunEndSimulation 6.  RunEndReplication 5.  Arena runs replication  2.  Arena checks and initializes the model 8.  Arena terminates the simulation run Simulation run data available OnKeystroke, UserFunction, etc. Module data available Module data available
Arena’s Object Model ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Sample: Create Ten Status Variables Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 WIP(1) WIP(10) Dim oModel As Arena.Model Dim i As Integer Dim nX As Long ' Add the status variables to this Arena model Set oModel = ThisDocument.Model nX = 0  ' Start at x position 0 For i = 1 To 10 ' Add a status variable to the model window oModel.StatusVariables.Create nX, 0, _ nX + 400, 150, "WIP(" & i & ")", "**.*", False, _ RGB(0, 0, 255), RGB(0, 255, 255), RGB(0, 0, 0), "Arial" ' Move over 500 world units for next position nX = nX + 500 Next i
Sample: Assign Variable Value  During Run Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 Dim oSIMAN As Arena.SIMAN Dim nVarIndex As Long Dim sNewValue As String ' Prompt for a new value sNewValue = InputBox("Enter the new average cycle time:") ' Assign their answer to the Mean Cycle Time variable Set oSIMAN = ThisDocument.Model.SIMAN nVarIndex = oSIMAN.SymbolNumber("Mean Cycle Time") oSIMAN.VariableArrayValue(nVarIndex) = sNewValue
Arena Macro Recorder ,[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Model 10-05: Presenting Arrival  Choices to the User ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Our Approach ,[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Our Approach  (cont’d.) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
VBA UserForm ,[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 Label Option buttons Command button
Show the UserForm ,[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 Option Explicit Private Sub ModelLogic_RunBegin() ' Display the UserForm to ask for the type of arrivals frmArrivalTypeSelection.Show Exit Sub End Sub ,[object Object],[object Object]
Change Module Data On OK ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Model 10-06: Record Call Data  in Microsoft Excel ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Using ActiveX Automation in VBA ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Retrieving Simulation Data ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Our Approach ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Our Approach  (cont’d.) ,[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 ,[object Object],[object Object]
Our Approach  (cont’d.) ,[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Our Approach  (cont’d.) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
What We’ll Do ... ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Creating Modules with Arena Professional Edition ,[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Panel Icon and User View ,[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 ,[object Object],[object Object],[object Object],[object Object],[object Object]
Operands ,[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 Operands
Module Logic ,[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54 Reference to module operand (  `Data File`  ) Reference to module operand (  `Name`  )
Uses of Templates ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54
Summary ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Simulation with Arena, 3 rd  ed. Chapter 10 – Arena Integration and Customization Slide   of 54

More Related Content

Viewers also liked

Vpkchat - De twitterchat voor verpleegkundigen (brochure)
Vpkchat - De twitterchat voor verpleegkundigen (brochure)Vpkchat - De twitterchat voor verpleegkundigen (brochure)
Vpkchat - De twitterchat voor verpleegkundigen (brochure)Nursing Quality Concept
 
Warning - criação de visualização de informação com tecnologias livres.
Warning - criação de visualização de informação com tecnologias livres.Warning - criação de visualização de informação com tecnologias livres.
Warning - criação de visualização de informação com tecnologias livres.
alemaorpm
 
Fazendo arte
Fazendo arteFazendo arte
Fazendo arte
miranda_verinha
 
Exposição de História e Educação Tecnológica
Exposição de História e Educação TecnológicaExposição de História e Educação Tecnológica
Exposição de História e Educação Tecnológica
AlCox
 
Open Innovation
Open InnovationOpen Innovation
Open Innovation
Jorge Naranjo
 
Linguagem
LinguagemLinguagem
Linguagem
SOL RIBEIRO
 
susbistma de desarrollo
susbistma de desarrollo susbistma de desarrollo
susbistma de desarrollo
gerenciaalternativa
 

Viewers also liked (9)

Tux ivan-cláudia
Tux ivan-cláudiaTux ivan-cláudia
Tux ivan-cláudia
 
Vpkchat - De twitterchat voor verpleegkundigen (brochure)
Vpkchat - De twitterchat voor verpleegkundigen (brochure)Vpkchat - De twitterchat voor verpleegkundigen (brochure)
Vpkchat - De twitterchat voor verpleegkundigen (brochure)
 
Warning - criação de visualização de informação com tecnologias livres.
Warning - criação de visualização de informação com tecnologias livres.Warning - criação de visualização de informação com tecnologias livres.
Warning - criação de visualização de informação com tecnologias livres.
 
Fazendo arte
Fazendo arteFazendo arte
Fazendo arte
 
Vpk chat 17 juni 2011
Vpk chat 17 juni 2011Vpk chat 17 juni 2011
Vpk chat 17 juni 2011
 
Exposição de História e Educação Tecnológica
Exposição de História e Educação TecnológicaExposição de História e Educação Tecnológica
Exposição de História e Educação Tecnológica
 
Open Innovation
Open InnovationOpen Innovation
Open Innovation
 
Linguagem
LinguagemLinguagem
Linguagem
 
susbistma de desarrollo
susbistma de desarrollo susbistma de desarrollo
susbistma de desarrollo
 

Similar to Prueba

Enterprise Library 3.0 Overview
Enterprise Library 3.0 OverviewEnterprise Library 3.0 Overview
Enterprise Library 3.0 Overview
mcgurk
 
Sql Injection and Entity Frameworks
Sql Injection and Entity FrameworksSql Injection and Entity Frameworks
Sql Injection and Entity Frameworks
Rich Helton
 
Intake 37 ef2
Intake 37 ef2Intake 37 ef2
Intake 37 ef2
Mahmoud Ouf
 
Enterprise Library 2.0
Enterprise Library 2.0Enterprise Library 2.0
Enterprise Library 2.0
Raju Permandla
 
EA User Group London 2018 - Extending EA with custom scripts to cater for spe...
EA User Group London 2018 - Extending EA with custom scripts to cater for spe...EA User Group London 2018 - Extending EA with custom scripts to cater for spe...
EA User Group London 2018 - Extending EA with custom scripts to cater for spe...
Guillaume Finance
 
Entity framework1
Entity framework1Entity framework1
Entity framework1
Girish Gowda
 
Microsoft Database Options
Microsoft Database OptionsMicrosoft Database Options
Microsoft Database Options
David Chou
 
Enterprise Library 2.0 Core Architecture
Enterprise Library 2.0 Core ArchitectureEnterprise Library 2.0 Core Architecture
Enterprise Library 2.0 Core Architecture
mcgurk
 
Intake 38 data access 5
Intake 38 data access 5Intake 38 data access 5
Intake 38 data access 5
Mahmoud Ouf
 
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdfAzure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
SkillCertProExams
 
A Lap Around Visual Studio 2010
A Lap Around Visual Studio 2010A Lap Around Visual Studio 2010
A Lap Around Visual Studio 2010
Abram John Limpin
 
Introduction to Actionscript3
Introduction to Actionscript3Introduction to Actionscript3
Introduction to Actionscript3
Yoss Cohen
 
Database driven web pages
Database driven web pagesDatabase driven web pages
Database driven web pages
Information Technology
 
Overview of VS2010 and .NET 4.0
Overview of VS2010 and .NET 4.0Overview of VS2010 and .NET 4.0
Overview of VS2010 and .NET 4.0
Bruce Johnson
 
Ado.Net Data Services (Astoria)
Ado.Net Data Services (Astoria)Ado.Net Data Services (Astoria)
Ado.Net Data Services (Astoria)
Igor Moochnick
 
Windows Azure and a little SQL Data Services
Windows Azure and a little SQL Data ServicesWindows Azure and a little SQL Data Services
Windows Azure and a little SQL Data Services
ukdpe
 
Deep Dive on S3 Storage Management Covering New Feature Announcements - Decem...
Deep Dive on S3 Storage Management Covering New Feature Announcements - Decem...Deep Dive on S3 Storage Management Covering New Feature Announcements - Decem...
Deep Dive on S3 Storage Management Covering New Feature Announcements - Decem...
Amazon Web Services
 
websphere cast iron labs
 websphere cast iron labs websphere cast iron labs
websphere cast iron labs
AMIT KUMAR
 
Introduction to Visual Studio.NET
Introduction to Visual Studio.NETIntroduction to Visual Studio.NET
Introduction to Visual Studio.NET
Dutch Dasanaike {LION}
 
New Engineering Client for Agile PLM
New Engineering Client for Agile PLMNew Engineering Client for Agile PLM
New Engineering Client for Agile PLM
Zero Wait-State
 

Similar to Prueba (20)

Enterprise Library 3.0 Overview
Enterprise Library 3.0 OverviewEnterprise Library 3.0 Overview
Enterprise Library 3.0 Overview
 
Sql Injection and Entity Frameworks
Sql Injection and Entity FrameworksSql Injection and Entity Frameworks
Sql Injection and Entity Frameworks
 
Intake 37 ef2
Intake 37 ef2Intake 37 ef2
Intake 37 ef2
 
Enterprise Library 2.0
Enterprise Library 2.0Enterprise Library 2.0
Enterprise Library 2.0
 
EA User Group London 2018 - Extending EA with custom scripts to cater for spe...
EA User Group London 2018 - Extending EA with custom scripts to cater for spe...EA User Group London 2018 - Extending EA with custom scripts to cater for spe...
EA User Group London 2018 - Extending EA with custom scripts to cater for spe...
 
Entity framework1
Entity framework1Entity framework1
Entity framework1
 
Microsoft Database Options
Microsoft Database OptionsMicrosoft Database Options
Microsoft Database Options
 
Enterprise Library 2.0 Core Architecture
Enterprise Library 2.0 Core ArchitectureEnterprise Library 2.0 Core Architecture
Enterprise Library 2.0 Core Architecture
 
Intake 38 data access 5
Intake 38 data access 5Intake 38 data access 5
Intake 38 data access 5
 
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdfAzure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
 
A Lap Around Visual Studio 2010
A Lap Around Visual Studio 2010A Lap Around Visual Studio 2010
A Lap Around Visual Studio 2010
 
Introduction to Actionscript3
Introduction to Actionscript3Introduction to Actionscript3
Introduction to Actionscript3
 
Database driven web pages
Database driven web pagesDatabase driven web pages
Database driven web pages
 
Overview of VS2010 and .NET 4.0
Overview of VS2010 and .NET 4.0Overview of VS2010 and .NET 4.0
Overview of VS2010 and .NET 4.0
 
Ado.Net Data Services (Astoria)
Ado.Net Data Services (Astoria)Ado.Net Data Services (Astoria)
Ado.Net Data Services (Astoria)
 
Windows Azure and a little SQL Data Services
Windows Azure and a little SQL Data ServicesWindows Azure and a little SQL Data Services
Windows Azure and a little SQL Data Services
 
Deep Dive on S3 Storage Management Covering New Feature Announcements - Decem...
Deep Dive on S3 Storage Management Covering New Feature Announcements - Decem...Deep Dive on S3 Storage Management Covering New Feature Announcements - Decem...
Deep Dive on S3 Storage Management Covering New Feature Announcements - Decem...
 
websphere cast iron labs
 websphere cast iron labs websphere cast iron labs
websphere cast iron labs
 
Introduction to Visual Studio.NET
Introduction to Visual Studio.NETIntroduction to Visual Studio.NET
Introduction to Visual Studio.NET
 
New Engineering Client for Agile PLM
New Engineering Client for Agile PLMNew Engineering Client for Agile PLM
New Engineering Client for Agile PLM
 

Recently uploaded

The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
Assessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptxAssessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptx
Kavitha Krishnan
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
Bisnar Chase Personal Injury Attorneys
 

Recently uploaded (20)

The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
Assessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptxAssessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptx
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
 

Prueba

  • 1. Arena Integration and Customization Simulation with Arena, 3 rd ed. Chapter 10 – Arena Integration and Customization Slide of 54 Chapter 10 Last revision July 14, 2003
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32. Sample: Create Ten Status Variables Simulation with Arena, 3 rd ed. Chapter 10 – Arena Integration and Customization Slide of 54 WIP(1) WIP(10) Dim oModel As Arena.Model Dim i As Integer Dim nX As Long ' Add the status variables to this Arena model Set oModel = ThisDocument.Model nX = 0 ' Start at x position 0 For i = 1 To 10 ' Add a status variable to the model window oModel.StatusVariables.Create nX, 0, _ nX + 400, 150, "WIP(" & i & ")", "**.*", False, _ RGB(0, 0, 255), RGB(0, 255, 255), RGB(0, 0, 0), "Arial" ' Move over 500 world units for next position nX = nX + 500 Next i
  • 33. Sample: Assign Variable Value During Run Simulation with Arena, 3 rd ed. Chapter 10 – Arena Integration and Customization Slide of 54 Dim oSIMAN As Arena.SIMAN Dim nVarIndex As Long Dim sNewValue As String ' Prompt for a new value sNewValue = InputBox("Enter the new average cycle time:") ' Assign their answer to the Mean Cycle Time variable Set oSIMAN = ThisDocument.Model.SIMAN nVarIndex = oSIMAN.SymbolNumber("Mean Cycle Time") oSIMAN.VariableArrayValue(nVarIndex) = sNewValue
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.