q:ts-670 replacement rear fan ?

Printers, HDDs, USB/eSATA drives, 3rd-party programs
Post Reply
reiteravi
New here
Posts: 5
Joined: Tue Sep 16, 2014 8:31 pm

q:ts-670 replacement rear fan ?

Post by reiteravi »

one of the rear fans failed
as the original model was out of stock
replaced it by 92mm fan i already had
but it has different speed and cfm
so probably disturbing the air flow
can i make one fan push air and the other exhaust ?
or is it still more efficient to let them both exhaust ?
i feel like different speeds can cause turbulences
i ordered the original fan but don't know when it arrives
User avatar
pwilson
Guru
Posts: 22533
Joined: Fri Mar 06, 2009 11:20 am
Location: Victoria, BC, Canada (UTC-08:00)

Re: q:ts-670 replacement rear fan ?

Post by pwilson »

reiteravi wrote:one of the rear fans failed
as the original model was out of stock
replaced it by 92mm fan i already had
but it has different speed and cfm
so probably disturbing the air flow
can i make one fan push air and the other exhaust ?
or is it still more efficient to let them both exhaust ?
i feel like different speeds can cause turbulences
i ordered the original fan but don't know when it arrives
I recently upgraded the Fan in my TS-470 Pro to a Noctua NF-B9 PWM 92mm (4-wire) fan.

Patrick M. Wilson
Victoria, BC Canada
QNAP TS-470 Pro w/ 4 * Western Digital WD30EFRX WD Reds (RAID5) - - Single 8.1TB Storage Pool FW: QTS 4.2.0 Build 20151023 - Kali Linux v1.06 (64bit)
Forums: View My Profile - Search My Posts - View My Photo - View My Location - Top Community Posters
QNAP: Turbo NAS User Manual - QNAP Wiki - QNAP Tutorials - QNAP FAQs

Please review: When you're asking a question, please include the following.
reiteravi
New here
Posts: 5
Joined: Tue Sep 16, 2014 8:31 pm

Re: q:ts-670 replacement rear fan ?

Post by reiteravi »

thanks
i also used this one but as ts-670 has 2 fans the different speeds probably makes ventilation less efficient
i see 5-7 deg. rise to about 50 for the cpu (upgraded to i7)
and 45 for the hdd even while idle
User avatar
pwilson
Guru
Posts: 22533
Joined: Fri Mar 06, 2009 11:20 am
Location: Victoria, BC, Canada (UTC-08:00)

Re: q:ts-670 replacement rear fan ?

Post by pwilson »

reiteravi wrote:thanks
i also used this one but as ts-670 has 2 fans the different speeds probably makes ventilation less efficient
i see 5-7 deg. rise to about 50 for the cpu (upgraded to i7)
and 45 for the hdd even while idle

Please provide output for:

Code: Select all

#!/bin/sh
#
# Check System and HDD Temperatures
# 
echo "System Temperature: $(/sbin/getsysinfo systmp)"
echo "CPU Temperature:    $(/sbin/getsysinfo cputmp)"
echo "HDD1 Temperature:   $(/sbin/getsysinfo hdtmp 1)"
echo "HDD2 Temperature:   $(/sbin/getsysinfo hdtmp 2)" 
echo "HDD3 Temperature:   $(/sbin/getsysinfo hdtmp 3)" 
echo "HDD4 Temperature:   $(/sbin/getsysinfo hdtmp 4)" 
echo "System FAN1 Speed:  $(/sbin/getsysinfo sysfan 1)"
echo "System FAN2 Speed:  $(/sbin/getsysinfo sysfan 2)"

Patrick M. Wilson
Victoria, BC Canada
QNAP TS-470 Pro w/ 4 * Western Digital WD30EFRX WD Reds (RAID5) - - Single 8.1TB Storage Pool FW: QTS 4.2.0 Build 20151023 - Kali Linux v1.06 (64bit)
Forums: View My Profile - Search My Posts - View My Photo - View My Location - Top Community Posters
QNAP: Turbo NAS User Manual - QNAP Wiki - QNAP Tutorials - QNAP FAQs

Please review: When you're asking a question, please include the following.
reiteravi
New here
Posts: 5
Joined: Tue Sep 16, 2014 8:31 pm

Re: q:ts-670 replacement rear fan ?

Post by reiteravi »

after 5 min no load:
[~] # echo "System Temperature: $(/sbin/getsysinfo systmp)"
System Temperature: 46 C/114 F
[~] # echo "CPU Temperature: $(/sbin/getsysinfo cputmp)"
CPU Temperature: 54 C/129 F
[~] # echo "HDD1 Temperature: $(/sbin/getsysinfo hdtmp 1)"
HDD1 Temperature: 35 C/95 F
[~] # echo "HDD2 Temperature: $(/sbin/getsysinfo hdtmp 2)"
HDD2 Temperature: 34 C/93 F
[~] # echo "HDD3 Temperature: $(/sbin/getsysinfo hdtmp 3)"
HDD3 Temperature: 33 C/91 F
[~] # echo "HDD4 Temperature: $(/sbin/getsysinfo hdtmp 4)"
HDD4 Temperature: 32 C/89 F
[~] # echo "HDD5 Temperature: $(/sbin/getsysinfo hdtmp 5)"
HDD5 Temperature: 32 C/89 F
User avatar
pwilson
Guru
Posts: 22533
Joined: Fri Mar 06, 2009 11:20 am
Location: Victoria, BC, Canada (UTC-08:00)

