SlideShare ist ein Scribd-Unternehmen logo
1 von 38
 
AGENDA ,[object Object]
RECOMENDACIONES ,[object Object]
RECOMENDACIONES ,[object Object],[object Object]
RECOMENDACIONES ,[object Object],[object Object],[object Object]
RECOMENDACIONES ,[object Object],[object Object],[object Object],[object Object]
El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’
El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800
El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600
El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600 scene.autoscale = 0
El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600 scene.autoscale = 0 scene.range = (100,100,100)
El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600 scene.autoscale = 0 scene.range = (100,100,100) scene.center = (50,40,0)
El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600 scene.autoscale = 0 scene.range = (100,100,100) scene.center = (50,40,0) ball = sphere(pos=(0,2,0),radius=2, color=color.green)
El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600 scene.autoscale = 0 scene.range = (100,100,100) scene.center = (50,40,0) ball = sphere(pos=(0,2,0),radius=2, color=color.green) ground = box(pos=(50,-1,0),size=(100,2,10))
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees angle = angle * (pi/180) # converted to radians
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin # adj = hyp * cos
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin # adj = hyp * cos VelocityY = velocity * sin(angle)
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin # adj = hyp * cos VelocityY = velocity * sin(angle) VelocityX = velocity * cos(angle)
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin # adj = hyp * cos VelocityY = velocity * sin(angle) VelocityX = velocity * cos(angle) seconds = 0
-el segundo paso es : condicionar el problema físico gravity = 9.8  # m/s**2 velocity = 25  # m/s angle = 45  # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin # adj = hyp * cos VelocityY = velocity * sin(angle) VelocityX = velocity * cos(angle) seconds = 0 dt = .01
-el tercer paso : condicionar la  primera materia  print "initial velocity: " + str(velocity) finished = False while not finished:
-el tercer paso : condicionar la  primera materia  print "initial velocity: " + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt
-el tercer paso : condicionar la  primera materia  print "initial velocity: " + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2
-el tercer paso : condicionar la  primera materia  print "initial velocity: " + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2
-el tercer paso : condicionar la  primera materia  print "initial velocity: " + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds
-el tercer paso : condicionar la  primera materia  print "initial velocity: " + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0)
-el tercer paso : condicionar la  primera materia  print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0) if ballY - 2 <= 0:
-el tercer paso : condicionar la  primera materia  print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0) if ballY - 2 <= 0: finished = True
-el tercer paso : condicionar la  primera materia  print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0) if ballY - 2 <= 0: finished = True print &quot;angle thrown: &quot; + str(angle)
-el tercer paso : condicionar la  primera materia  print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0) if ballY - 2 <= 0: finished = True print &quot;angle thrown: &quot; + str(angle) print &quot;seconds in flight: &quot; + str(seconds)
-el tercer paso : condicionar la  primera materia  print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0) if ballY - 2 <= 0: finished = True print &quot;angle thrown: &quot; + str(angle) print &quot;seconds in flight: &quot; + str(seconds) print &quot;distance in the x direction: &quot; + str(ballX)

Weitere ähnliche Inhalte

Andere mochten auch

How to win_in_anbar_v4
How to win_in_anbar_v4How to win_in_anbar_v4
How to win_in_anbar_v4gystyle
 
Bl Consulting Ltd I Scala Pm Overview
Bl Consulting Ltd I Scala Pm OverviewBl Consulting Ltd I Scala Pm Overview
Bl Consulting Ltd I Scala Pm Overviewguest408cb05
 
The Future Of Blended Learning V3
The Future Of Blended Learning V3The Future Of Blended Learning V3
The Future Of Blended Learning V3Mary Rose
 
HPX活動設計 / 蔡明哲 悠識數位
HPX活動設計 / 蔡明哲 悠識數位HPX活動設計 / 蔡明哲 悠識數位
HPX活動設計 / 蔡明哲 悠識數位悠識學院
 
