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

Mi 291 chapter 3 (reverse engineering)(1)
Mi 291 chapter 3 (reverse engineering)(1)Mi 291 chapter 3 (reverse engineering)(1)
Mi 291 chapter 3 (reverse engineering)(1)varun teja G.V.V
 
PPT.3 Starting with hypermesh – Static Load Application and Analysis
PPT.3 Starting with hypermesh – Static Load Application and AnalysisPPT.3 Starting with hypermesh – Static Load Application and Analysis
PPT.3 Starting with hypermesh – Static Load Application and AnalysisAkshay Mistri
 
Manufacturing Technology unit 1
Manufacturing Technology unit 1Manufacturing Technology unit 1
Manufacturing Technology unit 1devasishreddy22
 
Description of design process new
Description of design process newDescription of design process new
Description of design process newSiddharth Sharma
 
Lecture # 01 Introduction to Rapid Prototyping & Reverse Engineering
Lecture # 01 Introduction to Rapid Prototyping & Reverse Engineering Lecture # 01 Introduction to Rapid Prototyping & Reverse Engineering
Lecture # 01 Introduction to Rapid Prototyping & Reverse Engineering Solomon Tekeste
 
Solidworks training report
Solidworks training reportSolidworks training report
Solidworks training reportPawan Kumar
 
INDUSTRIAL TRAINING REPORT
INDUSTRIAL TRAINING REPORTINDUSTRIAL TRAINING REPORT
INDUSTRIAL TRAINING REPORTSUYASH TRIVEDI
 
Design for Additive Manufacturing Essentials
Design for Additive Manufacturing EssentialsDesign for Additive Manufacturing Essentials
Design for Additive Manufacturing EssentialsRising Media, Inc.
 
Sheet metal Forming Process
Sheet metal Forming ProcessSheet metal Forming Process
Sheet metal Forming ProcessGuhan M
 
Placement preparation tips for L&T engineering construction company mechanic...
Placement preparation tips  for L&T engineering construction company mechanic...Placement preparation tips  for L&T engineering construction company mechanic...
Placement preparation tips for L&T engineering construction company mechanic...Suryajeet kumar Jha
 
Stereolithography latest
Stereolithography latestStereolithography latest
Stereolithography latestyuvarajeil
 
TRAINING REPORT ON CASTING
TRAINING REPORT ON CASTINGTRAINING REPORT ON CASTING
TRAINING REPORT ON CASTINGPawan Kumar
 
4.selective laser sintering (by Hari Prasad)
4.selective laser sintering (by Hari Prasad)4.selective laser sintering (by Hari Prasad)
4.selective laser sintering (by Hari Prasad)Sachin Hariprasad
 
Oil-Refinery Planning & Scheduling Optimization
Oil-Refinery Planning & Scheduling OptimizationOil-Refinery Planning & Scheduling Optimization
Oil-Refinery Planning & Scheduling OptimizationAlkis Vazacopoulos
 
Top 36 fabrication interview questions with answers pdf
Top 36 fabrication interview questions with answers pdfTop 36 fabrication interview questions with answers pdf
Top 36 fabrication interview questions with answers pdfbradleylindsey345
 
Pugh matrix concept evaluation in Design
Pugh matrix concept evaluation in DesignPugh matrix concept evaluation in Design
Pugh matrix concept evaluation in DesignYogesh Prasad
 
Manufacturing cell design
Manufacturing cell designManufacturing cell design
Manufacturing cell designSreejesh Sp
 
Sla recoating issues & fdm
Sla recoating issues & fdmSla recoating issues & fdm
Sla recoating issues & fdmAbdul Kalam
 

What's hot (20)

Mi 291 chapter 3 (reverse engineering)(1)
Mi 291 chapter 3 (reverse engineering)(1)Mi 291 chapter 3 (reverse engineering)(1)
Mi 291 chapter 3 (reverse engineering)(1)
 
PPT.3 Starting with hypermesh – Static Load Application and Analysis
PPT.3 Starting with hypermesh – Static Load Application and AnalysisPPT.3 Starting with hypermesh – Static Load Application and Analysis
PPT.3 Starting with hypermesh – Static Load Application and Analysis
 
Manufacturing Technology unit 1
Manufacturing Technology unit 1Manufacturing Technology unit 1
Manufacturing Technology unit 1
 
Description of design process new
Description of design process newDescription of design process new
Description of design process new
 
Lecture # 01 Introduction to Rapid Prototyping & Reverse Engineering
Lecture # 01 Introduction to Rapid Prototyping & Reverse Engineering Lecture # 01 Introduction to Rapid Prototyping & Reverse Engineering
Lecture # 01 Introduction to Rapid Prototyping & Reverse Engineering
 
Solidworks training report
Solidworks training reportSolidworks training report
Solidworks training report
 
INDUSTRIAL TRAINING REPORT
INDUSTRIAL TRAINING REPORTINDUSTRIAL TRAINING REPORT
INDUSTRIAL TRAINING REPORT
 
