Jump to content

Gabi1

Members
  • Posts

    95
  • Joined

  • Last visited

Everything posted by Gabi1

  1. thanks guys for your input. as gar as licence goes, i have the module here with mine. dont intend to distribute. QUOTE (Yair @ Aug 26 2008, 06:31 PM) i guess so. would be stupid to reinvent the weel, even with LV. yet i will try to talk to the IR port via NI-daq, see if i can get something usefull.
  2. QUOTE (Omar Mussa @ Aug 25 2008, 09:45 PM) I meant in the sense of "how much buggy is LV PDA"? how different is it from LV "original"? is it going to be a frustration-does-work-at-the-end project, or a fun thing that will end up nice. i am looking for your experiences as a LV PDA developer. i have never came across projects requiering PDA so...
  3. Hallo Leute, Challenge: my house is full of remotes. i dont stress it enough: FULL - DVD, HIFI, TV, projector, sat receiver, computer... So I was toying with the idea of buying a universal. a worthy one (user friendly and actually doing what is needed, plus some programmed functionality) is just above my budget for the purpose (if i can manage ith LV...). and then, i have my nice Windows mobile 5 PDA, with wireless and an infrared port (granted, on the wrong side of the PDA,but who said we cant turn around the LV buttons?). So to make it run, all i need is LV PDA, (or some kind of server connection to my computer with the wireless), and the drivers for using the Infrared port as input-output device: the idea is to record the commands from the native remotes using a labview routine and DAQmx, and vice versa. But: how do i get to use the IR interface? i have heard that one can instruct LV to use mouse for example as I/O device. is it the same here? how do i do that? And also before getting into the hassle of installing LV to PDA: does it all worth it? THanks for your inputs.
  4. any chanceyou could save for LV8.2? Thanks!
  5. QUOTE (Norm Kirchner @ Jul 18 2008, 10:57 PM) Thanks! had exactly this problem for some users who run identical instruments on same computer, just with different GPIB address.
  6. Very cool! great creativity Could be a great tric to confuse those who wants to look at the code, without knowing enough LV: They would run it with open diagram to see... the actual horse(power) in the engine!
  7. How many times did I forgot to set a boolean constant in a case to 'true', leading to an infinite loop condition?? in some project the run time is long, and therefore debug time is exponential: why not allow code change while program is in 'pause mode': i discover a bug - dont want to restart the whole process - pause, change the wire, structure or element - and then continue running. It is possible in VB for example. works perfectly there. Why not in Labview?
  8. QUOTE (neB @ Jun 15 2008, 03:50 PM) Hem Hem.... French being gutural? i dont want to get out of the subject here, but, again: French is gutural?? Spanish maybe, German definitely, but French? nono, your other guess is better.
  9. hello Yair refreshing song. thanks for sharing it. the graphics are well tought and worked. interresting while sad and in a sense horrifying. the lyrics are not self explanatory, and i am not sure it is good. connection to the pitures is vague. need to hear and watch another few times beofre i decide if i like or not. the whole thing is very artistic of a Bjork kind, yet surrounded by such sadness it is difficult to enjoy. please do expand on its origin ( singer?)
  10. QUOTE (Yen @ Jun 7 2008, 10:27 PM) Thanks yen. i have 2 problems related: i do not know in advance how will the file look like. therefore, i would like a run-time solution, where the file to be read would pop up (or container), and allow me to click on the fields of interest. then if next file is identical, such identification vi would look versus its own built library of "clicked fields", and would not send the file to the container UI for definition of a new format type. second problem, more basic: i dont see a solution to open the file in a container, and allow the mouse to click and get its response and field. i am sure this has been done before, so i am looking for some existing examples. i am not yet programing this thing, as the file extraction is the critical element wich fails because of the tremendous amounts of different file formats. manual extraction on the other hand is a brain suicide...
  11. QUOTE (Yen @ Jun 6 2008, 11:30 AM) no response whatsoever on the other side, so... let me depict to you: i have 100 files, identical except the value: " NF=12 SXC 2 dB PMD= 0.5 ... ... " i want to extract the NF and PMD values. in this file format NF appear in the first line after the '=', PMD appear in the third line after the ' '. would be easy if i would be able to open the txt file, select with the mouse the string, and then the value, and store the field positions in LV. Then i have another 100 files, but this time it look like this: " vendor...xxx AP 0 NFa=12 SXC 2 dB PMD= 0.5 ... ... " this time the value of interest comes after the string NFa (rather than NF), and comes in the third line. no way to extract it without retelling the computer to refine his search. once i give it to the application, i would like him to keep this, so in the next file it opens it could try with the first criteria, and as the string comparison fails on the position, try with the second defined criteria. some files come already in excel format, therefore it is easier to find fields. ultimately, after several such manual entries of string and corresponding field to extract the value, the application would be able to handle automatically any file format to extract. i hope it is more clear, and thanks for your input.
  12. QUOTE (tcplomp @ Jun 5 2008, 07:59 PM) you mean create a macro in excel? i have tried that, with minimum success. the problem stays the same: it will open a file, discover it doesnt go with its known format, and trow an error. make more elaborate VB to handle all that is out of my league and mainly of my available time. i am not sure how the report generation toolkit would help me there. coul you expnad?
  13. QUOTE (Yen @ Jun 5 2008, 07:25 PM) Hello Yen! thats what i want. the problem is, i do not know in advance what is going to be the string before the value, and how many values wil there be. the best would be that a sheet open, and i could with the mouse show the field for the string and the field for the value(s). since i have few hundred such formats, then upon opening a file, the software should compare its possible strings/fields with the one under examination. in case the is a fit, then extraction is automatic. but if there is no fit, then once again the datasheet should open itself, and allow me to choose the relevent field. a mouse operation would be fantastic here, and i was hoping somebody already has something done on similar topic. to note that the datasheet can be a simple text file with no tab delimiting the string and the value (just a space or ':').
  14. Hey finally back to some LV programming, this time with an interresting challenge. i have several large datasets to extract. the number of datasets is such, that i need a semi automated solution. each dataset includes few thousand files. some dataset are text files, and some are excel workbooks, including several sheets. this is the first time i deal with excel data extraction, therefore would be happy for some instructions. the idea is this: look-up in the file a value of interest, and define its "position". Then, for all the files in this dataset the program will automatically extract this value. the way the prog should determine if a value is in the right field, is by its description with preceding string. Everytime there is no match, i should be able to define a new look-up position. At the end, i expect the program to pick up a file, and look the value related to several possible formats. Any idea to give me a lead how to takle this? edit: i will cross post it on the dark side as well
  15. QUOTE(neB @ Mar 6 2008, 07:53 PM) send me a PM, i'll try to help you . But dont forget to mention the boundary conditions and the surface potential which defines the matrix
  16. Gabi1

    Cable rack?

    QUOTE(T_Schott @ Feb 22 2008, 11:42 AM) crelf: this one has the advantage of being adjustable, but stiff lamelles. with the simple rack, one always has problem fitting sma or smb connectors. however, much cheaper and easy to bend the lamelles (usefull to force entry... ). note: i would never had expected a forum topic about rack fittings... LAVA is great!!
  17. just to add feedback, maybe it will help solve the issue: the type def resizing is a bug, from a user stand point. that is why strict type defs exist. The actual configuration forces me to disconnect the 'original' cluster (the one displayed in the FP), from all the ones used in subvis or so. in order not to have such resising problems. that induces of course quite a bit of headache, since there is no "reconnect to type def". i would love a pop up view on subvis + their diagram, especially from the project explorer.
  18. QUOTE(_G_ @ Feb 19 2008, 06:49 PM) the print has very bad quality. but i got with it the electronic version, and it is very well organised there. figures are much better, but not all at the adequate size.
  19. QUOTE(i2dx @ Feb 9 2008, 09:59 AM) A little bit. i use magnetic coils and high currents. QUOTE I'm still searching for someone who could give me a little input about how to build a frequency converter circuit (20 kHz base frequency, 1-35V, 0-150A, 0-240 Hz) which is directly connected to a cRIO 9401 DIO Module (which generates the PWM) ... are you offering me a job? :laugh: , you better call a real electronician if you are afraid, but it is not that difficult, if you follow all the datasheets. but the "directly connected to a cRIO" is a dont do at home stuff. in general: the IGBT should be switched using an optocoupler, even tough it necessite an external power supply. on the bright side, you probably can use same power supply to drive the IGBT (plus the one on the cRIO side of the connection). the IGBTs i buy generally are from Mitsuishi, and they do the job nicely. switching on should be digital, the IGBT should be cooled using a water cooled plate glued at the bottom (the IGBT eats up about 3V of voltage, independant on the current. you can see that it is fast reaching high temperatures). for switching off, the IGBT should always be fully protected by a varistor (put several in parallel, as they tend to die fast). for 20KHz, this should definitely not be a problem. notes: 1) in general, it is much easier to modulate the current trough the current supply rather than the IGBT, and use the IGBT only as a switch. in this way, one avoids lots of troubles. altough limiting the capabilities, complex waveforms at very high frequencies cannot be achieved without completely taking in account the whole circuit ( due to induced fields and so), therefore most of the time the relatively slow response of the power supplies (order of ms) is enough for such modulations. on the other hand, IGBTs used as switched have proved their usefullness for example in hybrid cars (DC power supply to AC motors). the power supplies i like most are from DELTA. expensive but very reliable. 2) cool the IGBT!!! 3)the driving circuit for the IGBT is easy to build, and you should find an example circuit in the datasheet of the IGBT itself. 4)use varistors all around in your circuit. they are cheap and easy to plug everywhere: between the nodes of the power supply (check max voltage it can withhold), between the nodes of the IGBT (use a good margin voltage for breackdown - your circuit will probably not have too high an inductance, therefore you should not be too worried about longer switchoff times - but calculate to be sure). 5) for testing, drive your system at low current. you minimise risks to burning the IGBT to zero, and they are expensive stuff. 6) the whole thing will take you some time (actually quite a bit). if you dont expect to build too much of those, much better is to buy a finished solution!! when one think that a worker costs 6000Euro per month, plus material and long learning curve... 7) good luck! but arent you more of a Labview guy?
  20. QUOTE(rtn1 @ Feb 8 2008, 10:31 AM) my salt: this is not a LV question, much rather a hardware one. if you have little experience with relaying, better get the help of an electronician. MOSFETS, and especially IGBTs, are expensive and relatively much more complicated equipment than simple relays. but for your voltage and frequency range there is not much choice. for higher currents as already pointed out you have not much choice but a IGBT. be aware tough, that they require separate power supplys, and that they tend to break very easily if not handled with great care in designing your circuit. for example, if the induced magnetic field is high, then you can expect a 'backcurrent' at turn off of the IGBT, which could lead to a surge of voltage to very high values. IGBTs in general cannot handle more than a thousand volts or so, (not to mention health and risks to living organisms...), therefore should be protected with varistors. These in turn have a breakdown voltage proportional to the current, so you should also look into the datasheet of those and choose them carefully. They also induce a longer shut down time, (depending on max voltage, current and induced field), limiting the overall rate of switching. to your consideration...
  21. Gabi1

    yes we can

    QUOTE(crelf @ Feb 3 2008, 05:14 PM) thats it! i'm convinced!
  22. QUOTE(crelf @ Feb 3 2008, 12:49 AM) i wish! with an expanding family this today one of my nicest dreams...you know, the ones that are almost achievable but you are just too tired to actually materialise them? (that and the lack of baby sitters...)
  23. ho noo.... i was just today asking my wife when was the last time we went out in the evening...or when will we...
  24. QUOTE(Neville D @ Jan 25 2008, 11:41 PM) Well it is mainly my personal taste, and the way i document things: having a property node for a FP element with its name directly connected i good when i have relatively few such elements. however, in this particular code i have a FP that uses a tab control with several tens of elements. then, i group most of my elements into clusters (type def) that refer to a specific operation or stage in the UI utilisation. then, most of the time changing properties for the controls in the cluster as a whole has avdvantages, and can be treated by reference to a case structure inside a for loop. in short - i got used to do it this way. of course, once i actually need to get a strict reference specifier, i loose this advantage, since i need to go and find it directly from the control itself...
  25. Ok Jhoskin gave the tip: right click on the chart itself and get the 'history' property. it still puzzle me tough, as i cant find it the usual way - see picture.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.