SlideShare a Scribd company logo
1 of 77
Download to read offline
West Lab
Modelica Tutorial
1
West Lab
OpenModelica
• OS
- Linux
- Windows
- Mac
ØPartly supported
ØInstall
• Homebrew
• Macport
- Virtual Machine (ubuntu)
Ø https://openmodelica.org/download/virtual-
machine
Ø Installation
1. Install virtualbox
2. Download box file, and vmdk file in same
directory
3. Double click the box file
Ø Bug: cannot login
• Change GUI manager
2
West Lab
3
1. Modelica introduction
2. Thermal simulation using Modelica
3. Exercise1: RL Circuit
4. Exercise2: Transmission Loss
5. Exercise3: Power World
West Lab
What is Modelica?
4
TUTORIAL – COURSE
Introduction to Object-Oriented
Modeling and Simulation with Modelica
Using OpenModelica
Peter Fritzson
Copyright (c) Open Source Modelica Consortium
Version 2012
https://www.modelica.org/libraries
A language for modeling of
complex physical system.
Primarydesigned for simulation.
West Lab
What is Modelica?
5
TUTORIAL – COURSE
Introduction to Object-Oriented
Modeling and Simulation with Modelica
Using OpenModelica
Peter Fritzson
Copyright (c) Open Source Modelica Consortium
Version 2012
https://www.modelica.org/libraries
A language for modeling of
complex physical system.
Combine multi-domainmodeling
West Lab
What is Modelica?
6
Declarative language
Equations and mathematicalfunctions allow acausal modeling,
high level specification,increasedcorrectness
Multi-domain modeling
Combine electrical,mechanical,thermodynamic,hydraulic,
biological,control,event, real-time,etc…
Everything is a class
Strongly typed object-orientedlanguage with a general class
concept, Java & MATLAB-like syntax
Visual component programming
Hierarchical system architecture capabilities
Efficient, non-proprietary
Efficiencycomparable to C; advanced equation compilation,
e.g. 300 000 equations,~ 150 000 lines on standard PC
West Lab
Free/Commercial tools
• Simulator
- Commercial
ØDymola
ØCyModelica
ØWoflram
ØSimulationX
- Free
ØOpenModelica
ØJModelica.org
ØModelicac
• Editor
- Modelica mode for emacs
- UltraEdit
- Modelica Plugin (for Eclipse)
- Modelica Sublime Text Package
- OMEditor
7
• Developer site
- https://modelica.org/tools
West Lab
Modelica Free/Commercial Libraries
8
• Modelica Library
- Modelica
- Power system
- Vehicle
- Mathematics
- Chemical
- Building
https://www.modelica.org/libraries
West Lab
Modelica Tutorial
9
• Exercise 1
- RL Circuit model
• Exercise 2
- TransmissionLoss model
• Exercise 3
- Power World
West Lab
Exercise 1: RL Circuit
10
• Goal
- Making a basic RL circuit model using Modelica language
- Executing a simulationand plottingthe result
- Understanding the relationshipbetween electrical-thermalenergy
• Library
- Modelica library
West Lab
Exercise 1: RLC Circuit Modeling
11
Open	the	OMEdit
West Lab
12
1. Make	a	new	Package	“RLCircuit”
2. Make	a	new	Model	“Resistor”
3. Add	a	extends	model
4. Add	a	parameter	“R”
5. Add	a	equation
West Lab
13
extends	Modelica.Electrical.Analog.Interfaces.OnePort;
parameter	Modelica.SIunits.Resistance R(start=1);
equation
v	=	R	*	i;
West Lab
14
West Lab
15
“partial”	means	this	model	is	incomplete
West Lab
16
SI	=>	Modelica.SIunits
import	SI	=	Modelica.SIunits;
West Lab
17
model	Resistor
equation
v	=	p.v - nv;
0	=	p.i - n.i;
i =	p.i;
v	=	R	*	i;
end	Resistor
West Lab
18
You	can	check	your	code	here
West Lab
19
1. Make	a	new	model	“RLCircuit”	in	RLCircuit package
2. Add	Inductor,	Ground,	 and	sinVoltage from	
Modelica.Electrical.Analog,	and	Resistor
3. Connect	each	other
West Lab
20
1. Change	the	stoptime
2. simulate	the	model
West Lab
Exercise 1: Simulation result
21
Choose	the	resistor1.v
West Lab
22
1. Right	click	the	RLCircuit
2. Click	the	“Duplicate”
3. Choose	RLCircuit package	as	the	“Path”
4. Choose	the	new	model
West Lab
23
1. Right	click	the	resistance
2. Delete	the	block
3. Replace	the	resistance	to	
Modelica.Electrical.Analog.Basic.Resistor
West Lab
24
1. Add	FixedTemperature from	
Modelica.Thermal.HeatTransfer.Sources.FixedTemperature
2. Connect	to	the	replaced	resistor
West Lab
25
West Lab
26
Simulation	results
1. Click	the	LossPower and	v	in	RLCircuit2
2. Compare	the	result
West Lab
27
New	plot	window
West Lab
Exercise 2: Transmission Loss
28
• Goal
- Making a simple model representingtransmissionloss
using PowerSystems library
- Using the icon setting
- Understanding the outer/inner variables
• Library
- PowerSystems
West Lab
29
1. Open	File->System	Libraries->PowerSystems
2. Make	a	new	model
West Lab
30
extends	PowerSystems.Basic.Icons.Block;
Icon setting
West Lab
31
Click	the	icon	view
Icon setting
West Lab
32
Icon setting
West Lab
33
1. Extend	PartialTwoTerminal
2. Add	three	variables
You	can	search	the	PartialTwoTerminal here
Parameter of the line model
West Lab
34
West Lab
35
Replaceable	package	inherits	all	functions/variables/settings	
from	PowerSystems library
Every	model	in	PowerSystems inherits	this	PhaseSystem
• DC	or	AC
• Phase	number
• Frequency
West Lab
36
1. Add	equation
PhaseSystem.m:	Number	of	reference	angle
DC:	m	=	0
AC:	m	>	0	
Equation of the line model
West Lab
37
if	PhaseSystem.m >	0	then
omegaRef =	der(PhaseSystem.thetaRef(terminal_p.theta));
else
omegaRef =	0;
end	if;
v	=	R	*	i +	omegaRef *	L	*	j(i);
zeros(PhaseSystem.n)	=	terminal_p.i +	terminal_n.i;
if	PhaseSystem.m >	0	then
terminal_p.theta =	terminal_n.theta;
end	if
Equation of the line model
West Lab
38
Simulationof the line model
West Lab
39
1. Set	1.	FixedVoltageSource,	 2.	FixedCurrennt,	and	3.	System	
from	Powersystem.Generic
2. Open	the	parameter	window	of	the	FixedCurrent by	double	
click	and	change	the	parameter
Simulationof the line model
West Lab
40
1. Set	1.	FixedVoltageSource,	 2.	FixedCurrennt,	and	3.	System	
from	Powersystem.Generic
2. Open	the	parameter	window	of	the	FixedCurrent by	double	
click	and	change	the	parameter
Simulationof the line model
West Lab
41
1. Confirm	your	code	is	correct
Simulationof the line model
West Lab
42
System:	an	interface	of	PhaseSystem setting
”inner”	works	as	a	global	variable
• Omega,	theta,	and	frequency	
• DC/AC/AC(3phase)
• Initial	value
Simulationof the line model
West Lab
43
System:	an	interface	of	PhaseSystem setting
”inner”	works	as	a	global	variable
• Omega,	theta,	and	frequency	
• DC/AC/AC(3phase)
• Initial	value
inner	PowerSystems.Systemsystem(…
Simulationof the line model
West Lab
44
*	Modelica	Advanced	Tutorial:	Developing	Modeling	Library,	Martin	Otter,	Hilding	Elmqvist
West Lab
45
By	clicking	the	information	 button,	you	can	
see	the	detailed	information	 of	the	“System”.
Simulationof the line model
West Lab
46
The	result	is	constant	value
Simulationof the line model
West Lab
Exercise 3: Power World
47
• Goal
- Simulatingthe simplifiedpower grid including
ØVoltage
ØCurrent
ØFrequency
- Considering transmissionloss,and voltage conversion
- Using dynamic wind and electricityconsumptiondata
• Library
- PowerSystems
* The Power World uses Generic components
with the quasi-static ThreePhase_dq because
fast electrical transients and asymmetries are
neglected. For more precise simulation of
power grid, you can use the SPOT from
PowerSystems supporting AC 3 phase.
West Lab
Exercise 3: Power World
48
• Goal
- Simulatingthe simplifiedpower grid including
ØVoltage
ØCurrent
ØFrequency
- Considering transmissionloss,and voltage conversion
- Using dynamic wind and electricityconsumptiondata
• Library
- PowerSystems
* The Power World uses Generic components
with the quasi-static ThreePhase_dq because
fast electrical transients and asymmetries are
neglected. For more precise simulation of
power grid, you can use the SPOT from
PowerSystems supporting AC 3 phase.
West Lab
49
Exercise 3: Power World
1. Add	System	from	PowerSystems
2. Add	PowerPlant,	HydroPlant,	WindFarm,	and	City	
from	PowerSystems.Examples.Components
West Lab
50
You	can	check	the	content	by
1. Right	click	the	block
2. Choose	“Open	Class"
Exercise 3: Power World
West Lab
51
Exercise 3: Power World
West Lab
52
1. Click	the	“Text	View”
2. Change	the	WindFarm setting
Exercise 3: Power World
West Lab
53
windFarm1(redeclare package	PhaseSystem =	PowerSystems.PhaseSystems.DirectCurrent)
Exercise 3: Power World
West Lab
54
1. Add	VoltageConverter,	
Inverter	and	line
2. Double	click	and	change	
the	parameter	of	
VoltageConverter to	380/50
3. Double	click	and	change	
the	PotentialReference of	
Inverter	to	false
Exercise 3: Power World
West Lab
55
1. Add	VoltageConverter,	
Inverter	and	line
2. Double	click	and	change	
the	parameter	of	
VoltageConverter to	380/10
Exercise 3: Power World
West Lab
56
1. Add	LoadDispatcher from	
PowerSystems.Example.PowerWorld.Components
2. Add	RealExpression from	Modelica.Blocks.Sources
Exercise 3: Power World
West Lab
57
1. Double	click	the	RealExpression
2. Set	the	output	“y”	as	“system.omega/2/pi”
Exercise 3: Power World
West Lab
58
“pi”	is	defined	in	Modelica.Constants
1. Click	“Text	View”
2. Add	”import	Modelica.Constants.pi;”
Exercise 3: Power World
West Lab
59
1. Just	click	“OK”	when	you	connect	
the	LoadDispatcher and	Plants
Exercise 3: Power World
West Lab
60
Exercise 3: Power World
1. Double	click	the	”system”
2. Change	ini to	“tr”	(double	 quotation	is	required)
3. Change	ftype_par to	false
West Lab
61
Exercise 3: Power World
1. Change	the	stoptime to	86400
60	(sec)	*	60	*	24	=	86400
West Lab
62
Simulationresult: Electricitydemand and supply
West Lab
63
Simulationresult: Wind
West Lab
64
Simulationresult: Frequency
West Lab
65
Simulationresult: Frequency
In	the	system,	simulation	is	terminated	
when	the	frequency	exceed	the	limitation.
West Lab
66
Two Windfarm model
West Lab
67
Two Windfarm model
West Lab
SPOT: more precise power-system simulation
68
* The Power World uses Generic components
with the quasi-static ThreePhase_dq because
fast electrical transients and asymmetries are
neglected. For more precise simulation of
power grid, you can use the SPOT from
PowerSystems supporting AC 3 phase.
West Lab
69
Thank	you	for	your	attention
West Lab
70
Converter
(DC/AC)
Energy
Consumer
Frequency
Data
PowerPlant
West Lab
71
HydroDispatch:
HydroDispatch[1] = hydroBase
HydroDispatch[2] = hydroDaily
HydroDispatch[3] = controlHydro
plantDispatch:
plantDispatch[1] = plantSchedule
plantDispatch[2] = secondaryControl
plantDispatch[3] = primaryControl
𝜃 = 𝜔 $ 2𝜋
LoadDispatcher
West Lab
72
PowerPlant
plantDispatch:
plantDispatch[1] = plantSchedule = fuel.u1
plantDispatch[2] = secondaryControl = add.u1
plantDispatch[3] = primaryControl
West Lab
73
HydroPlant
HydroDispatch:
HydroDispatch[1] = hydroBase = riverControl.u
HydroDispatch[2] = hydroDaily = add.u2
HydroDispatch[3] = controlHydro
West Lab
74
WindFarm
Wind Data
West Lab
75
City
West Lab
Open Modelica Library
76
• Simulation Result
city
windFarm
hydroPlant
powerPlant
West Lab
IPSL
77

More Related Content

What's hot

Single Slider Crank mechanism based canplastic bottle crusher.Proj.MSE508
Single Slider Crank mechanism based canplastic bottle crusher.Proj.MSE508Single Slider Crank mechanism based canplastic bottle crusher.Proj.MSE508
Single Slider Crank mechanism based canplastic bottle crusher.Proj.MSE508
Viralkumar Jayswal
 
Electric Actuator
Electric ActuatorElectric Actuator
Electric Actuator
diego5wh
 
دبلومه اعداد مهندس كنترول من البدايه حتي الاحتراف
دبلومه اعداد مهندس كنترول من البدايه حتي الاحتراف دبلومه اعداد مهندس كنترول من البدايه حتي الاحتراف
دبلومه اعداد مهندس كنترول من البدايه حتي الاحتراف
Islam Hesham
 
Electrical theory or technology and plc concepts and basic electronics
Electrical theory or technology and plc concepts and basic electronicsElectrical theory or technology and plc concepts and basic electronics
Electrical theory or technology and plc concepts and basic electronics
swathichv
 

What's hot (20)

Hydraulic press machine
Hydraulic press machine Hydraulic press machine
Hydraulic press machine
 
Brake service and maintenance
Brake service and maintenanceBrake service and maintenance
Brake service and maintenance
 
Machine elements
Machine elementsMachine elements
Machine elements
 
Single Slider Crank mechanism based canplastic bottle crusher.Proj.MSE508
Single Slider Crank mechanism based canplastic bottle crusher.Proj.MSE508Single Slider Crank mechanism based canplastic bottle crusher.Proj.MSE508
Single Slider Crank mechanism based canplastic bottle crusher.Proj.MSE508
 
SPICE Model of Current Transformer
SPICE Model of Current TransformerSPICE Model of Current Transformer
SPICE Model of Current Transformer
 
Electric Actuator
Electric ActuatorElectric Actuator
Electric Actuator
 
Design and Fabrication of Pedal operated Flour Mill
Design and Fabrication of Pedal operated Flour MillDesign and Fabrication of Pedal operated Flour Mill
Design and Fabrication of Pedal operated Flour Mill
 
Pumps How do they work
Pumps How do they workPumps How do they work
Pumps How do they work
 
PID controller in control systems
PID controller in control systemsPID controller in control systems
PID controller in control systems
 
Protection, Automation and Monitoring: SIPROTEC 5 v7.9/v8.0
Protection, Automation and Monitoring:  SIPROTEC 5 v7.9/v8.0Protection, Automation and Monitoring:  SIPROTEC 5 v7.9/v8.0
Protection, Automation and Monitoring: SIPROTEC 5 v7.9/v8.0
 
FEA MESH QUALITY PARAMETER
FEA MESH QUALITY PARAMETERFEA MESH QUALITY PARAMETER
FEA MESH QUALITY PARAMETER
 
دبلومه اعداد مهندس كنترول من البدايه حتي الاحتراف
دبلومه اعداد مهندس كنترول من البدايه حتي الاحتراف دبلومه اعداد مهندس كنترول من البدايه حتي الاحتراف
دبلومه اعداد مهندس كنترول من البدايه حتي الاحتراف
 
Electrical theory or technology and plc concepts and basic electronics
Electrical theory or technology and plc concepts and basic electronicsElectrical theory or technology and plc concepts and basic electronics
Electrical theory or technology and plc concepts and basic electronics
 
Hydraulics and Pneumatics.pdf
Hydraulics and Pneumatics.pdfHydraulics and Pneumatics.pdf
Hydraulics and Pneumatics.pdf
 
Pressure control valves
Pressure control valvesPressure control valves
Pressure control valves
 
Designing of fly wheel
Designing of fly wheelDesigning of fly wheel
Designing of fly wheel
 
Programmable Logic Controllers
Programmable Logic ControllersProgrammable Logic Controllers
Programmable Logic Controllers
 
Abrasive belt grinder capstone report
Abrasive belt grinder   capstone reportAbrasive belt grinder   capstone report
Abrasive belt grinder capstone report
 
Two speed gear box mini project
Two speed gear box mini projectTwo speed gear box mini project
Two speed gear box mini project
 
Pneumatics: Shuttle, Twin pressure, Quick Exhaust, Time Delay, FRL
Pneumatics: Shuttle, Twin pressure, Quick Exhaust, Time Delay, FRLPneumatics: Shuttle, Twin pressure, Quick Exhaust, Time Delay, FRL
Pneumatics: Shuttle, Twin pressure, Quick Exhaust, Time Delay, FRL
 

Similar to Modelica Tutorial with PowerSystems: A tutorial for Modelica simulation

Hands-on-OpenIPSL.org using OpenModelica!
Hands-on-OpenIPSL.org using OpenModelica!Hands-on-OpenIPSL.org using OpenModelica!
Hands-on-OpenIPSL.org using OpenModelica!
Luigi Vanfretti
 
รายงานการทำ Lab วันที่ 10 ธันวาคม
รายงานการทำ Lab วันที่ 10 ธันวาคมรายงานการทำ Lab วันที่ 10 ธันวาคม
รายงานการทำ Lab วันที่ 10 ธันวาคม
Chetoss Retos
 

Similar to Modelica Tutorial with PowerSystems: A tutorial for Modelica simulation (20)

Electrical Circuit Lab
Electrical Circuit LabElectrical Circuit Lab
Electrical Circuit Lab
 
ECET 405 Success Begins/Newtonhelp.com
 ECET 405 Success Begins/Newtonhelp.com ECET 405 Success Begins/Newtonhelp.com
ECET 405 Success Begins/Newtonhelp.com
 
ECET 365 Success Begins /newtonhelp.com 
ECET 365 Success Begins /newtonhelp.com ECET 365 Success Begins /newtonhelp.com 
ECET 365 Success Begins /newtonhelp.com 
 
ECET 365 Success Begins/Newtonhelp.com
ECET 365 Success Begins/Newtonhelp.comECET 365 Success Begins/Newtonhelp.com
ECET 365 Success Begins/Newtonhelp.com
 
Ecet 365 Enhance teaching / snaptutorial.com
Ecet 365   Enhance teaching / snaptutorial.comEcet 365   Enhance teaching / snaptutorial.com
Ecet 365 Enhance teaching / snaptutorial.com
 
ECET 365 Exceptional Education / snaptutorial.com
ECET 365 Exceptional Education / snaptutorial.comECET 365 Exceptional Education / snaptutorial.com
ECET 365 Exceptional Education / snaptutorial.com
 
Ecet 365 Education Redefined - snaptutorial.com
Ecet 365    Education Redefined - snaptutorial.comEcet 365    Education Redefined - snaptutorial.com
Ecet 365 Education Redefined - snaptutorial.com
 
Ass5
Ass5Ass5
Ass5
 
ECET 402 Entire Course NEW
ECET 402 Entire Course NEWECET 402 Entire Course NEW
ECET 402 Entire Course NEW
 
Edc lab 4 - to implement a half wave rectifier using diode
Edc   lab 4 - to implement a half wave rectifier using diodeEdc   lab 4 - to implement a half wave rectifier using diode
Edc lab 4 - to implement a half wave rectifier using diode
 
OPAL-RT HYPERSIM Features applied for Relay Testing
OPAL-RT HYPERSIM Features applied for Relay TestingOPAL-RT HYPERSIM Features applied for Relay Testing
OPAL-RT HYPERSIM Features applied for Relay Testing
 
L3-.pptx
L3-.pptxL3-.pptx
L3-.pptx
 
Hands-on-OpenIPSL.org using OpenModelica!
Hands-on-OpenIPSL.org using OpenModelica!Hands-on-OpenIPSL.org using OpenModelica!
Hands-on-OpenIPSL.org using OpenModelica!
 
Proposal and implementation of a novel perturb and observe algorithm using em...
Proposal and implementation of a novel perturb and observe algorithm using em...Proposal and implementation of a novel perturb and observe algorithm using em...
Proposal and implementation of a novel perturb and observe algorithm using em...
 
How to use SIMULINK.pptx
How to use SIMULINK.pptxHow to use SIMULINK.pptx
How to use SIMULINK.pptx
 
SPICE LEVEL I/LEVEL II/LEVEL III AND BSIM MODELS
SPICE LEVEL I/LEVEL II/LEVEL III AND BSIM MODELSSPICE LEVEL I/LEVEL II/LEVEL III AND BSIM MODELS
SPICE LEVEL I/LEVEL II/LEVEL III AND BSIM MODELS
 
Implementation of quantum gates using verilog
Implementation of quantum gates using verilogImplementation of quantum gates using verilog
Implementation of quantum gates using verilog
 
RT15 Berkeley | Power HIL Simulator (SimP) A prototype to develop a high band...
RT15 Berkeley | Power HIL Simulator (SimP) A prototype to develop a high band...RT15 Berkeley | Power HIL Simulator (SimP) A prototype to develop a high band...
RT15 Berkeley | Power HIL Simulator (SimP) A prototype to develop a high band...
 
PyParis2017 / Circuit simulation using Python, by Fabrice Salvaire
PyParis2017 / Circuit simulation using Python, by Fabrice SalvairePyParis2017 / Circuit simulation using Python, by Fabrice Salvaire
PyParis2017 / Circuit simulation using Python, by Fabrice Salvaire
 
รายงานการทำ Lab วันที่ 10 ธันวาคม
รายงานการทำ Lab วันที่ 10 ธันวาคมรายงานการทำ Lab วันที่ 10 ธันวาคม
รายงานการทำ Lab วันที่ 10 ธันวาคม
 

Recently uploaded

Recently uploaded (20)

Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 

Modelica Tutorial with PowerSystems: A tutorial for Modelica simulation