answersLogoWhite

0

Major recommendation is not to mix any grease, if you want to change grease type, best way is make a deep clean up and after it use different grease.

Best regards

J. Graciano

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Esso unirex n2 n3 same to National M3 Grease?

Dear Sir Esso Unirex n2,n3 & S2 Grease Equivalent to National MP3 Grease


What kind of Esso grease is the same as Shell Alvania RS?

Unirex N2 is close to the equivalent of Alvania R2


What kind of shell grease is the same as unirex N2?

Wicth shell grease can be equivalent with Mobil Unirex N 3?


What kind of TOTAL grease is the same as Unirex N2?

Ceran HV, Ceran HVA, Ceran MS


Esso unirex n2 and n3 greas are same to national M3 grease?

although I don't aspire to be an expert on Grease I can tell you from experience that if you mix different manufacturers greases you can have trouble even if they are equivalent grease types. The purchase department at the company I worked at changed supplier, and the maintenance people started to use the equivalent grease. I only got involved when the bearing started to get hot. Needless to say as this was an especially critical item of plant, after 1 and a half days of lost production and 1300 workers sent home we would never mix grease types again.


Are there infinitely many primes of the form n2-1 and n2-2 and n2-3 and n2-4?

n2-1 and n2-4 are trivial cases because of n2-m2=(n-m)(n+m). So the only prime of the form n2-1 is 3 and of the form n2-4 is 5.


What is the formula for the sum of the series r(1/n2-1/n2)?

The formula for the sum of the series r(1/n2-1/n2) is r(1-1/n2).


What is the pmf of trinomial distribution?

P(x=n1,y=n2) = (n!/n1!*n2!*(n-n1-n2)) * p1^n1*p2^n2*(1-p1-p2) where n1,n2=0,1,2,....n n1+n2<=n


What is the oxidation number for N2?

0 in N2


What is oxidation number for N2?

0 in N2


What is n2 in math?

n x n = n2


Codings for coprime number in c?

#include<stdio.h> int main(){ int n1,n2; printf("\nEnter two numbers:"); scanf("%d %d",&n1,&n2); while(n1!=n2){ if(n1>=n2) n1=n1-n2; else n2=n2-n1; } printf("\nGCD=%d",n1); return 0; }