Board logo

標題: [綜合討論] 水箱出現黑渣 [列印本頁]

作者: j66    時間: 2020-3-26 01:50 PM     標題: 水箱出現黑渣

請問各位車友

你們的車水箱內也有這種黑色渣嗎?





作者: axea    時間: 2020-3-26 03:17 PM

水路生鏽了,再不處理水箱gg...
作者: vag    時間: 2020-3-30 06:05 AM

最近有去換過水龜?
作者: j66    時間: 2020-3-30 10:50 PM

有換, 當時在換之前就已經出現了, 結果技師在換水龜時換了一個新的副水箱給我, 我感到很奇怪副水箱沒漏水為何要換新的。
作者: j66    時間: 2020-3-30 10:56 PM

axea 發表:
水路生鏽了,再不處理水箱gg...

這不可能, 我水箱水都是自己換, 每次換都用氣槍吹乾水道, 也不用自來洗水箱和水道, 是放完水後吹乾水道, 閉上下水管後直接倒 AF850 。再跑一段高速公路, 到休息站再補充AF850。全程不加水。

去保養場時, 我也用黑色電火布把水箱水蓋和雨刷水蓋纏住, 交代保養廠不能加任何東西進去, 不能補充自來水。


所以不可能是生鏽。
作者: j66    時間: 2020-3-31 01:20 AM

該不會是水箱精有問題!?
作者: 豬傻弟    時間: 2020-3-31 11:00 AM

j66 發表:
請問各位車友

你們的車水箱內也有這種黑色渣嗎? ...

09年FOCUS TDCI 上個月看也有,而且很硬摳不掉,好像是有乾的地方才有
作者: vag    時間: 2020-4-1 07:51 PM

墊片膠
作者: j66    時間: 2021-12-20 10:47 PM

應是副水箱蓋快壞掉的前兆,


副水箱蓋壞掉會蓋子和中間部分分離。
作者: kfs    時間: 2021-12-22 10:37 AM

之前也有很像你的狀況 還越來越多粉渣出現 最後是水幫浦漏水換掉後就沒出現類似的雜質了
作者: j66    時間: 2022-6-20 12:53 AM

PART A.
https://byjus.com/physics/pulse-width-modulation/

https://www.digikey.tw/zh/blog/pulse-width-modulation

https://www.digikey.com/en/blog/pulse-width-modulation



PART B.
[筆記]Arduino實驗五WM調控

#include <Servo.h>

#define PIN_VR      A1
#define PIN_SERVO   3
#define PIN_PWM     6
#define PIN_LED     13

Servo myservo;  // create servo object to control a servo

int val;    // variable to read the value from the analog pin

void setup() {
  // put your setup code here, to run once:
  
  pinMode( PIN_VR,    INPUT );
  pinMode( PIN_SERVO, OUTPUT );
  pinMode( PIN_PWM,   OUTPUT );
  pinMode( PIN_LED,   OUTPUT );

  // attaches the servo on pin 9 to the servo
  myservo.attach( PIN_SERVO );  

  Serial.begin( 9600 );

  delay( 100 );
}

void loop() {

  static int cnt = 0;
  static int flag_led = 0;
  
  // put your main code here, to run repeatedly:
  // reads the value of the potentiometer (value between 0 and 1023)
  val = analogRead( PIN_VR );            
  Serial.println( val );
  
  analogWrite( PIN_PWM,     val/4 );  
  
  // scale it to use it with the servo (value between 0 and 180)
  val = map(val, 0, 1023, 500, 1500);   
   
  // sets the servo position according to the scaled value
  myservo.writeMicroseconds( val );         

  cnt++;

  if( cnt >= 25 ) { flag_led ^= 1; cnt = 0; }
  digitalWrite( PIN_LED, flag_led );
  
  delay(20);                           
}