Research topic based on Biomedical applicatio​n using LabVIEW

Hi..
I am faculty of Electronics Department. I have completed my M-Tech and now want to do Ph.D using LabVIEW. Can any one suggest me any topic related to biomedical application in which i can do research or develope some new hardware.
Thank you.
Regards,
Payal

Items 1, 2 (machine control), and 5 clearly are areas where LV is already used. Items 3 and 4 may be more dependent on sensor technology than on software, although obviously complete systems in those areas will include much software.
LV can be used as a tool in almost any kind of research, but the research topic choice should not be driven primarily by the tools available. The way you worded your query it is like a mechanical engineer saying, "I have a hammer. I want to do mechanical research which will make use of the hammer." 
To stretch that analogy way too far: It would be better for that mecahnical engineer to say, " I want to study the strength of materials. One of my constraints is that my equipment budget is limited to the price of a hammer." Then he might decide to study nails.
Consider item 4. digital scent technology. If you do not have access to suitable sensors, you could only do simulations in software, and the quality of the simulations would depend on the accuracy of any published models of the sensors. If you have a gas chromatograph and a mass spectrometer, you could create profiles of scents which could later be used in a portable device. Without knowing where you are in that range os possibilities, it is impractical for someone to make useful suggestions to you. 
Lynn

Similar Messages

  • Passing a command to another applicatio​n using Labview

    Hi All,
    I have a query. I am using two softwares for my experiment. I am calling coboldpc from Labview. What I need to do is when I call cobold pc from Labview, as soon as coboldpc opens it should start executing new.ccf file. I am able to call coboldpc from labview . How can I pass a command 'execute new.ccf' to coboldpc by using Labview! Thanks a lot in advance to the person who has answer to this.
    Maithili

    I do not know what do you exactly mean by this! I tried to execute coboldpc application through dos prompt and also to pass the command. It works fine with document file but not with an executable file. Coboldpc has a command line where I think I need to pass the command.
    I am trying for one more option to work this out. I am trying to call coboldpc dll through labview. Actualy it i staking time to study those dlls written by someone else. I am not getting much of it. Do you have any idea by any way how can it become easier to use this option!
    Thanks ,
    Maithili

  • Keywords in topic-based index not displaying in application tab

    We have a large binary index built from topic-based keywords.
    The project itself is fairly substantial (2800+ topics), and the
    .chm file produced works fine, index and all. However, only a small
    fraction of the keywords display on the index tab of the RH
    application.
    Editing the rhakeyword.apj file doesn't seem to have any
    effect. Right now, for example, the file in use is totally empty,
    but the same subset of topics is displaying in RH.

    Monday morning update: Friday afternoon the reimporting of
    topics seemed to be rebuilding the index. This morning, upon
    reopening the project and resuming the process, the topics I was
    importing stopped registering on the index tab. Attempting to add
    them manually, though, resulted in the "topic already exists"
    message.
    Further testing: I added several hundred topics Friday,
    nothing shows in the rhkkeyword.apj file. All of a sudden today RH
    is adding index entries there.
    This is getting silly.

  • Master's Research Topic (Help Wanted)

    Hello Everyone,
    I am looking for ideas in formulating a suitable masteru2019s research topic using ERP systems as the theme. I am also aware that a lot of research study has already been conducted in the area of SAP ERP implementation identifying the critical success factors for their failure and success.
    This year our institute  the u2018Durban University of Technologyu2019 joined the  SAP UA and for the first time we will be exposing our 2nd and 3rd year I.T Business Analysis stream students practically (hands on) to an ERP package like SAP.
    Hopefully you see some potential research avenues in this exercise.
    However a fresh idea, new angle or new topic will be most welcomed and appreciated.
    Kind regards,
    Amar. Ramnarain

    Hi Amar,
    It is wonderful to hear how fast Durban Universityis is not only picking up ERP teaching but also getting involved in research related to SAP ERP. Indeed, there is a whole variety of possible research topics. I would recommend to look at ERP systems from different angles (analyze, model, develop, operate, use, evaluate etc.) and try to find your perspective of interest. Success factors for ERP implementation project (closely related to project management, ERP configuration as well as global/cultural/social aspects) have been researched thoroughly in the past years. I myself am researching the effect of different teaching/learning methods in global ERP curriculum design. You may have a look at the research topics in this forum to get a feel for how diverse academic research on very large business application can become. You may also visit and contribute to the UA Research wiki.
    Our community members are happy to give you a helping hand once your research idea is being narrowed to a specific perspective.
    Best regards to South Africa,
    Stefan

  • How to find bpel instance in 11g based on the index values using Java APIs

    Hi ,
    In SOA10G we had option to find the instances based on the index value using Java APIs like below.
    WhereCondition criteria= new WhereCondition(SQLDefs.CX_index_1 + " = ?");
    criteria.setString(1, "indexValue");
    Locator mLoc = getLocator();
    IInstanceHandle[] foundInstances = mLoc.listInstancesByIndex(criteria);
    Please tell me how to achieve the same functionality in SOA 11G using Java APIs
    Regards,
    Saba

    I have multiple bpel in my composite. I checked in ci_indexes table and it shows the instance number of the bpel process. But the em console is showing only the composite instance number. when I opened composite instance, I could see all the bpel process with instance number in the audit trail. How can I find the the actual composite instance number that I should search for in the em console ???

  • Create an AP Invoice based on a Purchase Order using SDK

    Hi,
    What are the steps to create an AP Invoice based on a Purchase Order using DI API?
    Which methods of which objects to use and what parameters to pass?
    Thanks.

    Hi Rajesh,
    Here is a sample to create an Invoice based on a Sales Order. The same way you can change as per your requirement:
    SAPbobsCOM.Documents oInvoice = default(SAPbobsCOM.Documents);
                oInvoice = (SAPbobsCOM.Documents)SBO_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices);
                oInvoice.CardCode = "C000003";
                oInvoice.DocDueDate = DateAndTime.Now;
                oInvoice.Lines.BaseType = Convert.ToInt32(SAPbobsCOM.BoObjectTypes.oOrders);
               oInvoice.Lines.BaseEntry = Convert.ToInt32(3616);
               oInvoice.Lines.BaseLine = 1;
                oInvoice.Lines.Quantity = 3;
                oInvoice.Lines.Add();
                oInvoice.Lines.BaseType = Convert.ToInt32(SAPbobsCOM.BoObjectTypes.oOrders);
                oInvoice.Lines.BaseEntry = Convert.ToInt32(3616);
                oInvoice.Lines.BaseLine = 2;
                int kth = 0;
                kth = oInvoice.Add();
                if (kth != 0)
                    int irrcode;
                    string errmsg;
                    SBO_Company.GetLastError(out irrcode, out errmsg);
                    Program.oMainSAPDI.ShowMessage(errmsg, BoStatusBarMessageType.smt_Error);
    The main thing to remember is Base Type, Based Entry and Base Line.
    Hope it helps.
    Thanks & Regards
    Ankit Chauhan

  • I am based in Russia, and I use a Russian cred card number. Hence my apple store page is in Russian language (which i dont speak). Can I change this into English language and if yes, how?

    I am based in Russia, and I use a Russian cred card number. Hence my apple store page is in Russian language (which i dont speak). Can I change this into English language and if yes, how?

    The only way I know is that you need a physical address and credit card of an English speaking country.

  • EMG based DC motor control using labview

    I have a project where i need to use my EMG data to control DC motor
    using labview.I've already got the EMG signal by using ADinstrument and
    import the signal to labview. The problem is i don't know how to connect
    the signal with DC motor. This motor will start to move when it detect
    the signal exceed certain value and stop when it less that value. I'm
    still new with labview and i'm using labview 8.0. Can someone help
    me?thanx

    Please check out our Biomedical User Group - there are similar project discussions going on there and links to the NI Biomedical Starter Kit - a free download for doing biomedical data acquisition, signal processing, and other tasks.
    Steve
    Visit the NI Biomedical User Group at:
    www.ni.com/biomedusers

  • Has anyone implemente​d a QUADRATURE IN / QUADRATURE OUT applicatio​n using the Compact FieldPoint​?

    Has anyone implemented a QUADRATURE IN / QUADRATURE OUT application using the Compact FieldPoint? The units being used are the cFP-QUAD-510 [input] and the cFP-CTR-500 [output]. What I would like to do is use the QUAD-510 to capture a quadrature signal from a sensor, which in turn would generate a count per quadrature detection. Within LabVIEW, adjust the count received. Then, output a quadrature signal, based on the adjusted count, using The CTR-500.

    Hello Andre,
    Thanks for your response. That example does provide the output desired, and it is currently being use in my application, along with the 32-bit counter example available via NI for the QUAD-510, which also works. My query was mainly geared to find out if an application with the characteristics described in my original question has already been implemented, this, to avoid "re-inventing the wheel." Additional input on this thread is welcome and appreciated. Thanks.
    Regards,
    Dag Gollopp

  • RH7 doesn't break Word document into topics based on headings

    Hi,
    Have been working with RH7 and Word 2007 for some time and everything was OK.
    Yesterday tried to generate another Help by importing a Word document.
    RH just didn't generate topics based on the headings.
    The entire document was imported into a single topic - into a text box.
    Any idea what the problem could be?
    Thanks,
    Rakefet

    Sometimes the environment can mysteriously change so pagination was the place to start!
    The next thing to check is the headings in the specific document Word. I've seen quite a few posts where further investigation reveals that the "headings" were in fact styles the author had created that were not the heading styles that come with Word. Is this possible here, is it one of your documents or someone else's creation?
    Try creating a new project and importing a document that has imported correctly in the past. Does it still do so or does it too display this problem?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Web-based deployments can be performed using OUI

    10.2.0.x version
    Want to learn more about how Web-based deployments can be performed using OUI, if someone has good article or notes.

    By billing I assume you mean resource related billing. I don't think RRB will work without costing. Because the basic tables which act as source for RRB are cost item tables. Still, everything is possible if you make alterations to the programs. But you will have to do a cost-benefit analysis.
    I suggest that you don't think only in lines of RRB. You can write a program which can copy the materials and detemine materials for the activity types. This program can refer to one of the RRB profiles but only for material determination and can create a debit memo request or a kind of resource related quotation.
    Hope this helps.
    Bala

  • I never used LabView but need to generate a RS-233 serial output string that contains an IRIG timestamp based on a contact closure. Is LabView an appropriate tool to do this? How much does it cost to get started with the product?

    I never used LabView but need to generate a RS-233 serial output string that contains an IRIG timestamp based on a contact closure. Is LabView an appropriate tool to do this? How much does it cost to get started with the product?

    Labview isn't cheap, but it would certainly allow you to build a program (set of vi's - virtual instruments) that would do what you describe. Where would the timecode information come from? Your vi, or program, would: Start up, initialize the serial port, loop until a trigger happened, read the timecode (from where?), output that timecode out the serial port in a loop until you pressed the stop button. There is a free evaluation of Labview software available from NI - the base product itself runs about $995.
    - Dave

  • Problem building applicatio​n using Report Generation Toolkit, LV 2011

    I'm using LabVIEW 2011 under Windows 7.
    I tried to use Application Builder to create an executable from a large body of code. One thing the application does is load VIs into a subpanel and run them.
    Application Builder created the executable and gave no error message. The built application ran except that it couldn't run any of the dynamic VIs.
    I finally succeeded in doing a screen grab on a transient dialog (about 1/10 sec. appearance). The dialog showed an attempt to load <vilib>:\Utility\NIReport.llb\NI_report.lvclass.
    In one dynamic VI I commented out the call to the only VI that uses the Report Generation Toolkit (called only from dynamic VIs, all of which call it). Sure enough, when I built the application with that change and ran it, the dynamic VI that didn't invoke the Report Generation Toolkit did successfully load into the subpanel and run.
    So, trying to prove to myself that that was the only problem, I wrote a VI that does nothing but load a VI into a subpanel and run it. User can choose one of two VIs: one that doesn't call the Report Generation Toolkit (or do much of anything), and one that does. Both VIs run fine standalone.
    The not-much-of-anything VI loaded and ran in the subpanel. The other VI didn't--the same dialog, mentioned above, popped up for 1/10 second or less. Screen grab is attached.
    When I included LVClass and NIReport.llb folders in the project (from vi.lib\Utility: Snapshot folders), and "Always Included" those folders (per a suggestion on this forum from a few years ago), the result was the same. The result was also the same when I included either one of those folders but not the other. Likewise it doesn't matter whether I add the dynamic VIs as "Always Included" or not.
    Another piece of information that may be pertinent: when adding the NIReport.llb folder, I got a message that it was impossible to add a certain VI that's part of some report-type class, because a VI of that name already existed in the project. Screenshot of that dialog is also attached.
    VIs and project file are also attached along with the two screenshots. I hardcoded VI paths, so put everything into C:\Testing if you want to see what the code does--or hack as desired, etc.
    I will be deeply grateful for any help! And I apologize in advance if there's already some exact or close-enough solution posted--but I doubt there is. I looked around.
    Thanks very much,
    mws
    Attachments:
    Test-App-Build.zip ‏336 KB

    Hi again,
    If you extract all files in the original zip attachment to a folder called C:\Testing on a Windows 7 machine running LV 2011, and then use the build script within the project file to build the application, you can run the application and see what happens. You can also play around with the build parameters, rebuild, run, and see what happens then. You can also open my VIs and see what I'm doing.
    The application lets you pick one of two dynamic VIs to run in a subpanel. One VI contains calls both to Report Generation VIs and some functions from the Advanced File Functions palette. The other VI does not.
    When you pick the first VI to load and run (the one with the Report Generation and Advanced File Functions calls), it loads into the subpanel but is not executable.
    When you pick the second VI to load and run, it does load into the subpanel and execute. So there's nothing wrong with the way I load and run a VI in the subpanel.
    In the development environment, the whole thing runs with no problems.
    Evidently the built application has problems resolving paths of something called by Report Generation VIs and by the Advanced File Functions I use.
    I've done a lot of experimenting and no luck. I've looked in forum archives, etc. etc., for possible solutions. I'm hoping there's some simple solution I've missed.
    Thanks very much for any help!

  • How can i use labview.tl​b to control Labview from an external applicatio​n?

    Hi,
    I've been told by a labview engineer that i could use the file
    labview.tlb located in the labview install folder to control labview
    from an external application (in my case, a C# app). I'm using Labview
    6.1 under Windows 2000. This article confirms that:
    "ActiveX and LabVIEW"
    http://zone.ni.com/devzone/conceptd.nsf/webmain/54​01BE584FBAEECE862567C2006D36C7?opendocument
    But i've not been able to find out how to use this file to achieve
    what i want. I just want to be able to open/close labview, open/close
    a vi, start/stop a vi, hide/show a vi from a C# application. The above
    web page talks about activex but i really don't see the realtion
    between activex and that labview.tlb file.
    Is there so
    mebody around who knows how to use that file? Why does NI
    tell us that it's possible to do what i want to do but doesn't explain
    how (or hides this info very well)?
    Thanks

    Hi,
    > Hi I am fighting a similar problem and so far I found this: Calling
    > LabVIEW from C++ Using ActiveX
    >
    > http://sine.ni.com/apps/we/niepd_web_display.DISPL​AY_EPD4?>p_guid=B45EACE3E21356A4E034080020E74861&p​_node=DZ52051&p_submitted=N&p_rank=&p>_answer=&p_s​ource=External
    Thanks for the link, i actually already found this link before. I've
    found yesterday how to use Labview.tlb, just add it to the references
    of the project, it was probably too easy for me at that time:-) But
    now, i'm still stuck as there is no doc about using the interfaces and
    classes of this activex to control labview.
    The example given on your link is made is C++ and for some reasons,
    the wrapper generated for Labview.tlb when i added it to my c# project
    doesn't seem to expose the same
    interfaces and classes as the one used
    in the C++ example. I therefore can't use the C++ example in C#.
    I've tried to do something like:
    LabVIEW.ApplicationClass a = new LabVIEW.ApplicationClass();
    Just this line causes labview to launch but then immediately throws an
    exception: "Query interface for interface LabVIEW._IApplication
    failed".
    Does somebody knows how to use that control in C#/VB.NET ?

  • Receive an error when closing my program built using LabVIEW applicatio​n builder

    When I close my program built using LabVIEW application builder I receive an application error,"The instruction at "0x77fcb1ad" referenced memory at "0x023a0010". The memory could not be "read". Click OK to terminate the program"
    I have no idea why this is happening.

    This is most likely due to a reference or similar left open. You will experience this if you leave an image undisposed in IMAQ as well.
    Check all of your references and be sure you are cleaning everything up.

Maybe you are looking for

  • NHL gamecenter

    Hi, I have an IPhone 5 and I know that if you a verizon customer you can get NHL premium for free and for some reason it doesn't work for me. What should I do in order to get this resolved? Thanks!

  • Description on the column

    Hi BI Gurus, I have written a report in the Bex and I have included the infoobject 0BILL_BLOCK and on the properties of this, I have turned on Standard: Key and text on Display As option. It's ok in terms of displaying the key and text. It's displayi

  • Internet Explorer randomly shows table spaces

    Hi! I have tested this site in Safari, Firefox, and IE on both MAC and PC platforms. Everything looks good on the mac side, but when viewed on a PC in IE, random spaces are showing up between my sliced images. IE on a pc is the only place I'm having

  • Problem using CS5

    I recently uninstalled CS3 before deactivating.  I installed CS5 but I keep getting error #1.  I used the cleaner tool also but to no avail.  Any advioce would be helpful. hanks

  • When will Captivate 6 users with upgrade purchased be sent Captivate V7 for installation?

    We purchased Captivate 6  in January 2013 with the 2 year maintenance/upgrade plan so that any new releases within 2 years would be included. Since V7 has been released within the 2 year period, when will Adobe contact us for our upgrade to 7? I was