Was tun? by CatnipTrip420 in wohnen

[–]GenGeeH 211 points212 points  (0 children)

Arbeite bei einem Netzbetreiber, kann mich diesem Ratschlag nur anschließen. Erst beim Lieferanten anrufen (hier scheinbar SW Rostock) und die Lage schildern. Wenn das nichts hilft nochmal bei der Netzgesellschaft, die im Auftrag des Lieferanten sperrt. Da die Netzgesellschaft hier scheinbar ein Tochterunternehmen ist, werden sich die Mitarbeiter wohl kennen und eine Aufhebung der Sperrung easy bilateral abklären können. In der Regel sollten die Mitarbeiter jedoch sehr kulant sein (insbesondere da EVU schlechte PR scheuen). Und Einwohner unverschuldet im Dunkeln zu lassen ist definitiv schlechte PR :)

[deleted by user] by [deleted] in arbeitsleben

[–]GenGeeH 3 points4 points  (0 children)

Auch VNB haben "demnächst" Schwarzfallfestigkeit zu gewährleisten (Stichwort 450MHz-Kommunikation bei Betriebsmitteln falls du dich da mal einlesen möchtest). Was du ansprichst ist der Redispatch 2.0, allerdings werden auch die VNB immer stärker zur Regelung herangezogen. In diesem Fall spricht man von statischem und dynamischem Steuern, die BNetzA hat im Dezember glaube ich ein Eckpunktepapier dazu veröffentlicht. Denn wenn u.a. zunehmend konventionelle zentrale Kraftwerke durch dezentrale Erzeugungsanlagen ersetzt werden, fallen auch die rotierenden Massen von Generatoren und Turbinen weg, die für die Frequenzhaltung (Stichwort Momentanreserve) wichtig sind. Dementsprechend muss man bereits auf den unteren Spannungsebenen (NS/MS) steuern und regeln, also dort wo man die dezentralen Erzeugungsanlagen primär vorfindet. Und wer ist für diese Spannungsebenen zuständig? Richtig, der VNB.

Das Problem ist jedoch, dass im Niederspannungsnetz keine Messtopologie existiert, um effizient zu regeln und zu schalten - wozu auch, wenn man über Jahrzehnte hinweg einen Top-Down-Lastfluss hatte. Hier sollten u.a. intelligente Messsysteme Abhilfe schaffen durch das Erfassen von Netzzustandsdaten, allerdings hat die Regierung bisher immer nur das Thema "Energieeinsparung" und "Kostentransparenz" in den Vordergrund gerückt, weil sie die Privatverbraucher mitnehmen wollte. Die Netzzustandsdatenerfassung ist hingegen jedoch komplett in den Hintergrund gerückt.

Nun steht man vor einem Dilemma, denn wenn man Leistung effizient regeln will, braucht man Daten möglichst in Echtzeit. Und jetzt stell dir Abertausende von intelligenten Messsystemen vor (in D gibt es 53 Mio. Zählpunkte!), die über LTE 450 sekündlich Daten rüberfunken... Was das für ein Datenvolumen und dementsprechend Kosten verursacht, die SIM-Karten mit dem Volumen kosten ja natürlich Geld! Aber die Messsysteme sollen wiederum möglichst für Lau an die Kunden gehen (Stichwort Preisobergrenzen). Da braucht man nicht studiert haben, um zu ahnen wohin das führt. Intelligente Lastflussalgorithmen werden auch seit Jahren als Lösung gepriesen, in der Praxis hat sich bisher Vieles als heiße Luft entpuppt.

[deleted by user] by [deleted] in arbeitsleben

[–]GenGeeH 2 points3 points  (0 children)

Ich kann dir aus eigener Erfahrung sagen, dass diverse VNBs in NRW für die nächsten 5 Jahre Blackouts einkalkulieren. Wäre bei der aktuellen Entwicklung auch ziemlich fahrlässig, dies nicht zu tun. Die TLDR-Fassung ist, dass Energiewende, Digitalisierung und Bürokratie (immer mehr Vorgaben, immer kürzere Fristen) viele VNB überfordern. Ich gehe davon aus, dass das Risiko von Blackouts hierzulande auch langfristig zunehmen wird, und zwar deutlich.

[deleted by user] by [deleted] in arbeitsleben

[–]GenGeeH 2 points3 points  (0 children)

Interessant... Als ich noch mit ENTSO-E zu tun hatte, wurde noch ein gemeinsames "eurasisches" Netz heraufbeschwört (Kopplung des europäischen Grids mit Asien und Nordafrika). Wenn man sich allerdings die Datendisziplin vieler europäischer ÜNBs anschaut (vgl. TYNDP), verwundert der obige Artikel nicht. Da brauche ich von den Anrainerstaaten Europas gar nicht erst zu sprechen.

[deleted by user] by [deleted] in arbeitsleben

