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

Clark to Retire from Philmont Scout Ranch
Clark to Retire from Philmont Scout RanchClark to Retire from Philmont Scout Ranch
Clark to Retire from Philmont Scout Ranch
Wilson Neely
 
100 things-to-watch-in-2013
100 things-to-watch-in-2013100 things-to-watch-in-2013
100 things-to-watch-in-2013
Jean-Marc Blancherie
 
Philipsburg Manor and the Founding of Historic Hudson Valley
Philipsburg Manor and the Founding of Historic Hudson ValleyPhilipsburg Manor and the Founding of Historic Hudson Valley
Philipsburg Manor and the Founding of Historic Hudson Valley
Wilson Neely
 
Hotel power control saving system
Hotel power control saving systemHotel power control saving system
Hotel power control saving system
Midhilamurali
 
Drupal for Non-Profits
Drupal for Non-ProfitsDrupal for Non-Profits
Drupal for Non-Profits
CP-Union
 
Unlock 6 Ways to Attract People to You
Unlock 6 Ways to Attract People to YouUnlock 6 Ways to Attract People to You
Unlock 6 Ways to Attract People to You
Cindy McAsey
 
Fast diet
Fast dietFast diet
Fast diet
Ariffin Kasah
 
Developing Your Vision (Greymouth Feb 2012 Seminar)
Developing Your Vision (Greymouth Feb 2012 Seminar)Developing Your Vision (Greymouth Feb 2012 Seminar)
Developing Your Vision (Greymouth Feb 2012 Seminar)
Motovated Design & Analysis
 
5 Quick Small Business SEO Tips
5 Quick Small Business SEO Tips5 Quick Small Business SEO Tips
5 Quick Small Business SEO Tips
Apex Virtual Solutions
 
Service marketing @jaipuria institute of management
Service marketing @jaipuria institute of managementService marketing @jaipuria institute of management
Service marketing @jaipuria institute of management
Shreya Sinha
 
Milk
MilkMilk
LR - Recursos TIC 2.0
LR - Recursos TIC 2.0LR - Recursos TIC 2.0
LR - Recursos TIC 2.0
Leizet Rodriguez
 
Informatica
InformaticaInformatica
Informatica
Kevin Batista
 
Together issue 12
Together issue 12Together issue 12

Viewers also liked (14)

Clark to Retire from Philmont Scout Ranch
Clark to Retire from Philmont Scout RanchClark to Retire from Philmont Scout Ranch
Clark to Retire from Philmont Scout Ranch
 
100 things-to-watch-in-2013
100 things-to-watch-in-2013100 things-to-watch-in-2013
100 things-to-watch-in-2013
 
Philipsburg Manor and the Founding of Historic Hudson Valley
Philipsburg Manor and the Founding of Historic Hudson ValleyPhilipsburg Manor and the Founding of Historic Hudson Valley
Philipsburg Manor and the Founding of Historic Hudson Valley
 
Hotel power control saving system
Hotel power control saving systemHotel power control saving system
Hotel power control saving system
 
Drupal for Non-Profits
Drupal for Non-ProfitsDrupal for Non-Profits
Drupal for Non-Profits
 
Unlock 6 Ways to Attract People to You
Unlock 6 Ways to Attract People to YouUnlock 6 Ways to Attract People to You
Unlock 6 Ways to Attract People to You
 
Fast diet
Fast dietFast diet
Fast diet
 
Developing Your Vision (Greymouth Feb 2012 Seminar)
Developing Your Vision (Greymouth Feb 2012 Seminar)Developing Your Vision (Greymouth Feb 2012 Seminar)
Developing Your Vision (Greymouth Feb 2012 Seminar)
 
5 Quick Small Business SEO Tips
5 Quick Small Business SEO Tips5 Quick Small Business SEO Tips
5 Quick Small Business SEO Tips
 
Service marketing @jaipuria institute of management
Service marketing @jaipuria institute of managementService marketing @jaipuria institute of management
Service marketing @jaipuria institute of management
 
Milk
MilkMilk
Milk
 
LR - Recursos TIC 2.0
LR - Recursos TIC 2.0LR - Recursos TIC 2.0
LR - Recursos TIC 2.0
 
Informatica
InformaticaInformatica
Informatica
 
Together issue 12
Together issue 12Together issue 12
Together issue 12
 

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

Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
Alpen-Adria-Universität
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
James Anderson
 
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdfUnlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Malak Abu Hammad
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...
Zilliz
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
danishmna97
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
20 Comprehensive Checklist of Designing and Developing a Website
20 Comprehensive Checklist of Designing and Developing a Website20 Comprehensive Checklist of Designing and Developing a Website
20 Comprehensive Checklist of Designing and Developing a Website
Pixlogix Infotech
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”
Claudio Di Ciccio
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 

Recently uploaded (20)

Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
 
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdfUnlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
20 Comprehensive Checklist of Designing and Developing a Website
20 Comprehensive Checklist of Designing and Developing a Website20 Comprehensive Checklist of Designing and Developing a Website
20 Comprehensive Checklist of Designing and Developing a Website
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 

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.