Sharepoint Web Solutions case study presentation at In-Telligent 2008 Confere...
Sharepoint Web Solutions case study presentation at In-Telligent 2008 Confere...Sharepoint Web Solutions case study presentation at In-Telligent 2008 Confere...
Sharepoint Web Solutions case study presentation at In-Telligent 2008 Confere...Jean-Claude Monney
 
Inside WSS sample shots
Inside WSS sample shotsInside WSS sample shots
Inside WSS sample shotsSøren Raarup
 
Embedding BCE - Introduction
Embedding BCE - IntroductionEmbedding BCE - Introduction
Embedding BCE - IntroductionJISC BCE
 
GöNüL Sultan MüBarek SöZlerii
GöNüL Sultan MüBarek SöZleriiGöNüL Sultan MüBarek SöZlerii
GöNüL Sultan MüBarek SöZleriiyelbeyi
 
The value of a good story jm 2010
The value of a good story   jm 2010The value of a good story   jm 2010
The value of a good story jm 2010James Mitchell
 
FINHTML5 - Breaking the mobile web
FINHTML5 - Breaking the mobile webFINHTML5 - Breaking the mobile web
FINHTML5 - Breaking the mobile webMaximiliano Firtman
 
Review Of Naming Compounds And Balancing Equations 1205854412907095 2
Review Of Naming Compounds And Balancing Equations 1205854412907095 2Review Of Naming Compounds And Balancing Equations 1205854412907095 2
Review Of Naming Compounds And Balancing Equations 1205854412907095 2siva sankar
 
Dhwani09 Lonewolf - LVC
Dhwani09 Lonewolf - LVCDhwani09 Lonewolf - LVC
Dhwani09 Lonewolf - LVCJithin Jacob
 
Elated Presentation
Elated PresentationElated Presentation
Elated Presentationdbaudio
 
Soda Portfolio
Soda PortfolioSoda Portfolio
Soda Portfoliosodadesign
 

Andere mochten auch (20)

Causes on facebook
Causes on facebookCauses on facebook
Causes on facebook
 
Am Sa Fug
Am Sa FugAm Sa Fug
Am Sa Fug
 
How to win_in_anbar_v4
How to win_in_anbar_v4How to win_in_anbar_v4
How to win_in_anbar_v4
 
Bl Consulting Ltd I Scala Pm Overview
Bl Consulting Ltd I Scala Pm OverviewBl Consulting Ltd I Scala Pm Overview
Bl Consulting Ltd I Scala Pm Overview
 
The Future Of Blended Learning V3
The Future Of Blended Learning V3The Future Of Blended Learning V3
The Future Of Blended Learning V3
 
HPX活動設計 / 蔡明哲 悠識數位
HPX活動設計 / 蔡明哲 悠識數位HPX活動設計 / 蔡明哲 悠識數位
HPX活動設計 / 蔡明哲 悠識數位
 
TmarketingConsulitng Services
TmarketingConsulitng ServicesTmarketingConsulitng Services
TmarketingConsulitng Services
 
Sharepoint Web Solutions case study presentation at In-Telligent 2008 Confere...
Sharepoint Web Solutions case study presentation at In-Telligent 2008 Confere...Sharepoint Web Solutions case study presentation at In-Telligent 2008 Confere...
Sharepoint Web Solutions case study presentation at In-Telligent 2008 Confere...
 
Inside WSS sample shots
Inside WSS sample shotsInside WSS sample shots
Inside WSS sample shots
 
Ot 15.2
Ot 15.2Ot 15.2
Ot 15.2
 
Embedding BCE - Introduction
Embedding BCE - IntroductionEmbedding BCE - Introduction
Embedding BCE - Introduction
 
GöNüL Sultan MüBarek SöZlerii
GöNüL Sultan MüBarek SöZleriiGöNüL Sultan MüBarek SöZlerii
GöNüL Sultan MüBarek SöZlerii
 