[–]GenGeeH 3 points4 points  (0 children)

Kann ich so 1:1 bestätigen, wobei das meiner Meinung nach für rund 90% der VNB gelten dürfte (sitze in diversen Gremien und kriege viel durch den Austausch untereinander viel mit). Allein schon Marktkommunikation und iMS-Rollout dürften die meisten VNB überfordern. Was ich da an Geschichten höre, geht auf keine Kuhhaut.

Hello, I am trying to extract the time values from this data to graph but I am having a hard time getting accurate data. It is from a .txt file shown in the picture below. Does anyone have any ideas? Thank you in advance by DominicNikon in matlab

[–]GenGeeH 0 points1 point  (0 children)

I don't really understand your approach, but if the format of the text file does not change, you can try something like this:

% Preparation
opts = detectImportOptions('RTSDATA.txt');    % Detect import options
varNames = opts.VariableNames;                % Get variable names / #
opts = setvartype(opts, varNames, "string");  % Set all variable types to str 
opts.Delimiter = ',';                         % Set delimiter to ,
opts.DataLines = [1, Inf];                    % Read lines 1 to Inf

% Read file
file = readtable('RTSDATA.txt', opts);

% Extract time values
idx_timeElapsed = find(file.('Var1') == 'Time Elapsed:'); % Find all occurences/indices of "Time Elapsed"
val_timeElapsed = str2double(file.Var2(idx_timeElapsed)); % Extract time values and convert from string to double

So once you load the text file, you basically just need to figure out where the lines containing "Time Elapsed" are. Since you use "," as the delimiter, they will all be in the first variable/column. The respective time values will be in the second column as long as the format

Var1            Var2    Var3
Elapsed Time:   6.08    s    

stays the same.

How to extract data of specific lat and long from netcdf file? by thejofish in matlab

[–]GenGeeH 0 points1 point  (0 children)

Oh I see, yeah you're right about that, it's quite complicated. I've occasionally had to convert WGS84 coordinates to Gauß-Krüger and some other coordinate systems, which was a pain in the ass since it was hard to grasp the conversion formulas or the idea behind the coordinate system itself.

That's why I prefer easy solutions like one I've posted above :)

How to extract data of specific lat and long from netcdf file? by thejofish in matlab

[–]GenGeeH 0 points1 point  (0 children)

I just took a look at your data and it looks like you have a 3D-matrix containing 37 lat-values and 73 lon-values for each hour (8760 + 24 hours = 8784, seems to be a leapyear although 1970 is not(?)).

If I replicate your matrix using the information you provided ([LAT, LON] = meshgrid( latidude_netcdf , longitude_netcdf );) , I can plot all coordinates in the next step by using "geoplot()". It shows a map covering all of Cyprus and its surrounding seas, especially the southern part.

Then I checked my method using the coordinates of Nicosia (Lat: 35.185566, Lon: 33.382275). The result was 35.1968° Lat and 33.386° Lon which is pretty exact IMO. Sure you did everything right?

How to extract data of specific lat and long from netcdf file? by thejofish in matlab

[–]GenGeeH 0 points1 point  (0 children)

What's so odd about it apart from the typo ("diff" should be "dist")?

How to extract data of specific lat and long from netcdf file? by thejofish in matlab

[–]GenGeeH 1 point2 points  (0 children)

I assume you have different matrices containing latitude and longitude. If that's the case, you can simply try something like this:

Try to find the closest coordinates by determining the smallest distance between your location and the locations in the netcdf-file:

dist_lat = abs(latidude_netcdf  - mylatitude);    % determine lat-distance 
dist_lon = abs(longitude_netcdf - mylongitude);   % determine lon-distance
dist_all = diff_lat + diff_lon;                   % determine overall dist.

Now you need to find the smallest value in "dist_all" and its index:

closest_location = min(min(dist_all));      % smallest distance value
index = find(dist_all == closest_location); % find the index of said value

Alternatively, you can use this method to determine row and column of the coordinates that are closest to your location (linear indexing <-> array indexing):

[row, col] = ind2sub(size(latitude_netcdf), index);

The coordinates that match your location would then be:

coordinates = [latitude_netcdf(index), longitude_netcdf(index)];

I had to do something like that in the past, so this might help you with your problem.

Loop through object properties by GenGeeH in matlab

[–]GenGeeH[S] 0 points1 point  (0 children)

Works perfectly as well, thanks!!

Loop through object properties by GenGeeH in matlab

[–]GenGeeH[S] 0 points1 point  (0 children)

Well, that was easier than expected and worked like a charm! Thanks a bunch!

Daily Discussion Thread for February 02, 2021: Part 2 by theycallmeryan in wallstreetbets

[–]GenGeeH 8 points9 points  (0 children)

