Categories
Tipteh

Servo Sizing

Software for servo sizing:

Sigma Select
Nicer and more powerfull, but without calculation in doc

Signa Size
etter for initial calculations at least for me…

Videos:

Selection of breaking resistor

External braking resistor minimal resistance is in last column, and power should be calculated… Usualy for non generator uses half of motor power should be much more than enougth… Usualy…
Categories
Tipteh

Variabile frequency drives

Manuals for drives

Webinar

Complete webinar video

Now Technical guides (big ones not leaflet you get with drive) can be downloaded here, download them, use them they are your friend.

J1000 Instruction manual (1000_TM_EN_SIEP_C710606_32A)

V1000 instruction manual (1000_TM_EN_SIEP_C710606_19B_1_0

GA500 Instruction manual (GA500_Technical_Manual)

A1000 Instruction manual(A1000 TM_EN_SIEP_C710616_27E_4_0)

GA700 Instruction manual (GA700 Technical Manual)

All videos can be found on Yaskawa and TI learning youtube chanels
A lot of other useful wideos can be found on Yaskawa America you tube channel… more or less everything you need…

https://www.youtube.com/user/YaskawaYEA/playlists

Induction motors (asinhroni motori)

Good introductory video from Yaskawa, and slides can be found in next video and PDF.

Induction motors basics video

Servo motor… This is not induction motor

This is single phase AC motor

This is AC motor plate with aditional data on gear box

I beleive that this is taho but not sure, anyway not a motor plate…
Primer Plocice iz simensovog kataloga

Now about drives…

Options

  • J vs V vs A
  • Vector vs VF
  • Wiring
  • Parametars

    Pitanja koja bi mogli da pokrijemo:

Yaskawa is reliable under heavy industrial conditions

This servo drives have worked before cleaning and continued to work for years after

Vector controll theory

200/400V naponi i ucestanosti na ulazu
ulaz i topologija….
plocica na motoru i sta ona znaaci
230 400 690V

broj polova

momenat brzina snaga cos fi i korisno dejstvo snaga na ulazu snaga na izlazu i struje motora…

kabl prema motoru sirm i ostalo
filter na izlazu…

filter na ulazu emc i simetrije

Kad kupac posalje plocicu sta raditi…
kad pita za aplikaciju sta je eophodno za preporuku frekventnog

Dodatna oprema
otpornik
emc filter
komunikacije
enkoderi

Analogni ulazi

Analogni izlazi

prikazi na ekranu

Simulator

izvodi za upravljanje
izvodi za safety

Osnovni parametri:
VF kriva i kke motora
c i d parametri

osnovni B parametri
Osnovni H parametri

Osnovni L parametri

Poveci motor ali smo ja i munja bili na visini zadatka (dizalica 35 tona na brodogradilistu…)
Categories
Project Euler

Even Fibonacci numbers – Problem2

Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:

1, 2, 3, 5, 8, 13, 21, 34, 55, 89, …

By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms.

program language (python)
In Python :

suma,sumaPre,konačanSuma = 3,2,0

while(sumaPre<4000000):
suma+=sumaPre
sumaPre=suma-sumaPre
if suma % 2 == 0:
konačanSuma+=suma

print (konačanSuma + 2)

second problem is done 🙂 .

problem 3

The prime factors of 13195 are 5, 7, 13 and 29.

What is the largest prime factor of the number 600851475143 ?

thank you for watching.

Categories
Project Euler

Multiples of 3 and 5 Problem 1

If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.Find the sum of all the multiples.

program language (c++,python)
in c++:

int zbir = 0;
int b = 8456;
int i;
int m;
int n;
void setup() {
// put your setup code here, to run onc
Serial.begin(115200);
}

void loop() {
// put your main code here, to run repeatedly:
long suma=0;
Serial.println (i);
for (i =0;i<b;i=i+3) {
suma+=i;
}
for (m =0;m<b;m=m+5) {
suma+=m;
}
for (n =15;n<b;n+=15) {
suma-=n;
}

Serial.println (suma);

Serial.readString();
}

in python:

suma,tri,pet = 0,0,0
b=1000
for i in range (1,b):
if i % 3 == 0:
suma+=i

for m in range (1,b):
if m % 5 == 0:
suma+=m

for n in range (1,b):
if n % 15 == 0:
suma-=n

print (suma)

first problem is done 🙂 .

Problem 2

Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:

1, 2, 3, 5, 8, 13, 21, 34, 55, 89, …

By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms.

Thank you for watching.

Categories
Project Euler

Problem 1 – Multiples of 3 and 5