Re: q:ts-670 replacement rear fan ?

Post by pwilson »

reiteravi wrote:after 5 min no load:
[~] # echo "System Temperature: $(/sbin/getsysinfo systmp)"
System Temperature: 46 C/114 F
[~] # echo "CPU Temperature: $(/sbin/getsysinfo cputmp)"
CPU Temperature: 54 C/129 F
[~] # echo "HDD1 Temperature: $(/sbin/getsysinfo hdtmp 1)"
HDD1 Temperature: 35 C/95 F
[~] # echo "HDD2 Temperature: $(/sbin/getsysinfo hdtmp 2)"
HDD2 Temperature: 34 C/93 F
[~] # echo "HDD3 Temperature: $(/sbin/getsysinfo hdtmp 3)"
HDD3 Temperature: 33 C/91 F
[~] # echo "HDD4 Temperature: $(/sbin/getsysinfo hdtmp 4)"
HDD4 Temperature: 32 C/89 F
[~] # echo "HDD5 Temperature: $(/sbin/getsysinfo hdtmp 5)"
HDD5 Temperature: 32 C/89 F
Not very helpful without the Fan information. Try this instead:

Code: Select all

#!/bin/sh
#
# Check System and HDD Temperatures
# 
echo "System Temperature: $(/sbin/getsysinfo systmp)"
echo "CPU Temperature:    $(/sbin/getsysinfo cputmp)"
echo "HDD1 Temperature:   $(/sbin/getsysinfo hdtmp 1)"
echo "HDD2 Temperature:   $(/sbin/getsysinfo hdtmp 2)"
echo "HDD3 Temperature:   $(/sbin/getsysinfo hdtmp 3)"
echo "HDD4 Temperature:   $(/sbin/getsysinfo hdtmp 4)"
echo "HDD5 Temperature:   $(/sbin/getsysinfo hdtmp 5)"
echo "HDD6 Temperature:   $(/sbin/getsysinfo hdtmp 6)"
echo "System FAN1 Speed:  $(/sbin/getsysinfo sysfan 1)"
echo "System FAN2 Speed:  $(/sbin/getsysinfo sysfan 2)"
echo "NAS Uptime:         $(/usr/bin/uptime)"    
#done
Here is something to compare to:

Code: Select all

admin@NASTY2:~/bin# #!/bin/sh
admin@NASTY2:~/bin# #
admin@NASTY2:~/bin# # Check System and HDD Temperatures
admin@NASTY2:~/bin# # 
admin@NASTY2:~/bin# echo "System Temperature: $(/sbin/getsysinfo systmp)"
System Temperature: 41 C/105 F
admin@NASTY2:~/bin# echo "CPU Temperature:    $(/sbin/getsysinfo cputmp)"
CPU Temperature:    44 C/111 F
admin@NASTY2:~/bin# echo "HDD1 Temperature:   $(/sbin/getsysinfo hdtmp 1)"
HDD1 Temperature:   32 C/89 F
admin@NASTY2:~/bin# echo "HDD2 Temperature:   $(/sbin/getsysinfo hdtmp 2)"
HDD2 Temperature:   31 C/87 F
admin@NASTY2:~/bin# echo "HDD3 Temperature:   $(/sbin/getsysinfo hdtmp 3)"
HDD3 Temperature:   33 C/91 F
admin@NASTY2:~/bin# echo "HDD4 Temperature:   $(/sbin/getsysinfo hdtmp 4)"
HDD4 Temperature:   31 C/87 F
admin@NASTY2:~/bin# echo "HDD5 Temperature:   $(/sbin/getsysinfo hdtmp 5)"
HDD5 Temperature:   -- C/-- F
admin@NASTY2:~/bin# echo "HDD6 Temperature:   $(/sbin/getsysinfo hdtmp 6)"
HDD6 Temperature:   -- C/-- F
admin@NASTY2:~/bin# echo "System FAN1 Speed:  $(/sbin/getsysinfo sysfan 1)"
System FAN1 Speed:  1734 RPM
admin@NASTY2:~/bin# echo "System FAN2 Speed:  $(/sbin/getsysinfo sysfan 2)"
System FAN2 Speed:  
admin@NASTY2:~/bin# echo "NAS Uptime:         $(/usr/bin/uptime)"    
NAS Uptime:          10:17:48 up 12 days, 16:15, load average: 0.47, 0.41, 0.43
admin@NASTY2:~/bin# #done
Some of this output is ugly from mine, as my NAS only has 4 drives, and only 1 fan.
I'm still using the original i3 processor:

Code: Select all

