Month: June 2024
problem with the patcht-test model and load distribution on nodes
I’m running the patch test on the model (steel plate) my prof gave to me. I´m confused about the load distribution on the plate. The middle node loads in x and y directions seem too large, and the corner loads don’t match my calculations.
I posted the boundary conditions and Forces on the nodes(the one the professor provided me). I thought the corner loads should be: 150,4 (the load) *5(length between the 2 nodes) /2 with the middle node receiving double this. Despite this, the patch test results look correct. Can someone clarify or verify the load distribution?
q0=150,4 constant load / node 20 and 18 are the middle ones and the rest are corner nodes.I’m running the patch test on the model (steel plate) my prof gave to me. I´m confused about the load distribution on the plate. The middle node loads in x and y directions seem too large, and the corner loads don’t match my calculations.
I posted the boundary conditions and Forces on the nodes(the one the professor provided me). I thought the corner loads should be: 150,4 (the load) *5(length between the 2 nodes) /2 with the middle node receiving double this. Despite this, the patch test results look correct. Can someone clarify or verify the load distribution?
q0=150,4 constant load / node 20 and 18 are the middle ones and the rest are corner nodes. I’m running the patch test on the model (steel plate) my prof gave to me. I´m confused about the load distribution on the plate. The middle node loads in x and y directions seem too large, and the corner loads don’t match my calculations.
I posted the boundary conditions and Forces on the nodes(the one the professor provided me). I thought the corner loads should be: 150,4 (the load) *5(length between the 2 nodes) /2 with the middle node receiving double this. Despite this, the patch test results look correct. Can someone clarify or verify the load distribution?
q0=150,4 constant load / node 20 and 18 are the middle ones and the rest are corner nodes. patchttest, nodes distribution MATLAB Answers — New Questions
How do I properly install Matlab Engine using the anaconda package manager for Python?
At the moment, I’m running Python 3.5 and Matlab R2015a on a 64-bit Windows 10 laptop. I’m using Anaconda as my Python package manager and want to run some Matlab scripts from Python using . I’ve used the classic Anaconda command to install Matlab engine:
conda install matlab_engine
However, even after Matlab engine has supposedly been installed, I get an error message whenever I type in the following command to Python.
import matlab.engine
The error just reads "no module called matlab". I’m really unsure of what to do. Am I doing something blatantly incorrect or is there another way I can install Matlab engine.
Thank you for your help.At the moment, I’m running Python 3.5 and Matlab R2015a on a 64-bit Windows 10 laptop. I’m using Anaconda as my Python package manager and want to run some Matlab scripts from Python using . I’ve used the classic Anaconda command to install Matlab engine:
conda install matlab_engine
However, even after Matlab engine has supposedly been installed, I get an error message whenever I type in the following command to Python.
import matlab.engine
The error just reads "no module called matlab". I’m really unsure of what to do. Am I doing something blatantly incorrect or is there another way I can install Matlab engine.
Thank you for your help. At the moment, I’m running Python 3.5 and Matlab R2015a on a 64-bit Windows 10 laptop. I’m using Anaconda as my Python package manager and want to run some Matlab scripts from Python using . I’ve used the classic Anaconda command to install Matlab engine:
conda install matlab_engine
However, even after Matlab engine has supposedly been installed, I get an error message whenever I type in the following command to Python.
import matlab.engine
The error just reads "no module called matlab". I’m really unsure of what to do. Am I doing something blatantly incorrect or is there another way I can install Matlab engine.
Thank you for your help. matlab engine MATLAB Answers — New Questions
Message usage reset anniversary date?
I received an email stating my free message limit of 3M would be reached in mid July at the current rate. I have shut off 2 channels temporarily and changed the update frequency to 5 minutes but I need to know what the reset date is? Is it January 1st or the date the first channel was built or ??
Thank you.I received an email stating my free message limit of 3M would be reached in mid July at the current rate. I have shut off 2 channels temporarily and changed the update frequency to 5 minutes but I need to know what the reset date is? Is it January 1st or the date the first channel was built or ??
Thank you. I received an email stating my free message limit of 3M would be reached in mid July at the current rate. I have shut off 2 channels temporarily and changed the update frequency to 5 minutes but I need to know what the reset date is? Is it January 1st or the date the first channel was built or ??
Thank you. thingspeak MATLAB Answers — New Questions
Sent Messages in Conversation View
Hello –
Is there a way to bind my messages from the Sent folder into the conversation thread?
I want to archive a project without having to go through the Sent folder and hand pick all the messages I’ve sent to see my side of the conversation.
Thank you!
Kenneth
Hello – Is there a way to bind my messages from the Sent folder into the conversation thread? I want to archive a project without having to go through the Sent folder and hand pick all the messages I’ve sent to see my side of the conversation. Thank you! Kenneth Read More
Set breakpoint is not working in Method function file.
Hi
I would like set break point at reduce function in PDEtoobox. How can I achieve that.
Below is minimum viable code.
How can I add break point reduce function?
Thanks for help!
clc
clear all
open reduce
modelT = createpde("structural","transient-solid");
gm = multicuboid(0.05,0.003,0.003);
modelT.Geometry = gm;
figure
pdegplot(modelT,"FaceLabels","on","FaceAlpha",0.5)
view([71 4])
structuralProperties(modelT,"YoungsModulus",210E9, …
"PoissonsRatio",0.3, …
"MassDensity",7800);
structuralBC(modelT,"Edge",[2 8 11 12],"Constraint","fixed");
loadedVertex = addVertex(gm,"Coordinates",[0.025 0.0 0.0015]);
generateMesh(modelT);
structuralBoundaryLoad(modelT,"Vertex",loadedVertex, …
"Force",[0;0;10],"Frequency",6000);
structuralIC(modelT,"Velocity",[0 0 0],"Displacement",[0 0 0]);
structuralSEInterface(modelT,"Edge",[2 8 11 12]);
structuralSEInterface(modelT,"Vertex",loadedVertex);
rom = reduce(modelT,"FrequencyRange",[-0.1,5e5]);Hi
I would like set break point at reduce function in PDEtoobox. How can I achieve that.
Below is minimum viable code.
How can I add break point reduce function?
Thanks for help!
clc
clear all
open reduce
modelT = createpde("structural","transient-solid");
gm = multicuboid(0.05,0.003,0.003);
modelT.Geometry = gm;
figure
pdegplot(modelT,"FaceLabels","on","FaceAlpha",0.5)
view([71 4])
structuralProperties(modelT,"YoungsModulus",210E9, …
"PoissonsRatio",0.3, …
"MassDensity",7800);
structuralBC(modelT,"Edge",[2 8 11 12],"Constraint","fixed");
loadedVertex = addVertex(gm,"Coordinates",[0.025 0.0 0.0015]);
generateMesh(modelT);
structuralBoundaryLoad(modelT,"Vertex",loadedVertex, …
"Force",[0;0;10],"Frequency",6000);
structuralIC(modelT,"Velocity",[0 0 0],"Displacement",[0 0 0]);
structuralSEInterface(modelT,"Edge",[2 8 11 12]);
structuralSEInterface(modelT,"Vertex",loadedVertex);
rom = reduce(modelT,"FrequencyRange",[-0.1,5e5]); Hi
I would like set break point at reduce function in PDEtoobox. How can I achieve that.
Below is minimum viable code.
How can I add break point reduce function?
Thanks for help!
clc
clear all
open reduce
modelT = createpde("structural","transient-solid");
gm = multicuboid(0.05,0.003,0.003);
modelT.Geometry = gm;
figure
pdegplot(modelT,"FaceLabels","on","FaceAlpha",0.5)
view([71 4])
structuralProperties(modelT,"YoungsModulus",210E9, …
"PoissonsRatio",0.3, …
"MassDensity",7800);
structuralBC(modelT,"Edge",[2 8 11 12],"Constraint","fixed");
loadedVertex = addVertex(gm,"Coordinates",[0.025 0.0 0.0015]);
generateMesh(modelT);
structuralBoundaryLoad(modelT,"Vertex",loadedVertex, …
"Force",[0;0;10],"Frequency",6000);
structuralIC(modelT,"Velocity",[0 0 0],"Displacement",[0 0 0]);
structuralSEInterface(modelT,"Edge",[2 8 11 12]);
structuralSEInterface(modelT,"Vertex",loadedVertex);
rom = reduce(modelT,"FrequencyRange",[-0.1,5e5]); pdetoolbox, method MATLAB Answers — New Questions
MATLAB CST Interface in Linux
Hlw I was using the following command "cst = actxserver(‘CSTStudio.application’);
mws = cst.invoke(‘NewMWS’);";
to incorporate MATLAB with CST in Windows and it worked perfectly.However when I was trying to do it in linux it is showing error.Would you please suggest how I can I do it in Linux or is it possible to do it Linux.Hlw I was using the following command "cst = actxserver(‘CSTStudio.application’);
mws = cst.invoke(‘NewMWS’);";
to incorporate MATLAB with CST in Windows and it worked perfectly.However when I was trying to do it in linux it is showing error.Would you please suggest how I can I do it in Linux or is it possible to do it Linux. Hlw I was using the following command "cst = actxserver(‘CSTStudio.application’);
mws = cst.invoke(‘NewMWS’);";
to incorporate MATLAB with CST in Windows and it worked perfectly.However when I was trying to do it in linux it is showing error.Would you please suggest how I can I do it in Linux or is it possible to do it Linux. matlab cst interface MATLAB Answers — New Questions
Get a list of Power Automate(flows) to a particular SharePoint List
I have a existing SharePoint List where I’m trying to implement a new Power automate for new requirements. However I would like to know was there any flow created for this specific SharePoint list to reduce the impacts/redundant. What would be the best way to get the list of power automate details by SharePoint List name/ID.
I have a existing SharePoint List where I’m trying to implement a new Power automate for new requirements. However I would like to know was there any flow created for this specific SharePoint list to reduce the impacts/redundant. What would be the best way to get the list of power automate details by SharePoint List name/ID. Read More
How to move all the existing calendar meetings from one resource mailbox to another exchange online
How to move all the existing calendar meetings from one resource mailbox to another exchange online
How to move all the existing calendar meetings from one resource mailbox to another exchange online Read More
Layered If Statement
I have a basic question. I sell a few different products and then other employees receive a portion of the sales from that product but they are paid out differently depending on the product. so on the spreadsheet I have a list of the products and would like it to calculate the payout based on which product it was. So in one column I have the products in a dropdown format and then I have 3 other columns with each individual person who will be paid out on the products. I’ve looked into doing an IFS statement and a layered statement but none of them seem to do what I’m hoping. What do I need to do for this.
I have a basic question. I sell a few different products and then other employees receive a portion of the sales from that product but they are paid out differently depending on the product. so on the spreadsheet I have a list of the products and would like it to calculate the payout based on which product it was. So in one column I have the products in a dropdown format and then I have 3 other columns with each individual person who will be paid out on the products. I’ve looked into doing an IFS statement and a layered statement but none of them seem to do what I’m hoping. What do I need to do for this. Read More
Excel losing formatting copy pasting to Outlook Webmail
Hello, I’m having an issue with all users my tenant (and test tenant) where copying and pasting excel cells to an Outlook Webmail email will lose the color of the fonts.
Test data from Excel with color fonts:
Copy/Paste into Webmail and the fonts lose their colors:
It happens in different browsers, incognito mode, different computers, etc. It does NOT happen using Outlook Desktop. Has anyone else experienced this?
Thanks
Nathan
Hello, I’m having an issue with all users my tenant (and test tenant) where copying and pasting excel cells to an Outlook Webmail email will lose the color of the fonts. Test data from Excel with color fonts: Copy/Paste into Webmail and the fonts lose their colors: It happens in different browsers, incognito mode, different computers, etc. It does NOT happen using Outlook Desktop. Has anyone else experienced this? ThanksNathan Read More
I can’t see my customer in the reports in partner earned credit
I have a client who has an Azure Subscription (Azure Plan) and my Guest user has an Admin RBAC on the subscription scope, but I can’t see my customer in the reports on partner earned credit.
For that reason, I am not able to reach the partner designation because my partner punctuation in the designation does not appear.
My user is a guest in the customer tenant and has already linked my partner ID in the Management Partner Blade.
I need help. Thanks in advance for your time.
I have a client who has an Azure Subscription (Azure Plan) and my Guest user has an Admin RBAC on the subscription scope, but I can’t see my customer in the reports on partner earned credit.For that reason, I am not able to reach the partner designation because my partner punctuation in the designation does not appear.My user is a guest in the customer tenant and has already linked my partner ID in the Management Partner Blade.I need help. Thanks in advance for your time. Read More
Microsoft joins Intel Foundry Accelerator USMAG Alliance
The Intel Foundry Accelerator United States Military, Aerospace, and Government (USMAG) Alliance pulls together Intel Foundry’s leading-edge process capabilities with trusted partners in EDA, IP, and design services. Microsoft is pleased to officially join this alliance.
In joining the Intel Foundry Accelerator USMAG Alliance, Microsoft brings not only the near infinite infrastructure scaling needed for leading-edge silicon designs, but also adds the Azure Modeling and Simulation Workbench, a proven cloud-based semiconductor design and collaboration platform to create a secure environment where DIBs and their suppliers can develop advanced silicon solutions for MAG applications.
Microsoft is a leader in providing secure, scalable engineering environments used by leading commercial semiconductor companies. Defense Industrial Base suppliers will be able to access advanced resources such as Azure AI/ML, Microsoft generative AI, and the advanced secure collaboration capabilities provided by the Azure Modeling and Simulation Workbench, allowing for accelerated engineering collaboration within and across Program Offices and DIBs.
The Azure environment provides support for data at higher classification levels (IL4/IL5/IL6 and higher). Azure government regions meet compliance requirements for CUI, ITAR, FedRAMP, CMCC, etc.
Microsoft joining the Intel Foundry Accelerator USMAG Alliance Program will enable silicon suppliers to the US government the ability to create chips at the scale and complexity previously only accessible to the largest commercial semiconductor companies.
Microsoft Tech Community – Latest Blogs –Read More
Copilot Use for Pharma Marketer – Copilot for Microsoft 365 Starter Series
Are you looking for a way to reduce the time and effort required to complete your tasks in Microsoft 365? Do you want to optimize your workflows and processes to achieve more with less resources? Do you want to see how Copilot for Microsoft 365 can help you solve real-world challenges frequently encountered in the Pharmaceutical Industry today?
In this recorded Webinar learn how Pharma Marketer can leverage the power of Copilot for M356 in their role to automate repetitive tasks and be more productive.
To see the whole post, including resources, visit https://aka.ms/HLSBlog
Resources:
Get started with Copilot for Microsoft 365 – Training | Microsoft Learn
Microsoft Copilot for Microsoft 365—Features and Plans | Microsoft 365
Copilot Lab (cloud.microsoft)
Learn about Copilot prompts – Microsoft Support
Data, Privacy, and Security for Microsoft Copilot for Microsoft 365 | Microsoft Learn
Microsoft Copilot for Microsoft 365 documentation | Microsoft Learn
Copilot for Microsoft 365 – Microsoft Adoption
To see the entire series: click here
Thanks for visiting!
Jaspreet Dhamija – LinkedIn
Microsoft Tech Community – Latest Blogs –Read More
Advanced Network Observability for your Azure Kubernetes Service clusters through Azure Monitor
Last year at BUILD we announced the public preview of the Network Observability add-on. Today we’re excited to share a massive upgrade to the network observability capabilities available to AKS customers.
What’s new?
We are excited to announce Advanced Container Networking Services (ACNS), a suite of services built to significantly enhance the operational capabilities of your Azure Kubernetes Service (AKS) clusters. Advanced Network Observability is the inaugural feature of the ACNS suite bringing the power of Hubble’s control plane to both Cilium and Non-Cilium Linux data planes. With Advanced Network Observability, customers can now pinpoint network-related issues with more precision and detect root causes faster. The offering provides pod level packet statistics, DNS statistics, L4 connections and enhanced debugging capabilities with network flow logs and DNS error tracking.
How can Azure customers use the new offering?
ACNS is integrated deeply with existing Azure Monitor capabilities for monitoring AKS clusters. Using the new capabilities requires no extra configuration from customers. Customers can enable advanced network observability with a single command. The metrics are then ingested automatically by Azure Monitor managed service for Prometheus. Additionally, customers can visualize the metrics in pre-built dashboards in Azure Managed Grafana. Customers have access to 6 pre-built dashboards in Azure Managed Grafana covering a breadth of signals from cluster traffic to DNS and pod level flows.
How to get ACNS
To get started with ACNS capabilities, please see our onboarding documentation
Read more about ACNS:
Documentation: What is Advanced Container Networking Services?
Azure Blog: Announcing Advanced Container Networking Services for your Azure Kubernetes Service clusters
Microsoft Tech Community – Latest Blogs –Read More
Reading Clinical EEG (.ezdata) file IN MATLAB
how can we read a clinical EEG that is in .ezdata file format in Matlab. Following is the data from one subject and it shows the Ezdata in the name.i have searched alot but i am unable to find any sort of converter for this format.i have also attached the file which i am trying to read in Matlab in compressed folder.how can we read this file in matlab or convert it to some format that is supported by MATLAB.THANKS.The machine used for recording this data is Cadwell Arc Essentia.how can we read a clinical EEG that is in .ezdata file format in Matlab. Following is the data from one subject and it shows the Ezdata in the name.i have searched alot but i am unable to find any sort of converter for this format.i have also attached the file which i am trying to read in Matlab in compressed folder.how can we read this file in matlab or convert it to some format that is supported by MATLAB.THANKS.The machine used for recording this data is Cadwell Arc Essentia. how can we read a clinical EEG that is in .ezdata file format in Matlab. Following is the data from one subject and it shows the Ezdata in the name.i have searched alot but i am unable to find any sort of converter for this format.i have also attached the file which i am trying to read in Matlab in compressed folder.how can we read this file in matlab or convert it to some format that is supported by MATLAB.THANKS.The machine used for recording this data is Cadwell Arc Essentia. eeg, reading file in matlab MATLAB Answers — New Questions
Initial angular position of a mechanical system in SimScape
Dears,
I am working on a SimScape model that includes a rotating mechanical system. The model uses an ideal angular velocity source to generate a (fixed) rotation speed, and an ideal rotational motion sensor to measure both the speed and the angular position. Now, when solving the model, it seems that the initial angle of the system (at t = 0) is not equal to zero, but rather some high value (in the order of 1e10). I’ve tried setting the initial angle in the ideal rotational motion sensor block to 0 but that does not help. Moreover, it seems that the initial angle of the system changes based on the requested speed (I would not expect such a dependency).
I have included a simplified example of the model that includes the components and issues described above. The model is created in Matlab 2020b (the version which I am currently using).
I would like to understand how I can set the initial angle of the mechanical system to zero (at t = 0). Could you help me solve the issue?
Thanks in advance for your help!Dears,
I am working on a SimScape model that includes a rotating mechanical system. The model uses an ideal angular velocity source to generate a (fixed) rotation speed, and an ideal rotational motion sensor to measure both the speed and the angular position. Now, when solving the model, it seems that the initial angle of the system (at t = 0) is not equal to zero, but rather some high value (in the order of 1e10). I’ve tried setting the initial angle in the ideal rotational motion sensor block to 0 but that does not help. Moreover, it seems that the initial angle of the system changes based on the requested speed (I would not expect such a dependency).
I have included a simplified example of the model that includes the components and issues described above. The model is created in Matlab 2020b (the version which I am currently using).
I would like to understand how I can set the initial angle of the mechanical system to zero (at t = 0). Could you help me solve the issue?
Thanks in advance for your help! Dears,
I am working on a SimScape model that includes a rotating mechanical system. The model uses an ideal angular velocity source to generate a (fixed) rotation speed, and an ideal rotational motion sensor to measure both the speed and the angular position. Now, when solving the model, it seems that the initial angle of the system (at t = 0) is not equal to zero, but rather some high value (in the order of 1e10). I’ve tried setting the initial angle in the ideal rotational motion sensor block to 0 but that does not help. Moreover, it seems that the initial angle of the system changes based on the requested speed (I would not expect such a dependency).
I have included a simplified example of the model that includes the components and issues described above. The model is created in Matlab 2020b (the version which I am currently using).
I would like to understand how I can set the initial angle of the mechanical system to zero (at t = 0). Could you help me solve the issue?
Thanks in advance for your help! simscape, rotational-motion-sensor MATLAB Answers — New Questions
“Nested” Channel Menu/List
Hey all,
I have a client who can see a down arrow for a teams channel that I built for all private channels in the team. He wants me to build a 2nd set of “nested” channels, but I have no idea how this function works and I can’t find anything by google.
What my client sees:
What I see (no “nested menu”)
My client says he click on the down arrow and it will hide all private channels. It will then become an up arrow and can show all private channels again. The client is asking me to make a “2nd nested menu” with another private channel.
I believe what he wants is a second group of channels that will use this menu option.
However, I can’t even see this as a feature on my end. I feel a bit silly, but I have no idea how my client has this feature or how/if I can even make a “group” of channels appear/disappear with the icon.
Any advice is appreciated.
Hey all,I have a client who can see a down arrow for a teams channel that I built for all private channels in the team. He wants me to build a 2nd set of “nested” channels, but I have no idea how this function works and I can’t find anything by google.What my client sees: What I see (no “nested menu”)My client says he click on the down arrow and it will hide all private channels. It will then become an up arrow and can show all private channels again. The client is asking me to make a “2nd nested menu” with another private channel.I believe what he wants is a second group of channels that will use this menu option.However, I can’t even see this as a feature on my end. I feel a bit silly, but I have no idea how my client has this feature or how/if I can even make a “group” of channels appear/disappear with the icon.Any advice is appreciated. Read More
Word 365 I need to change the customized the text highlight color
Does anyone know how to add more colors to the TEXT HIGHLIGHT COLORS. I am not asking for the FONT COLOR.
Thanks
Does anyone know how to add more colors to the TEXT HIGHLIGHT COLORS. I am not asking for the FONT COLOR.Thanks Read More
First look at In-Browser Protection with Edge for Business
Today, it’s time for another blog post in the unmanaged devices series.
We’ll look at a newly introduced feature called in-browser protection with Edge for Business. This new preview feature is a welcome addition to Microsoft Defender for Cloud Apps (MDA) and its session policies. Session policies monitor or restrict certain users’ activities in risky situations, such as working from unmanaged or non-compliant devices.
Until now, session policies have worked with reverse proxy technology to monitor and restrict; the new in-browser protection feature will deliver these capabilities straight from the Microsoft Edge for Business browser.
In this post, I’ll discuss the differences between these options, how to enable the new feature, and what the user experience looks like.
https://myronhelgering.com/first-look-at-in-browser-protection-with-edge-for-business/
Today, it’s time for another blog post in the unmanaged devices series. We’ll look at a newly introduced feature called in-browser protection with Edge for Business. This new preview feature is a welcome addition to Microsoft Defender for Cloud Apps (MDA) and its session policies. Session policies monitor or restrict certain users’ activities in risky situations, such as working from unmanaged or non-compliant devices.Until now, session policies have worked with reverse proxy technology to monitor and restrict; the new in-browser protection feature will deliver these capabilities straight from the Microsoft Edge for Business browser.In this post, I’ll discuss the differences between these options, how to enable the new feature, and what the user experience looks like. https://myronhelgering.com/first-look-at-in-browser-protection-with-edge-for-business/ Read More
Trying to use 2 variables to color a cell
Hello, I have been trying to change a cell’s fill color based on 2 variables, and haven’t been able to crack it. If the values in D are greater than 30, AND, the value in C is “TRUE”, then the cell in D should have a red fill. In this example, D11 should have a red fill. Thank You
Hello, I have been trying to change a cell’s fill color based on 2 variables, and haven’t been able to crack it. If the values in D are greater than 30, AND, the value in C is “TRUE”, then the cell in D should have a red fill. In this example, D11 should have a red fill. Thank You Read More