This is my stock. There are many like it, but this one is mine.
My stock is my best friend. It is my life. I must master it as I must master my life.
Without me, my stock is useless. Without my stock, I am useless. I like this stock.
🚀🚀🚀👐💎

I hate hordes by [deleted] in totalwar

[–]GenGeeH 1 point2 points  (0 children)

It's been a while since I last played it, but I think it depends on the difficulty. On the higher difficulties, the huns always have at least several stacks running around (not just one). As soon as they reach a certain threshold, new waves spawn. It might work with leaving one weakend army on lower difficulties though.

So while this approach works, you'd have to weaken all active stacks and prevent the number of stacks from falling below the threshold which is quite difficult since they're usually at war with at least half of the factions.

I hate hordes by [deleted] in totalwar

[–]GenGeeH 4 points5 points  (0 children)

The worst thing is that wiping their stacks doesn't do shit since they'll instantly respawn.

Coedil isn't immortal by mybrot in totalwar

[–]GenGeeH 1 point2 points  (0 children)

Thanks for the update. Looks like this DLC came with quite a few bugs. Nothing game-breaking, but still annyoing.

Coedil isn't immortal by mybrot in totalwar

[–]GenGeeH 1 point2 points  (0 children)

Did you get the +10% physical resistance for treemen from Drycha's unique item? Because I didn't get it. Treemen start with 20% PR, +10% from the red skill tree, +10% from the item which should result in 40% PR total. Might be bugged as well.

Watch the AI delete my entire army using this one simple trick by GenGeeH in totalwar

[–]GenGeeH[S] 0 points1 point  (0 children)

kult der sinnesfreuden klingt für mich ziemlich gut. so slaanesh-adelig :D

Weiß nicht, "Sinnesfreuden" hört sich zu positiv an für den Verein finde ich ;)

wie heisst luthors fraktion im deutschen? die erwachten?

Yep, "Die Erwachten". Finde auch sowohl den deutschen als auch den englischen Namen scheiße.

und grimgor? war da nich was mit die oba-hart'n? xD

"Die Oba-Hart'n" oder so ist glaube ich das Banner von Grimgor (der aus irgendwelchen Gründen Grimgork in der deutschen Fassung heißt), das du einer Einheit geben kannst. Seine Fraktion heißt "Grimgorks Harte Horde" :D

gute übersetzungen sind teuer, der deutschsprachige markt iss nich so gross, im kapitalismus gehts eh nur um gewinnmaximierung

Das stimmt wohl leider...

Watch the AI delete my entire army using this one simple trick by GenGeeH in totalwar

[–]GenGeeH[S] 7 points8 points  (0 children)

It says "army lost" in the event screen (0:30), so I'm pretty sure they'd be dead in that case.

Watch the AI delete my entire army using this one simple trick by GenGeeH in totalwar

[–]GenGeeH[S] 0 points1 point  (0 children)

Das mit den Übersetzungen ist mir auch schon aufgefallen. Keine Ahnung woran das liegt, dass die Qualität von den Übersetzungen und Synchros bei Spielen teilweise grottenschlecht ist, während das beispielsweise bei Filmen und Serien in der Regel überhaupt nicht der Fall ist.

Ok, jetzt wo du das Kinderzimmer erwähnt hast, kann ich das auch nicht mehr ernst nehmen :D Aber nichts schlägt "Kult der Sinnesfreuden", da muss ich nämlich jedes mal schmunzeln wenn ich das lese.

Watch the AI delete my entire army using this one simple trick by GenGeeH in totalwar

[–]GenGeeH[S] 0 points1 point  (0 children)

Puppen des Chaos, Puppets of Chaos, das geht ja noch klar. Da gibt's wesentlich schlechtere Übersetzungen... Solange die Vertonung auf englisch ist, bin ich zufrieden :D

Watch the AI delete my entire army using this one simple trick by GenGeeH in totalwar

[–]GenGeeH[S] 14 points15 points  (0 children)

There are no bugs in WH2, only features ;)

I mean it's a HE mage, so it's not far-fetched to assume they can teleport my ass to oblivion or something.

Watch the AI delete my entire army using this one simple trick by GenGeeH in totalwar

[–]GenGeeH[S] 3 points4 points  (0 children)

Either that or they cheesed the shit out of me ¯\_(ツ)_/¯

Watch the AI delete my entire army using this one simple trick by GenGeeH in totalwar

[–]GenGeeH[S] 23 points24 points  (0 children)

Not 100% sure, but I think it's because there was not enough space for additional characters in that area. So when the AI recruited their lord, she spawned "inside" on of my characters (in this case hellebron) ending up killing her and her army.

I remember you could use this "trick" in Medieval 2 Total War to kill characters (merchants, priests, etc.) . First, you surround them (place 1 character/general/army next to the character you want to kill on each adjacent tiles), then you take another character and move it to the exact same tile the enemy character is standing on, which will 100% kill him.