The value of a good story jm 2010
The value of a good story   jm 2010The value of a good story   jm 2010
The value of a good story jm 2010
 
So This Is Xmas
So This Is XmasSo This Is Xmas
So This Is Xmas
 
company profile
company profilecompany profile
company profile
 
FINHTML5 - Breaking the mobile web
FINHTML5 - Breaking the mobile webFINHTML5 - Breaking the mobile web
FINHTML5 - Breaking the mobile web
 
Review Of Naming Compounds And Balancing Equations 1205854412907095 2
Review Of Naming Compounds And Balancing Equations 1205854412907095 2Review Of Naming Compounds And Balancing Equations 1205854412907095 2
Review Of Naming Compounds And Balancing Equations 1205854412907095 2
 
Dhwani09 Lonewolf - LVC
Dhwani09 Lonewolf - LVCDhwani09 Lonewolf - LVC
Dhwani09 Lonewolf - LVC
 
Elated Presentation
Elated PresentationElated Presentation
Elated Presentation
 
Soda Portfolio
Soda PortfolioSoda Portfolio
Soda Portfolio
 

Ähnlich wie Tutorial

Ähnlich wie Tutorial (20)

MÁ X I M O S Y MÍ N I M O S
MÁ X I M O S  Y  MÍ N I M O SMÁ X I M O S  Y  MÍ N I M O S
MÁ X I M O S Y MÍ N I M O S
 
Cinemática laboratorio CELM
Cinemática laboratorio CELMCinemática laboratorio CELM
Cinemática laboratorio CELM
 
modificacion y explicacion del porgrama
modificacion y explicacion del porgramamodificacion y explicacion del porgrama
modificacion y explicacion del porgrama
 
Tippens fisica 7e_diapositivas_06b
Tippens fisica 7e_diapositivas_06bTippens fisica 7e_diapositivas_06b
Tippens fisica 7e_diapositivas_06b
 
Matemáticall u4 act5_1ºparte
Matemáticall u4 act5_1ºparteMatemáticall u4 act5_1ºparte
Matemáticall u4 act5_1ºparte
 
Mov de Proyectiles .ppt
Mov de Proyectiles .pptMov de Proyectiles .ppt
Mov de Proyectiles .ppt
 
Determinantes Segunda Parte
Determinantes Segunda ParteDeterminantes Segunda Parte
Determinantes Segunda Parte
 
DETERMINANTES
DETERMINANTESDETERMINANTES
DETERMINANTES
 
Tippens_fisica_7e_diapositivas_06b.pptx
Tippens_fisica_7e_diapositivas_06b.pptxTippens_fisica_7e_diapositivas_06b.pptx
Tippens_fisica_7e_diapositivas_06b.pptx
 
Seminario Dinamica 1PC 2023-2.pdf
Seminario Dinamica 1PC 2023-2.pdfSeminario Dinamica 1PC 2023-2.pdf
Seminario Dinamica 1PC 2023-2.pdf
 
1 er informe
1 er informe1 er informe
1 er informe
 
Caida libre
Caida libreCaida libre
Caida libre
 
Problemas resueltos-caida-libre
Problemas resueltos-caida-libreProblemas resueltos-caida-libre
Problemas resueltos-caida-libre
 
Caida libre
Caida libreCaida libre
Caida libre
 
Teorico1
Teorico1Teorico1
Teorico1
 
10 ejercicios resueltos en cpp
10 ejercicios resueltos en cpp10 ejercicios resueltos en cpp
10 ejercicios resueltos en cpp
 
Movimiento en dos dimenciones
Movimiento en dos dimencionesMovimiento en dos dimenciones
Movimiento en dos dimenciones
 
movimiento-parabolico-solucionario-serway
movimiento-parabolico-solucionario-serwaymovimiento-parabolico-solucionario-serway
movimiento-parabolico-solucionario-serway
 
