top of page
Buscar
Foto del escritorJunior Jesús Aquino Vara

EVAP2-FORMULAS SECUENCIALES EN DEVC++

Actualizado: 23 mar 2019

  • FORMULAS DE FISICA: MOVIMIENOS RECTILINEO UNIFORMEMENTE ACELERADO



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



  • FORMULAS DE CIRCUITOS ELECTRICOS: INDUCTANCIAS






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



382 visualizaciones0 comentarios

Comments


bottom of page