search for: mwh

Displaying 20 results from an estimated 22 matches for "mwh".

Did you mean: mw
2017 Dec 26
1
Time Series with Neural Networks
...cast? And my MASE score (6.95 in the Test set) is not good. Could be related to shortness of training set? The Code: library(zoo) library(readxl) setwd("C:/Users/emrek/Dropbox/2017-2018 Master Thesis/DATA") epias <- read_excel("eski.epias.xlsx") nPTF <- epias$`PTF (TL/MWh)` nSMF<- epias$`SMF(TL/MWh)` nC<- epias$`TT(MWh)` nEAK<- epias$`EAK-Toplam (MWh)` nTP<- epias$`Toplam (MWh)` times <- seq(from=as.POSIXct("2015-12-18 00:00:00"), to=as.POSIXct("2017-10-24 23:00:00"), by="hour") mydata <- rnorm(length(times)) PTF...
2002 Jun 14
10
Opposite of Samba (Anti-Samba?)
Is there a package to do the opposite of Samba? I.e. I want to use (mount) Win filesystems from a Unix client. -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Rick von Richter Production Support Manager Voice: 858-831-2222 rickv@mwh.com Maintenance Warehouse/Home Depot Fax: 858-831-2221 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The box says: Win98, WinNT or BETTER. That's why I installed Linux. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -------------- next p...
2023 Nov 15
1
What is the arduino sub-driver intended to be used for?
Kelly Byrd <kbyrd at memcpy.com> writes: > Making progress on this PR. I have question about storing and checking > state in a subdriver > HID Power Devices can a "UPS.PowerSummary.CapacityMode" value. According to > the spec, the values are: > 0: maH > 1: mwH > 2: percent (%) > 3: Boolean support only (OK or failed) > > Grep'ing the source, nothing makes use of this now (some subdrivers have it > mapped to unmapped.ups.powersummary.capacitymode or something similar) and > many of the HID UPS drivers assume CapacityMode 2 (they inte...
2023 Nov 15
1
What is the arduino sub-driver intended to be used for?
You have the device side right. Devices have "UPS.PowerSummary.CapacityMode" (are the next three in %, mAh, or mWh? "UPS.PowerSummary.FullChargeCapacity" "UPS.PowerSummary.RemainingCapacity" "UPS.PowerSummary.RemainingCapacityLimit" "UPS.PowerSummary.WarningCapacityLimit" According to nut-names.txt, NUT has: battery.charge | Battery charge (percent)...
2006 Nov 29
0
Problem with PPC packages on Intel Mac
...ive or otherwise (presumably if there isn't an Intel native binary available) allowing PPC-only packages to run under Rosetta emulation? A less common error message goes like this: Error in dyn.load(x, as.logical(local), as.logical(now)) : unable to load shared library '/Users/mwh/Library/R/library/mvtnorm/libs/i386/mvtnorm.so': dlopen(/Users/mwh/Library/R/library/mvtnorm/libs/i386/mvtnorm.so, 6): Library not loaded: /Library/Frameworks/R.framework/Versions/2.3/Resources/lib/libgfortran.0.dyl ib Referenced from: /Users/mwh/Library/R/library/mvtnorm/libs/i386/...
2002 Jul 20
0
libvorbis 1.0 compile time err.
.../mnt/gnu/source/console/libs/libvorbis/libvorbis-1.0/examples' make: *** [all-recursive] Error 1 I use Linux-2.4.18, gcc-3.1, glibc-2.2.5 Hope to find a solution .. it would be nice to try out vorbis. -- Martin Willemoes Hansen -------------------------------------------------------- E-Mail mwh@sysrq.dk Website mwh.sysrq.dk IRC MWH, openprojects -------------------------------------------------------- <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to ...
2007 Dec 09
1
Setting the grid of a graph of timeseries
...} plot.zoo(tab, plot.type="single", panel=my.panel, lty=c(1,2,3,4,5,1), lwd=c(8,2,2,2,2,8), col=c("darkorange", "red2","darkblue","darkblue","green","midnightblue"), xlab=" ",ylab = "euro/MWh",xaxt="n") #################################################################### This code produces a graph with a non-decimal x-axis but by far more (human) readable because ticks corresponds to months exactly (and not to a weird decimal ticking!). I would like to add a vertical...
2023 Nov 15
2
What is the arduino sub-driver intended to be used for?
Making progress on this PR. I have question about storing and checking state in a subdriver HID Power Devices can a "UPS.PowerSummary.CapacityMode" value. According to the spec, the values are: 0: maH 1: mwH 2: percent (%) 3: Boolean support only (OK or failed) Grep'ing the source, nothing makes use of this now (some subdrivers have it mapped to unmapped.ups.powersummary.capacitymode or something similar) and many of the HID UPS drivers assume CapacityMode 2 (they interpret RemainingCapacity, Warn...
2011 Jul 08
2
[LLVMdev] Best location in code generation for insertion of instrumentation to measure stack depth?
Hi list, I am trying to implement the technique outlined in the following paper: http://www.cs.umd.edu/~mwh/papers/martin10ownership.html in LLVM. My approach so far involves the use of an IR level transform (via runOnFunction) to identify memory loads and stores. One thing I need to do (I am pretty sure I need to do it at least) is automatically mark each stack frame as "owned" by the current...
2011 Jul 08
0
[LLVMdev] Best location in code generation for insertion of instrumentation to measure stack depth?
On 7/8/11 4:09 PM, Andrew Ruef wrote: > Hi list, > > I am trying to implement the technique outlined in the following > paper: http://www.cs.umd.edu/~mwh/papers/martin10ownership.html > <http://www.cs.umd.edu/%7Emwh/papers/martin10ownership.html> in LLVM. > My approach so far involves the use of an IR level transform (via > runOnFunction) to identify memory loads and stores. One thing I need > to do (I am pretty sure I need to...
2011 Jul 08
2
[LLVMdev] Best location in code generation for insertion of instrumentation to measure stack depth?
...ight have been doing something wrong? On Fri, Jul 8, 2011 at 5:21 PM, John Criswell <criswell at illinois.edu> wrote: > On 7/8/11 4:09 PM, Andrew Ruef wrote: > > Hi list, > > I am trying to implement the technique outlined in the following paper: > http://www.cs.umd.edu/~mwh/papers/martin10ownership.html in LLVM. My > approach so far involves the use of an IR level transform (via > runOnFunction) to identify memory loads and stores. One thing I need to do > (I am pretty sure I need to do it at least) is automatically mark each stack > frame as "owned&q...
2011 Jan 09
4
IIS Change Notifications
Good afternoon all, I'm a web developer (c#) who also manages a small hosting environment. Roughly, our configuration is: Two IIS7 (Windows Server 2008 Web) servers which share configuration data and site files from a SMB share located on a ubuntu server. The ubuntu server is currently running 3.0.28a which is quite old, but read on. We've been having a problem with the change
2011 Jul 08
0
[LLVMdev] Best location in code generation for insertion of instrumentation to measure stack depth?
...Criswell <criswell at illinois.edu > <mailto:criswell at illinois.edu>> wrote: > > On 7/8/11 4:09 PM, Andrew Ruef wrote: >> Hi list, >> >> I am trying to implement the technique outlined in the following >> paper: http://www.cs.umd.edu/~mwh/papers/martin10ownership.html >> <http://www.cs.umd.edu/%7Emwh/papers/martin10ownership.html> in >> LLVM. My approach so far involves the use of an IR level >> transform (via runOnFunction) to identify memory loads and >> stores. One thing I need to do...
2012 Jul 09
4
Skipping lines and incomplete rows
I have a text file that has semi-colon separated values. The table is nearly 10,000 by 585. The files looks as follows: ******************************************* First line: Skip this line Second line: skip this line Third line: skip this line variable1 Variable2 Variable3 Variable4 Unit1 Unit2 Unit3 10 0.1 0.01 0.001 20
2005 Jun 16
1
lm and time series: simple question
Hello: This question is partly about R and partly out of my ignorance about time series. I want to regress one time series on another, taking into account the autocorrelation (in an AR1 model) within each series. I am interested in how the standard error changes when the acf is taken into account. I've made both of my datasets into ts objects and used the basic lm function (with
2005 Apr 15
3
PAM authentication
I find it annoying that openssh takes active part in the authentication process when using PAM. Namely, SSH doesn't pass the user's password if the getpwent for the user returns NULL. I use a clever PAM setup that allows nonexisting users to log in if they are succesfully authenticated against a Samba server. When the user logs in for the first time, he's added to the user database
2001 Dec 13
3
Delays opening Excel/Word files off samba shares.
At my work, I've been pushing linux as a server solution for quite some time. They've decided to give it a go, and the main company file server is now a piii 933 with 512Mb RAM, a promise 6 channel RAID5 controller (IDE), and 6 x 80Gb drives. It's running RedHat 7.1 (with the usual kernel updates to 2.4.10), with samba 2.2.1a and the latest Reiser FS... Now at the moment, we
2017 Feb 17
0
EATON 9SX not display battery.charge
...#39;Type: Feature'.) > > From pdcv10.pdf, UPS.BatterySystem.Battery.DesignCapacity should be in > CapacityMode units, and CapacityMode==2 is %. But since CapacityMode is in > UPS.PowerSummary, maybe it refers to UPS.PowerSummary.DesignCapacity instead. > The 18000 might be mAh or mWh. > > It is also possible that one of UPS.PowerSummary.DesignCapacity > or UPS.PowerSummary.FullChargeCapacity was intended to > be RemainingCapacity. You can verify this by forcing the UPS onto battery > power until the front panel displays a charge lower than 100%. > > I do no...
2014 Dec 29
3
EATON 9SX not display battery.charge
Any news? Send dubug with explore one more time in attach 19.12.2014 15:39, Charles Lepple ?????: > On Dec 19, 2014, at 5:16 AM, ??????? ??????? <freemgm at gmail.com> wrote: > >> # /usr/local/libexec/nut/usbhid-ups -DD -a eaton9sx -u root -x explore -x vendorid=0x0463 2>&1 | tee /tmp/eaton9sx-explore.log > Ah, I forgot about the vendorid. The string is a regex which
2023 Nov 13
1
What is the arduino sub-driver intended to be used for?
oh! Ok, I'll go look at all the HID objects reported by the sample code @abratchik has on top-of-tree of his repo and see what makes sense to add to NUT. PR coming this week. On Sun, Nov 12, 2023 at 2:38?PM Jim Klimov <jimklimov+nut at gmail.com> wrote: > Well, the intention generally is to use it as a driver, so the more > abilities the merrier (PR would be welcome) :) >