cat /proc/cpuinfo | grep model\ name
model name	: Intel(R) Core(TM) i3-3220 CPU @ 3.30GHz
model name	: Intel(R) Core(TM) i3-3220 CPU @ 3.30GHz
model name	: Intel(R) Core(TM) i3-3220 CPU @ 3.30GHz
model name	: Intel(R) Core(TM) i3-3220 CPU @ 3.30GHz

Patrick M. Wilson
Victoria, BC Canada
QNAP TS-470 Pro w/ 4 * Western Digital WD30EFRX WD Reds (RAID5) - - Single 8.1TB Storage Pool FW: QTS 4.2.0 Build 20151023 - Kali Linux v1.06 (64bit)
Forums: View My Profile - Search My Posts - View My Photo - View My Location - Top Community Posters
QNAP: Turbo NAS User Manual - QNAP Wiki - QNAP Tutorials - QNAP FAQs

Please review: When you're asking a question, please include the following.
reiteravi
New here
Posts: 5
Joined: Tue Sep 16, 2014 8:31 pm

Re: q:ts-670 replacement rear fan ?

Post by reiteravi »

sorry slipped through cut/paste
on startup:
fan 1 607 (noctua)
fan 2 1180 (original)

after a few min
fan 1 1080
fan2 2140

also tried manual tuning the fans
a little better but fans are on higher rpm all the time
which is overkill
i might find another noctua and try with 2 identical fans
the noctua are usually more efficient and almost silent
User avatar
pwilson
Guru
Posts: 22533
Joined: Fri Mar 06, 2009 11:20 am
Location: Victoria, BC, Canada (UTC-08:00)

Re: q:ts-670 replacement rear fan ?

Post by pwilson »

reiteravi wrote:sorry slipped through cut/paste
on startup:
fan 1 607 (noctua)
fan 2 1180 (original)

after a few min
fan 1 1080
fan2 2140

also tried manual tuning the fans
a little better but fans are on higher rpm all the time
which is overkill
i might find another noctua and try with 2 identical fans
the noctua are usually more efficient and almost silent
Comparing just RPM doesn't prove a lot to be honest. It is really more about CFM. (Cubic Feet per Minute).

Anyway, I'm not reading through multiple posts for this. You should have run the new script and provided the output. Seeing all the information in one place makes quoting it far easier as far as discussing it goes. I even re-wrote it for you to provide info from all 5 drives and both fans.

As long as the System and HDD temps are good you should be fine.

Patrick M. Wilson
Victoria, BC Canada
QNAP TS-470 Pro w/ 4 * Western Digital WD30EFRX WD Reds (RAID5) - - Single 8.1TB Storage Pool FW: QTS 4.2.0 Build 20151023 - Kali Linux v1.06 (64bit)
Forums: View My Profile - Search My Posts - View My Photo - View My Location - Top Community Posters
QNAP: Turbo NAS User Manual - QNAP Wiki - QNAP Tutorials - QNAP FAQs

Please review: When you're asking a question, please include the following.
reiteravi
New here
Posts: 5
Joined: Tue Sep 16, 2014 8:31 pm

Re: q:ts-670 replacement rear fan ?

Post by reiteravi »

on startup:
System Temperature: 44 C/111 F
CPU Temperature: 48 C/118 F
HDD1 Temperature: 34 C/93 F
HDD2 Temperature: 33 C/91 F
HDD3 Temperature: 33 C/91 F
HDD4 Temperature: 32 C/89 F
HDD5 Temperature: 31 C/87 F
HDD6 Temperature: 0 C/32 F
System FAN1 Speed: 506 RPM
System FAN2 Speed: 1180 RPM
NAS Uptime: 21:17:39 up 1:45, load average: 0.18, 0.13, 0.13

after 5 min:
System Temperature: 46 C/114 F
CPU Temperature: 51 C/123 F
HDD1 Temperature: 34 C/93 F
HDD2 Temperature: 33 C/91 F
HDD3 Temperature: 32 C/89 F
HDD4 Temperature: 31 C/87 F
HDD5 Temperature: 32 C/89 F
HDD6 Temperature: 0 C/32 F
System FAN1 Speed: 506 RPM
System FAN2 Speed: 1170 RPM
NAS Uptime: 21:24:41 up 1:52, load average: 0.53, 0.60, 0.34

with some load and manual fan spedd (loud)
System Temperature: 50 C/122 F
CPU Temperature: 61 C/141 F
HDD1 Temperature: 35 C/95 F
HDD2 Temperature: 34 C/93 F
HDD3 Temperature: 33 C/91 F
HDD4 Temperature: 32 C/89 F
HDD5 Temperature: 32 C/89 F
HDD6 Temperature: 0 C/32 F
System FAN1 Speed: 1625 RPM
System FAN2 Speed: 2521 RPM
NAS Uptime: 21:33:24 up 2:01, load average: 4.12, 2.40, 1.16

all this info is familiar and having modded my system i know the hardware limits
but having higher temperature than with stock fan is annoying
anyway thanks for your help , really
Post Reply

Return to “Hardware & Software Compatibility”