-
Posts
299 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by Thang Nguyen
-
-
I am working on a project with requirement of measuring current. The system includes both the AC current transducer CR4211-15 (Input 0/15AAC, Output 0/10VDC) and a Fluke i5S (Input 0.01/5AAC, Output 400mV/A). I use cDAQ9184 with NI-9205. I tested with a light and using MAX to monitor the signal but the signal really noise from the AC transducer and clamp. Please take a look at the pics I attached which is the screenshot from MAX. I hope anyone with exp can give me a help. Thank you! Thang Nguyen
-
How should I handle checking if it is first test sequence?
Thang Nguyen replied to Thang Nguyen's topic in TestStand
I think using a text file is a better idea cause in case system crash in the middle of the test that index will be reset. -
How should I handle checking if it is first test sequence?
Thang Nguyen replied to Thang Nguyen's topic in TestStand
Thank you! -
Hi, I am quite new with TestStand. I know how to develop a test sequence already. Now my project becomes more complicated with checking if it is the first test sequence to implement some extra task such as scan bar code for a set of test sample. What should I do to make this happen? Thank you for your time! Thang Nguyen
-
Anyone has experience with Keyence Laser Marker
Thang Nguyen replied to Thang Nguyen's topic in LabVIEW General
Oh, thank you so much! That's good information to know. I have already sent message to them. I hope I can receive feedback in one day -
Hi, I have started worked on a new project which require using Keyence Laser Marker MD-F3000 series to mark serial number. I cannot find any documents about control this device programmatically such as input a certain string with different parameters and tell the controller mark it. If anyone has experience with this device please give me advice how this one work or where I can find document about it. Thank you so much!
-
Check image input is valid
Thang Nguyen replied to Thang Nguyen's topic in Machine Vision and Imaging
I check the error output of any vision vi to see there is error or not. But is it better if there is a similar function in comparison check if image is valid or not? -
Hi, I have a image control as input. I would like to know how to check if the image data is valid or not. I tried to search this on Google but I cannot find answer so if there is already answer, I am sorry but help me point to it. Thanks! Thang Nguyen
-
Anyone has experience with scanControl
Thang Nguyen replied to Thang Nguyen's topic in LabVIEW General
anh Minh, I have a problem with the white area on the top right of the character which make the algorithm cannot work correctly. That is created with the pump up of the surface of the device. It will go away if I scan along the length of the text but requirement is I have to be able to scan both ways, along the height of the text and along the length of the text. Do you have any experience with this? -
Anyone has experience with scanControl
Thang Nguyen replied to Thang Nguyen's topic in LabVIEW General
Oh, sorry. I need to recognize these characters. Do you know any good source to learn about LabVIEW vision? Thanks! -
Anyone has experience with scanControl
Thang Nguyen replied to Thang Nguyen's topic in LabVIEW General
This is the data I got back from the scanControl. There are two arrays in this VI. One is distance data and one is intensity data. The object has a curve surface in the center so it white out in the middle. I am not sure what I should do next. Could you please give me some advises. Thank you! Thang Nguyen ImageData.vi -
Anyone has experience with scanControl
Thang Nguyen replied to Thang Nguyen's topic in LabVIEW General
Thanks anh Minh. This is my first project working with laser scanner as well as ni vision. I had some issue with synchronize between controlling motor and capturing correct data. I start get hang with it now. -
Hi, I am working on a project which using scanControl to scan the D surface of products to detect engraved serial number by laser. I have never used this laser sensor before. I have not had much successful to read back an image with clear. The result I got is hard to process. I think maybe I did not get the correct data I want. I wonder if there is someone familiar with communication interface with this device can share me the sequence of functions using to get an intensity image of 3D surface. Thank you! Thang Nguyen
-
How to write a custom (exponential rise) fitting function?
Thang Nguyen replied to Thang Nguyen's topic in LabVIEW General
I found the nonlinear curve fitting VI and play with it, but by some reason it doesn't work. I attach it here so you may can try it. Select TestFitData.txt as source TestFitData.txt TestFit.vi -
How to write a custom (exponential rise) fitting function?
Thang Nguyen replied to Thang Nguyen's topic in LabVIEW General
Hi, I tried with base package but it doesn't work in my case. I attach here the graph and data set. Thang TestFitData.txt -
How to write a custom (exponential rise) fitting function?
Thang Nguyen replied to Thang Nguyen's topic in LabVIEW General
Crelf : X is an arry -
Hi, I have a set of data which is in a shape of exponential rise function. I cannot find any fitting VI can fit this data set so I would like to build one. I know that my data set is Y = A - B*exp(-C*X). But I don't know how should I start to make my VI can find the fit automatically. I highly appreciate your time on reading and answering my questions. Best regards, Thang
-
I did recompile and the error is still there. I tried to copy that while loop into a blank VI, ran, and confirmed it work. Then I delete the case in my main VI, and build the case. Copy back the while loop, and error still happens. I have just tried to remove the -1 block from inside the while loop to outside the while loop and it works now. I am lucky that I don't have to rebuild the whole VI. I sent the VI to NI already. Best regards, Thang Nguyen
-
Haha, Thanks, I actually saw some stupid stuffs happened sometime.
-
Hi, I have a really weird case happen here. I minus a number by one and the result is -1. I attach my code here when it running with highlight and prob. I have the actual code below it. When I copy that code to another VI, it runs ok. I tried to replace that minus 1 by a minus block with a constant 1 and it still returns same result is -1. Please tell me what I did wrong. Best regards, Thang
-
Hi, I am having problem with synchronizing between LabVIEW and Matlab but this is a new issue compare with my previous question and I hope you can help me. I have a model in Matlab and need to control from LabVIEW. I have multiple valves in the model and the states of the valves are controlled based on time different commands. It means the command will change the state of the valves based on the preset duration between states. Because the timing is different between LabVIEW and Matlab so I decided to get time from Matlab to use it as a clock tick in control. I have a model in Matlab, a Simulation Interface Toolkit (SIT) Vi which has controls link to constant to control the valves in Matlab model. This is the interface VI between LabVIEW and Matlab. I have another independent controller VI which control the valves in the SIT VI based on using property signal and I acquire data based on queue. The story begins here. For example I have 3 valve states: A, B First I set valve to state A, then I get the start time of Matlab TA1 then I wait in the loop and get the current Matlab TAi. I wait unitl TAi - TA1 >= duration DA then I switch to another state B. The data between TA1 and TAi is used as data for that segment. The problem is the TA1 is not exactly the time of the Matlab model switch the valve then the data I have is included the part before it. And this delay is different every time. I tried to use a constant delay to modify it but it didn't help much. T I highly appreciate if anyone can recommend me have a better solution to sync this up. Best regards, Thang Nguyen
-
Software still run on a machine without toolkit?
Thang Nguyen replied to Thang Nguyen's topic in LabVIEW General
Hi, I think I forgot to build the installer for my software. I will try to build the installer to see if it can run or not. Thanks, Thang Nguyen -
@Crelf: Wow your system is huge with 6 PXIs.
-
Hi, I have work on some projects which requires either connect to a hardware (HIL) system or a software simulation (SIL) at a time. For example, in my current project, the SIL part is simulation interface toolkit connect with matlab/simulink. My question is if I want to use the hardware part only so I want my software to be run on a machine which has can connect to hardware but doesn't have the SIT license. Last time I tried it and it say it cannot file the SIT library. What should I do in this case? These HIL and SIL is managed in a LV class can be load dynamically. But it still ask for the SIT when it runs. What should I do? Best regards, Thang Nguyen