Cap 1 cinemática de partículas
Cap 1 cinemática de partículasCap 1 cinemática de partículas
Cap 1 cinemática de partículas
 
Cinemática. Movimiento Uniformemente Acelerado
Cinemática. Movimiento Uniformemente AceleradoCinemática. Movimiento Uniformemente Acelerado
Cinemática. Movimiento Uniformemente Acelerado
 

Kürzlich hochgeladen

Global Azure Lima 2024 - Integración de Datos con Microsoft Fabric
Global Azure Lima 2024 - Integración de Datos con Microsoft FabricGlobal Azure Lima 2024 - Integración de Datos con Microsoft Fabric
Global Azure Lima 2024 - Integración de Datos con Microsoft FabricKeyla Dolores Méndez
 
Herramientas de corte de alta velocidad.pptx
Herramientas de corte de alta velocidad.pptxHerramientas de corte de alta velocidad.pptx
Herramientas de corte de alta velocidad.pptxRogerPrieto3
 
EPA-pdf resultado da prova presencial Uninove
EPA-pdf resultado da prova presencial UninoveEPA-pdf resultado da prova presencial Uninove
EPA-pdf resultado da prova presencial UninoveFagnerLisboa3
 
CLASE DE TECNOLOGIA E INFORMATICA PRIMARIA
CLASE  DE TECNOLOGIA E INFORMATICA PRIMARIACLASE  DE TECNOLOGIA E INFORMATICA PRIMARIA
CLASE DE TECNOLOGIA E INFORMATICA PRIMARIAWilbisVega
 
POWER POINT YUCRAElabore una PRESENTACIÓN CORTA sobre el video película: La C...
POWER POINT YUCRAElabore una PRESENTACIÓN CORTA sobre el video película: La C...POWER POINT YUCRAElabore una PRESENTACIÓN CORTA sobre el video película: La C...
POWER POINT YUCRAElabore una PRESENTACIÓN CORTA sobre el video película: La C...silviayucra2
 
trabajotecologiaisabella-240424003133-8f126965.pdf
trabajotecologiaisabella-240424003133-8f126965.pdftrabajotecologiaisabella-240424003133-8f126965.pdf
trabajotecologiaisabella-240424003133-8f126965.pdfIsabellaMontaomurill
 
Proyecto integrador. Las TIC en la sociedad S4.pptx
Proyecto integrador. Las TIC en la sociedad S4.pptxProyecto integrador. Las TIC en la sociedad S4.pptx
Proyecto integrador. Las TIC en la sociedad S4.pptx241521559
 
Redes direccionamiento y subredes ipv4 2024 .pdf
Redes direccionamiento y subredes ipv4 2024 .pdfRedes direccionamiento y subredes ipv4 2024 .pdf
Redes direccionamiento y subredes ipv4 2024 .pdfsoporteupcology
 
International Women's Day Sucre 2024 (IWD)
International Women's Day Sucre 2024 (IWD)International Women's Day Sucre 2024 (IWD)
International Women's Day Sucre 2024 (IWD)GDGSucre
 
9egb-lengua y Literatura.pdf_texto del estudiante
9egb-lengua y Literatura.pdf_texto del estudiante9egb-lengua y Literatura.pdf_texto del estudiante
9egb-lengua y Literatura.pdf_texto del estudianteAndreaHuertas24
 
Presentación guía sencilla en Microsoft Excel.pptx
Presentación guía sencilla en Microsoft Excel.pptxPresentación guía sencilla en Microsoft Excel.pptx
Presentación guía sencilla en Microsoft Excel.pptxLolaBunny11
 
pruebas unitarias unitarias en java con JUNIT
pruebas unitarias unitarias en java con JUNITpruebas unitarias unitarias en java con JUNIT
pruebas unitarias unitarias en java con JUNITMaricarmen Sánchez Ruiz
 
guía de registro de slideshare por Brayan Joseph
guía de registro de slideshare por Brayan Josephguía de registro de slideshare por Brayan Joseph
guía de registro de slideshare por Brayan JosephBRAYANJOSEPHPEREZGOM
 