Design for Additive Manufacturing Essentials
Design for Additive Manufacturing EssentialsDesign for Additive Manufacturing Essentials
Design for Additive Manufacturing Essentials
 
Sheet metal Forming Process
Sheet metal Forming ProcessSheet metal Forming Process
Sheet metal Forming Process
 
Placement preparation tips for L&T engineering construction company mechanic...
Placement preparation tips  for L&T engineering construction company mechanic...Placement preparation tips  for L&T engineering construction company mechanic...
Placement preparation tips for L&T engineering construction company mechanic...
 
I corps e245 syllabus rev 18
I corps e245 syllabus rev 18I corps e245 syllabus rev 18
I corps e245 syllabus rev 18
 
Stereolithography latest
Stereolithography latestStereolithography latest
Stereolithography latest
 
TRAINING REPORT ON CASTING
TRAINING REPORT ON CASTINGTRAINING REPORT ON CASTING
TRAINING REPORT ON CASTING
 
4.selective laser sintering (by Hari Prasad)
4.selective laser sintering (by Hari Prasad)4.selective laser sintering (by Hari Prasad)
4.selective laser sintering (by Hari Prasad)
 
Oil-Refinery Planning & Scheduling Optimization
Oil-Refinery Planning & Scheduling OptimizationOil-Refinery Planning & Scheduling Optimization
Oil-Refinery Planning & Scheduling Optimization
 
Top 36 fabrication interview questions with answers pdf
Top 36 fabrication interview questions with answers pdfTop 36 fabrication interview questions with answers pdf
Top 36 fabrication interview questions with answers pdf
 
Pugh matrix concept evaluation in Design
Pugh matrix concept evaluation in DesignPugh matrix concept evaluation in Design
Pugh matrix concept evaluation in Design
 
Mechanism synthesis, graphical
Mechanism synthesis, graphicalMechanism synthesis, graphical
Mechanism synthesis, graphical
 
Manufacturing cell design
Manufacturing cell designManufacturing cell design
Manufacturing cell design
 
Sla recoating issues & fdm
Sla recoating issues & fdmSla recoating issues & fdm
Sla recoating issues & fdm
 

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

Electrical Circuit Lab
Electrical Circuit LabElectrical Circuit Lab
Electrical Circuit LabCyber4Tech
 
ECET 405 Success Begins/Newtonhelp.com
 ECET 405 Success Begins/Newtonhelp.com ECET 405 Success Begins/Newtonhelp.com
ECET 405 Success Begins/Newtonhelp.comledlang2
 
ECET 365 Success Begins /newtonhelp.com 
ECET 365 Success Begins /newtonhelp.com ECET 365 Success Begins /newtonhelp.com 
ECET 365 Success Begins /newtonhelp.com myblue134
 
ECET 365 Success Begins/Newtonhelp.com
ECET 365 Success Begins/Newtonhelp.comECET 365 Success Begins/Newtonhelp.com
ECET 365 Success Begins/Newtonhelp.comledlang1
 
Ecet 365 Enhance teaching / snaptutorial.com
Ecet 365   Enhance teaching / snaptutorial.comEcet 365   Enhance teaching / snaptutorial.com
Ecet 365 Enhance teaching / snaptutorial.comDavis116a
 
ECET 365 Exceptional Education / snaptutorial.com
ECET 365 Exceptional Education / snaptutorial.comECET 365 Exceptional Education / snaptutorial.com
ECET 365 Exceptional Education / snaptutorial.comdonaldzs109
 
Ecet 365 Education Redefined - snaptutorial.com
Ecet 365    Education Redefined - snaptutorial.comEcet 365    Education Redefined - snaptutorial.com
Ecet 365 Education Redefined - snaptutorial.comDavisMurphyC85
 
ECET 402 Entire Course NEW
ECET 402 Entire Course NEWECET 402 Entire Course NEW
ECET 402 Entire Course NEWshyamuopuop
 
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 diodeTajim Md. Niamat Ullah Akhund
 
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 TestingOPAL-RT TECHNOLOGIES
 
L3-.pptx
L3-.pptxL3-.pptx
L3-.pptxasdq4
 
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
 
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...saad motahhir
 
How to use SIMULINK.pptx
How to use SIMULINK.pptxHow to use SIMULINK.pptx
How to use SIMULINK.pptxVijayAECE1
 
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 MODELSPraveen Kumar
 
Implementation of quantum gates using verilog
Implementation of quantum gates using verilogImplementation of quantum gates using verilog
Implementation of quantum gates using verilogShashank Kumar
 
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...OPAL-RT TECHNOLOGIES
 
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 SalvairePôle Systematic Paris-Region
 
รายงานการทำ 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

costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsAndrey Dotsenko
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 

Recently uploaded (20)

costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 

Modelica Tutorial with PowerSystems: A tutorial for Modelica simulation