FORMULAS DE FISICA: MOVIMIENOS RECTILINEO UNIFORMEMENTE ACELERADO
![](https://static.wixstatic.com/media/976323_5233c403690645b5bea700e1833f5007~mv2.png/v1/fill/w_446,h_525,al_c,q_85,enc_avif,quality_auto/976323_5233c403690645b5bea700e1833f5007~mv2.png)
CODIGO C++
#include <iostream>
#include <cmath>
#include <math.h>
using namespace std;
int main()
{
//FORMULA DE FISICA:MRUA
//DECLARACION
int Vf, Vi, t;
double a, h, d;
//Asignacion
cout<<"Ingrese la Velocidad Final:"; cin>>Vf;
cout<<"Ingrese el Velocidad Inicial:"; cin>>Vi;
cout<<"Ingrese el tiempo:"; cin>>t;
//Proceso
a = (Vf-Vi)/t;
h = Vi*t+(a*pow(t,2))/2;
d = ((Vi+Vf)/2)*t;
//Resultado
cout<<"La aceleracion es:" << a << endl;
cout<<"La altura es:"<< h << endl;
cout<<"La distancia es:"<< d << endl;
//system ("pause");
return 0;
} //Fin del Programa
![](https://static.wixstatic.com/media/976323_509e928c008243a7bdb69e7f25cbe499~mv2.png/v1/fill/w_980,h_651,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/976323_509e928c008243a7bdb69e7f25cbe499~mv2.png)
FORMULAS DE CIRCUITOS ELECTRICOS: INDUCTANCIAS
![](https://static.wixstatic.com/media/976323_9f4ea59e594248d1b209b687a7c2e8e3~mv2.png/v1/fill/w_487,h_442,al_c,q_85,enc_avif,quality_auto/976323_9f4ea59e594248d1b209b687a7c2e8e3~mv2.png)
![](https://static.wixstatic.com/media/976323_9b4fed92944a416c9a8c7909308575cc~mv2.png/v1/fill/w_469,h_374,al_c,q_85,enc_avif,quality_auto/976323_9b4fed92944a416c9a8c7909308575cc~mv2.png)
![](https://static.wixstatic.com/media/976323_2a1a5ba2aa394e508ba862c14e7f9fc8~mv2.jpg/v1/fill/w_400,h_214,al_c,q_80,enc_avif,quality_auto/976323_2a1a5ba2aa394e508ba862c14e7f9fc8~mv2.jpg)
CODIGO C++
#include <iostream>
#include <cmath>
#include <math.h>
using namespace std;
int main()
{
//FORMULA DE CIRCUITOS ELETRICOS: INDUCTANCIAS
//DECLARACION
int Num_Espiras, I, Perm_Mag, Area_Secc, Long_Bobina, Diferencial_I, Diferencial_Tiempo;
double Vl, L, Int_Campo_Amp_Vuelta_Metro;
//Asignacion
cout<<"Ingrese el Numero de Espiras:"; cin>>Num_Espiras;
cout<<"Ingrese la Permeabilidad Magnetica del Material:"; cin>>Perm_Mag;
cout<<"Ingrese el Area de la Seccion Transversal del Nucleo:"; cin>>Area_Secc;
cout<<"Ingrese la Longitud de Lineas de Flujo o de Bobina:"; cin>>Long_Bobina;
cout<<"Ingrese la Diferencial de Corriente:"; cin>> Diferencial_I;
cout<<"Ingrese la Diferencial de Tiempo:"; cin>> Diferencial_Tiempo;
cout<<"Ingrese la Intensidad de Corriente:"; cin>> I;
//Proceso
L = (pow(Num_Espiras,2)*Perm_Mag*Area_Secc)/Long_Bobina;
Vl = L*(Diferencial_I)/(Diferencial_Tiempo);
Int_Campo_Amp_Vuelta_Metro = (Num_Espiras*I)/Long_Bobina;
//Resultado
cout<<"La Inductancia es:" << L << endl;
cout<<"La Diferencia Potencial del Inductor es:"<< Vl << endl;
cout<<"La Intensidad del Campo Amperio-Vuelta /metro es:"<< Int_Campo_Amp_Vuelta_Metro << endl;
//system ("pause");
return 0;
} //Fin del Programa
![](https://static.wixstatic.com/media/976323_0c137b2b11984aa3b294db2643c8ffd5~mv2.png/v1/fill/w_980,h_509,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/976323_0c137b2b11984aa3b294db2643c8ffd5~mv2.png)
Comments