KELA Presentacion Costa Rica 2024 - evento Protégeles
KELA Presentacion Costa Rica 2024 - evento ProtégelesKELA Presentacion Costa Rica 2024 - evento Protégeles
KELA Presentacion Costa Rica 2024 - evento ProtégelesFundación YOD YOD
 
Trabajo Mas Completo De Excel en clase tecnología
Trabajo Mas Completo De Excel en clase tecnologíaTrabajo Mas Completo De Excel en clase tecnología
Trabajo Mas Completo De Excel en clase tecnologíassuserf18419
 

Kürzlich hochgeladen (15)

Global Azure Lima 2024 - Integración de Datos con Microsoft Fabric
Global Azure Lima 2024 - Integración de Datos con Microsoft FabricGlobal Azure Lima 2024 - Integración de Datos con Microsoft Fabric
Global Azure Lima 2024 - Integración de Datos con Microsoft Fabric
 
Herramientas de corte de alta velocidad.pptx
Herramientas de corte de alta velocidad.pptxHerramientas de corte de alta velocidad.pptx
Herramientas de corte de alta velocidad.pptx
 
EPA-pdf resultado da prova presencial Uninove
EPA-pdf resultado da prova presencial UninoveEPA-pdf resultado da prova presencial Uninove
EPA-pdf resultado da prova presencial Uninove
 
CLASE DE TECNOLOGIA E INFORMATICA PRIMARIA
CLASE  DE TECNOLOGIA E INFORMATICA PRIMARIACLASE  DE TECNOLOGIA E INFORMATICA PRIMARIA
CLASE DE TECNOLOGIA E INFORMATICA PRIMARIA
 
POWER POINT YUCRAElabore una PRESENTACIÓN CORTA sobre el video película: La C...
POWER POINT YUCRAElabore una PRESENTACIÓN CORTA sobre el video película: La C...POWER POINT YUCRAElabore una PRESENTACIÓN CORTA sobre el video película: La C...
POWER POINT YUCRAElabore una PRESENTACIÓN CORTA sobre el video película: La C...
 
trabajotecologiaisabella-240424003133-8f126965.pdf
trabajotecologiaisabella-240424003133-8f126965.pdftrabajotecologiaisabella-240424003133-8f126965.pdf
trabajotecologiaisabella-240424003133-8f126965.pdf
 
Proyecto integrador. Las TIC en la sociedad S4.pptx
Proyecto integrador. Las TIC en la sociedad S4.pptxProyecto integrador. Las TIC en la sociedad S4.pptx
Proyecto integrador. Las TIC en la sociedad S4.pptx
 
Redes direccionamiento y subredes ipv4 2024 .pdf
Redes direccionamiento y subredes ipv4 2024 .pdfRedes direccionamiento y subredes ipv4 2024 .pdf
Redes direccionamiento y subredes ipv4 2024 .pdf
 
International Women's Day Sucre 2024 (IWD)
International Women's Day Sucre 2024 (IWD)International Women's Day Sucre 2024 (IWD)
International Women's Day Sucre 2024 (IWD)
 
9egb-lengua y Literatura.pdf_texto del estudiante
9egb-lengua y Literatura.pdf_texto del estudiante9egb-lengua y Literatura.pdf_texto del estudiante
9egb-lengua y Literatura.pdf_texto del estudiante
 
Presentación guía sencilla en Microsoft Excel.pptx
Presentación guía sencilla en Microsoft Excel.pptxPresentación guía sencilla en Microsoft Excel.pptx
Presentación guía sencilla en Microsoft Excel.pptx
 
pruebas unitarias unitarias en java con JUNIT
pruebas unitarias unitarias en java con JUNITpruebas unitarias unitarias en java con JUNIT
pruebas unitarias unitarias en java con JUNIT
 
