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

Sigma Select
Nicer and more powerfull, but without calculation in doc
Signa Size
etter for initial calculations at least for me…

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
Good introductory video from Yaskawa, and slides can be found in next video and PDF.
![]() 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… |


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…) |
![]() ![]() |
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)
The prime factors of 13195 are 5, 7, 13 and 29.
What is the largest prime factor of the number 600851475143 ?
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();
}
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)
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.