guía de registro de slideshare por Brayan Joseph
guía de registro de slideshare por Brayan Josephguía de registro de slideshare por Brayan Joseph
guía de registro de slideshare por Brayan Joseph
 
KELA Presentacion Costa Rica 2024 - evento Protégeles
KELA Presentacion Costa Rica 2024 - evento ProtégelesKELA Presentacion Costa Rica 2024 - evento Protégeles
KELA Presentacion Costa Rica 2024 - evento Protégeles
 
Trabajo Mas Completo De Excel en clase tecnología
Trabajo Mas Completo De Excel en clase tecnologíaTrabajo Mas Completo De Excel en clase tecnología
Trabajo Mas Completo De Excel en clase tecnología
 

Tutorial

  • 1.  
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7. El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’
  • 8. El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800
  • 9. El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600
  • 10. El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600 scene.autoscale = 0
  • 11. El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600 scene.autoscale = 0 scene.range = (100,100,100)
  • 12. El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600 scene.autoscale = 0 scene.range = (100,100,100) scene.center = (50,40,0)
  • 13. El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600 scene.autoscale = 0 scene.range = (100,100,100) scene.center = (50,40,0) ball = sphere(pos=(0,2,0),radius=2, color=color.green)
  • 14. El ejercicio del proyecto esta basado en principios físicos de matemática -el primer paso a hacer es : insertar los comandos para representar el ejercicio físico From visual import ‘’ scene.width = 800 scene.height = 600 scene.autoscale = 0 scene.range = (100,100,100) scene.center = (50,40,0) ball = sphere(pos=(0,2,0),radius=2, color=color.green) ground = box(pos=(50,-1,0),size=(100,2,10))
  • 15. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2
  • 16. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s
  • 17. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees
  • 18. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees angle = angle * (pi/180) # converted to radians
  • 19. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp
  • 20. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp
  • 21. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore
  • 22. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin
  • 23. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin # adj = hyp * cos
  • 24. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin # adj = hyp * cos VelocityY = velocity * sin(angle)
  • 25. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin # adj = hyp * cos VelocityY = velocity * sin(angle) VelocityX = velocity * cos(angle)
  • 26. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin # adj = hyp * cos VelocityY = velocity * sin(angle) VelocityX = velocity * cos(angle) seconds = 0
  • 27. -el segundo paso es : condicionar el problema físico gravity = 9.8 # m/s**2 velocity = 25 # m/s angle = 45 # degrees angle = angle * (pi/180) # converted to radians # sin = opp / hyp # cos = adj / hyp # therefore # opp = hyp * sin # adj = hyp * cos VelocityY = velocity * sin(angle) VelocityX = velocity * cos(angle) seconds = 0 dt = .01
  • 28. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished:
  • 29. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt
  • 30. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2
  • 31. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2
  • 32. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds
  • 33. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0)
  • 34. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0) if ballY - 2 <= 0:
  • 35. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0) if ballY - 2 <= 0: finished = True
  • 36. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0) if ballY - 2 <= 0: finished = True print &quot;angle thrown: &quot; + str(angle)
  • 37. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0) if ballY - 2 <= 0: finished = True print &quot;angle thrown: &quot; + str(angle) print &quot;seconds in flight: &quot; + str(seconds)
  • 38. -el tercer paso : condicionar la primera materia print &quot;initial velocity: &quot; + str(velocity) finished = False while not finished: rate(100) # go thru the loop no more than 100 times/s seconds += dt # position equation: y(t) = y0 + v0*t + .5 * a * t**2 ballY = 2 + VelocityY * seconds - .5 * gravity * seconds**2 ballX = VelocityX * seconds ball.pos = vector(ballX,ballY,0) if ballY - 2 <= 0: finished = True print &quot;angle thrown: &quot; + str(angle) print &quot;seconds in flight: &quot; + str(seconds) print &quot;distance in the x direction: &quot; + str(ballX)